Searched refs:curval (Results 1 – 7 of 7) sorted by relevance
95 #define curval (parser_nasm->tokval) macro97 #define INTNUM_val (curval.intn)98 #define FLTNUM_val (curval.flt)99 #define DIRECTIVE_NAME_val (curval.str_val)100 #define FILENAME_val (curval.str_val)101 #define STRING_val (curval.str)102 #define SIZE_OVERRIDE_val (curval.int_info)103 #define DECLARE_DATA_val (curval.int_info)104 #define RESERVE_SPACE_val (curval.int_info)105 #define INSN_val (curval.bc)[all …]
87 #define get_next_token() (curtok = nasm_parser_lex(&curval, parser_nasm))108 yasm_intnum_destroy(curval.intn); in destroy_curtok_()111 yasm_floatnum_destroy(curval.flt); in destroy_curtok_()119 yasm_xfree(curval.str_val); in destroy_curtok_()122 yasm_xfree(curval.str.contents); in destroy_curtok_()125 yasm_bc_destroy(curval.bc); in destroy_curtok_()
136 #define curval (parser_gas->tokval) macro138 #define INTNUM_val (curval.intn)139 #define FLTNUM_val (curval.flt)140 #define STRING_val (curval.str)141 #define REG_val (curval.arch_data)142 #define REGGROUP_val (curval.arch_data)143 #define SEGREG_val (curval.arch_data)144 #define TARGETMOD_val (curval.arch_data)145 #define ID_val (curval.str.contents)146 #define ID_len (curval.str.len)[all …]
83 #define get_next_token() (curtok = gas_parser_lex(&curval, parser_gas))104 yasm_intnum_destroy(curval.intn); in destroy_curtok_()107 yasm_floatnum_destroy(curval.flt); in destroy_curtok_()112 yasm_xfree(curval.str.contents); in destroy_curtok_()
412 const xmlChar *curval, *endval; in xsltParseStylesheetAttributeSet() local413 curval = value; in xsltParseStylesheetAttributeSet()414 while (*curval != 0) { in xsltParseStylesheetAttributeSet()415 while (IS_BLANK(*curval)) curval++; in xsltParseStylesheetAttributeSet()416 if (*curval == 0) in xsltParseStylesheetAttributeSet()418 endval = curval; in xsltParseStylesheetAttributeSet()420 curval = xmlDictLookup(style->dict, curval, endval - curval); in xsltParseStylesheetAttributeSet()421 if (curval) { in xsltParseStylesheetAttributeSet()428 "xsl:attribute-set : %s adds use %s\n", ncname, curval); in xsltParseStylesheetAttributeSet()430 ncname2 = xsltSplitQName(style->dict, curval, &prefix2); in xsltParseStylesheetAttributeSet()[all …]
1018 ulong curval = m_val; in Put() local1026 curval |= val << bit_idx; in Put()1030 *((ulong*&)m_current)++ = curval | ((unsigned)val >> -bit_idx); in Put()1036 curval = val << bit_idx; in Put()1039 m_val = curval; in Put()
517 static int curval; variable535 curval = 0; in init_val()556 val = ++curval; in F()