Searched refs:tmp_token (Results 1 – 4 of 4) sorted by relevance
| /openbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | c-exp.y | 609 struct stoken tmp_token; variable 616 tmp_token.ptr = (char*) alloca ($4.length + 2); 617 tmp_token.length = $4.length + 1; 618 tmp_token.ptr[0] = '~'; 619 memcpy (tmp_token.ptr+1, $4.ptr, $4.length); 620 tmp_token.ptr[tmp_token.length] = 0; 623 destructor_name_p (tmp_token.ptr, type); 626 write_exp_string (tmp_token);
|
| D | objc-exp.y | 677 struct stoken tmp_token; variable 687 tmp_token.ptr = (char*) alloca ($4.length + 2); 688 tmp_token.length = $4.length + 1; 689 tmp_token.ptr[0] = '~'; 690 memcpy (tmp_token.ptr+1, $4.ptr, $4.length); 691 tmp_token.ptr[tmp_token.length] = 0; 694 write_exp_string (tmp_token);
|
| D | c-exp.c | 1941 struct stoken tmp_token; local 1948 tmp_token.ptr = (char*) alloca (yyvsp[0].sval.length + 2); 1949 tmp_token.length = yyvsp[0].sval.length + 1; 1950 tmp_token.ptr[0] = '~'; 1951 memcpy (tmp_token.ptr+1, yyvsp[0].sval.ptr, yyvsp[0].sval.length); 1952 tmp_token.ptr[tmp_token.length] = 0; 1955 destructor_name_p (tmp_token.ptr, type); 1958 write_exp_string (tmp_token);
|
| D | objc-exp.c | 2001 struct stoken tmp_token; local 2011 tmp_token.ptr = (char*) alloca (yyvsp[0].sval.length + 2); 2012 tmp_token.length = yyvsp[0].sval.length + 1; 2013 tmp_token.ptr[0] = '~'; 2014 memcpy (tmp_token.ptr+1, yyvsp[0].sval.ptr, yyvsp[0].sval.length); 2015 tmp_token.ptr[tmp_token.length] = 0; 2018 write_exp_string (tmp_token);
|