Home
last modified time | relevance | path

Searched refs:next_op (Results 1 – 25 of 410) sorted by relevance

12345678910>>...17

/dports/sysutils/fwup/fwup-1.9.0/src/
H A Deval_math.c43 struct operator_token *next_op; member
55 return s->next_op - s->operator_stack; in op_count()
135 s->next_op--; in pop_operator()
147 s->next_op--; in handle_right_paren()
161 s->next_op->fun = LEFT_PAREN; in handle_left_paren()
162 s->next_op->prec = 1; in handle_left_paren()
163 s->next_op++; in handle_left_paren()
185 s->next_op->fun = fun; in push_operator()
186 s->next_op->prec = precedence; in push_operator()
187 s->next_op++; in push_operator()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/acpi/acpica/
H A Ddsopcode.c274 union acpi_parse_object *next_op; in acpi_ds_eval_buffer_field_operands() local
286 next_op = op->common.value.arg; in acpi_ds_eval_buffer_field_operands()
360 union acpi_parse_object *next_op; in acpi_ds_eval_region_operands() local
373 next_op = op->common.value.arg; in acpi_ds_eval_region_operands()
378 next_op = next_op->common.next; in acpi_ds_eval_region_operands()
467 union acpi_parse_object *next_op; in acpi_ds_eval_table_region_operands() local
481 next_op = op->common.value.arg; in acpi_ds_eval_table_region_operands()
687 union acpi_parse_object *next_op; in acpi_ds_eval_bank_field_operands() local
699 next_op = op->common.value.arg; in acpi_ds_eval_bank_field_operands()
703 next_op = next_op->common.next; in acpi_ds_eval_bank_field_operands()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/acpi/acpica/
H A Ddsopcode.c274 union acpi_parse_object *next_op; in acpi_ds_eval_buffer_field_operands() local
286 next_op = op->common.value.arg; in acpi_ds_eval_buffer_field_operands()
360 union acpi_parse_object *next_op; in acpi_ds_eval_region_operands() local
373 next_op = op->common.value.arg; in acpi_ds_eval_region_operands()
378 next_op = next_op->common.next; in acpi_ds_eval_region_operands()
467 union acpi_parse_object *next_op; in acpi_ds_eval_table_region_operands() local
481 next_op = op->common.value.arg; in acpi_ds_eval_table_region_operands()
687 union acpi_parse_object *next_op; in acpi_ds_eval_bank_field_operands() local
699 next_op = op->common.value.arg; in acpi_ds_eval_bank_field_operands()
703 next_op = next_op->common.next; in acpi_ds_eval_bank_field_operands()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/acpi/acpica/
H A Ddsopcode.c274 union acpi_parse_object *next_op; in acpi_ds_eval_buffer_field_operands() local
286 next_op = op->common.value.arg; in acpi_ds_eval_buffer_field_operands()
360 union acpi_parse_object *next_op; in acpi_ds_eval_region_operands() local
373 next_op = op->common.value.arg; in acpi_ds_eval_region_operands()
378 next_op = next_op->common.next; in acpi_ds_eval_region_operands()
467 union acpi_parse_object *next_op; in acpi_ds_eval_table_region_operands() local
481 next_op = op->common.value.arg; in acpi_ds_eval_table_region_operands()
687 union acpi_parse_object *next_op; in acpi_ds_eval_bank_field_operands() local
699 next_op = op->common.value.arg; in acpi_ds_eval_bank_field_operands()
703 next_op = next_op->common.next; in acpi_ds_eval_bank_field_operands()
[all …]
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/cpu/e132xs/
H A D32xsdasm.c96 INT16 next_op; in LRconst_format() local
113 next_op = READ_OP(*pc); in LRconst_format()
115 if( E_BIT(next_op) ) in LRconst_format()
126 if( S_BIT_CONST(next_op) ) in LRconst_format()
135 if( S_BIT_CONST(next_op) ) in LRconst_format()
146 UINT16 next_op; in RRconst_format() local
170 next_op = READ_OP(*pc); in RRconst_format()
172 if( E_BIT(next_op) ) in RRconst_format()
362 if( E_BIT(next_op) ) in RRdis_format()
380 ret = next_op & 0xfff; in RRdis_format()
[all …]
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/cpu/e132xs/
H A D32xsdasm.c96 INT16 next_op; in LRconst_format() local
113 next_op = READ_OP(*pc); in LRconst_format()
115 if( E_BIT(next_op) ) in LRconst_format()
126 if( S_BIT_CONST(next_op) ) in LRconst_format()
135 if( S_BIT_CONST(next_op) ) in LRconst_format()
146 UINT16 next_op; in RRconst_format() local
170 next_op = READ_OP(*pc); in RRconst_format()
172 if( E_BIT(next_op) ) in RRconst_format()
362 if( E_BIT(next_op) ) in RRdis_format()
380 ret = next_op & 0xfff; in RRdis_format()
[all …]
/dports/security/pamtester/pamtester-0.1.2/src/
H A Dpamtester.c142 pamtester_op_t *operations, *next_op, *prev_op; in main() local
222 next_op = xmalloc(sizeof(pamtester_op_t)); in main()
223 next_op->next = NULL; in main()
224 next_op->name = op_name; in main()
225 next_op->param = op_param; in main()
228 prev_op->next = next_op; in main()
230 operations = next_op; in main()
233 prev_op = next_op; in main()
/dports/devel/tigcc/tigcc-0.96.b8_10/gnu/binutils-2.16.1/opcodes/
H A Dia64-opc.c369 int next_op; in locate_opcode_ent() local
384 next_op = -1; in locate_opcode_ent()
437 next_op = opval[1]; in locate_opcode_ent()
450 next_op = opval[2]; in locate_opcode_ent()
460 if ((next_op >= 0) && (next_op & 32768)) in locate_opcode_ent()
462 short disent = next_op & 32767; in locate_opcode_ent()
465 if (next_op > 65535) in locate_opcode_ent()
500 next_op = -2; in locate_opcode_ent()
507 if (next_op == -1) in locate_opcode_ent()
515 else if (next_op >= 0) in locate_opcode_ent()
[all …]
/dports/lang/gnatdroid-binutils-x86/binutils-2.27/opcodes/
H A Dia64-opc.c368 int next_op; in locate_opcode_ent() local
383 next_op = -1; in locate_opcode_ent()
436 next_op = opval[1]; in locate_opcode_ent()
449 next_op = opval[2]; in locate_opcode_ent()
459 if ((next_op >= 0) && (next_op & 32768)) in locate_opcode_ent()
461 short disent = next_op & 32767; in locate_opcode_ent()
464 if (next_op > 65535) in locate_opcode_ent()
499 next_op = -2; in locate_opcode_ent()
506 if (next_op == -1) in locate_opcode_ent()
514 else if (next_op >= 0) in locate_opcode_ent()
[all …]
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/binutils/opcodes/
H A Dia64-opc.c369 int next_op; in locate_opcode_ent() local
384 next_op = -1; in locate_opcode_ent()
437 next_op = opval[1]; in locate_opcode_ent()
450 next_op = opval[2]; in locate_opcode_ent()
460 if ((next_op >= 0) && (next_op & 32768)) in locate_opcode_ent()
462 short disent = next_op & 32767; in locate_opcode_ent()
465 if (next_op > 65535) in locate_opcode_ent()
500 next_op = -2; in locate_opcode_ent()
507 if (next_op == -1) in locate_opcode_ent()
515 else if (next_op >= 0) in locate_opcode_ent()
[all …]
/dports/devel/avr-gdb/gdb-7.3.1/opcodes/
H A Dia64-opc.c369 int next_op; in locate_opcode_ent() local
384 next_op = -1; in locate_opcode_ent()
437 next_op = opval[1]; in locate_opcode_ent()
450 next_op = opval[2]; in locate_opcode_ent()
460 if ((next_op >= 0) && (next_op & 32768)) in locate_opcode_ent()
462 short disent = next_op & 32767; in locate_opcode_ent()
465 if (next_op > 65535) in locate_opcode_ent()
500 next_op = -2; in locate_opcode_ent()
507 if (next_op == -1) in locate_opcode_ent()
515 else if (next_op >= 0) in locate_opcode_ent()
[all …]
/dports/lang/gnatdroid-binutils/binutils-2.27/opcodes/
H A Dia64-opc.c368 int next_op; in locate_opcode_ent() local
383 next_op = -1; in locate_opcode_ent()
436 next_op = opval[1]; in locate_opcode_ent()
449 next_op = opval[2]; in locate_opcode_ent()
459 if ((next_op >= 0) && (next_op & 32768)) in locate_opcode_ent()
461 short disent = next_op & 32767; in locate_opcode_ent()
464 if (next_op > 65535) in locate_opcode_ent()
499 next_op = -2; in locate_opcode_ent()
506 if (next_op == -1) in locate_opcode_ent()
514 else if (next_op >= 0) in locate_opcode_ent()
[all …]
/dports/devel/gdb761/gdb-7.6.1/opcodes/
H A Dia64-opc.c369 int next_op; in locate_opcode_ent() local
384 next_op = -1; in locate_opcode_ent()
437 next_op = opval[1]; in locate_opcode_ent()
450 next_op = opval[2]; in locate_opcode_ent()
460 if ((next_op >= 0) && (next_op & 32768)) in locate_opcode_ent()
462 short disent = next_op & 32767; in locate_opcode_ent()
465 if (next_op > 65535) in locate_opcode_ent()
500 next_op = -2; in locate_opcode_ent()
507 if (next_op == -1) in locate_opcode_ent()
515 else if (next_op >= 0) in locate_opcode_ent()
[all …]
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/binutils/opcodes/
H A Dia64-opc.c369 int next_op;
384 next_op = -1;
437 next_op = opval[1];
450 next_op = opval[2];
460 if ((next_op >= 0) && (next_op & 32768))
462 short disent = next_op & 32767;
465 if (next_op > 65535)
500 next_op = -2;
507 if (next_op == -1)
515 else if (next_op >= 0)
[all …]
/dports/devel/djgpp-binutils/binutils-2.17/opcodes/
H A Dia64-opc.c369 int next_op; in locate_opcode_ent() local
384 next_op = -1; in locate_opcode_ent()
437 next_op = opval[1]; in locate_opcode_ent()
450 next_op = opval[2]; in locate_opcode_ent()
460 if ((next_op >= 0) && (next_op & 32768)) in locate_opcode_ent()
462 short disent = next_op & 32767; in locate_opcode_ent()
465 if (next_op > 65535) in locate_opcode_ent()
500 next_op = -2; in locate_opcode_ent()
507 if (next_op == -1) in locate_opcode_ent()
515 else if (next_op >= 0) in locate_opcode_ent()
[all …]
/dports/emulators/mess/mame-mame0226/src/devices/cpu/e132xs/
H A D32xsdasm.cpp93 uint16_t next_op; in LRconst_format() local
110 next_op = opcodes.r16(pc); in LRconst_format()
112 if( E_BIT(next_op) ) in LRconst_format()
123 if( S_BIT_CONST(next_op) ) in LRconst_format()
132 if( S_BIT_CONST(next_op) ) in LRconst_format()
143 uint16_t next_op; in RRconst_format() local
167 next_op = opcodes.r16(pc); in RRconst_format()
169 if( E_BIT(next_op) ) in RRconst_format()
361 if( E_BIT(next_op) ) in RRdis_format()
379 ret = next_op & 0xfff; in RRdis_format()
[all …]
/dports/emulators/mame/mame-mame0226/src/devices/cpu/e132xs/
H A D32xsdasm.cpp93 uint16_t next_op; in LRconst_format() local
110 next_op = opcodes.r16(pc); in LRconst_format()
112 if( E_BIT(next_op) ) in LRconst_format()
123 if( S_BIT_CONST(next_op) ) in LRconst_format()
132 if( S_BIT_CONST(next_op) ) in LRconst_format()
143 uint16_t next_op; in RRconst_format() local
167 next_op = opcodes.r16(pc); in RRconst_format()
169 if( E_BIT(next_op) ) in RRconst_format()
361 if( E_BIT(next_op) ) in RRdis_format()
379 ret = next_op & 0xfff; in RRdis_format()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/lib/
H A Dasn1_decoder.c200 next_op: in asn1_ber_decoder()
220 goto next_op; in asn1_ber_decoder()
253 goto next_op; in asn1_ber_decoder()
354 goto next_op; in asn1_ber_decoder()
364 goto next_op; in asn1_ber_decoder()
370 goto next_op; in asn1_ber_decoder()
425 goto next_op; in asn1_ber_decoder()
444 goto next_op; in asn1_ber_decoder()
449 goto next_op; in asn1_ber_decoder()
458 goto next_op; in asn1_ber_decoder()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/lib/
H A Dasn1_decoder.c200 next_op: in asn1_ber_decoder()
220 goto next_op; in asn1_ber_decoder()
253 goto next_op; in asn1_ber_decoder()
354 goto next_op; in asn1_ber_decoder()
364 goto next_op; in asn1_ber_decoder()
370 goto next_op; in asn1_ber_decoder()
425 goto next_op; in asn1_ber_decoder()
444 goto next_op; in asn1_ber_decoder()
449 goto next_op; in asn1_ber_decoder()
458 goto next_op; in asn1_ber_decoder()
[all …]
/dports/sysutils/u-boot-olimex-a20-som-evb/u-boot-2021.07/lib/
H A Dasn1_decoder.c207 next_op: in asn1_ber_decoder()
227 goto next_op; in asn1_ber_decoder()
260 goto next_op; in asn1_ber_decoder()
361 goto next_op; in asn1_ber_decoder()
371 goto next_op; in asn1_ber_decoder()
377 goto next_op; in asn1_ber_decoder()
432 goto next_op; in asn1_ber_decoder()
451 goto next_op; in asn1_ber_decoder()
456 goto next_op; in asn1_ber_decoder()
465 goto next_op; in asn1_ber_decoder()
[all …]
/dports/sysutils/u-boot-olinuxino-lime2/u-boot-2021.07/lib/
H A Dasn1_decoder.c207 next_op: in asn1_ber_decoder()
227 goto next_op; in asn1_ber_decoder()
260 goto next_op; in asn1_ber_decoder()
361 goto next_op; in asn1_ber_decoder()
371 goto next_op; in asn1_ber_decoder()
377 goto next_op; in asn1_ber_decoder()
432 goto next_op; in asn1_ber_decoder()
451 goto next_op; in asn1_ber_decoder()
456 goto next_op; in asn1_ber_decoder()
465 goto next_op; in asn1_ber_decoder()
[all …]
/dports/sysutils/u-boot-olinuxino-lime/u-boot-2021.07/lib/
H A Dasn1_decoder.c207 next_op: in asn1_ber_decoder()
227 goto next_op; in asn1_ber_decoder()
260 goto next_op; in asn1_ber_decoder()
361 goto next_op; in asn1_ber_decoder()
371 goto next_op; in asn1_ber_decoder()
377 goto next_op; in asn1_ber_decoder()
432 goto next_op; in asn1_ber_decoder()
451 goto next_op; in asn1_ber_decoder()
456 goto next_op; in asn1_ber_decoder()
465 goto next_op; in asn1_ber_decoder()
[all …]
/dports/sysutils/u-boot-wandboard/u-boot-2021.07/lib/
H A Dasn1_decoder.c207 next_op: in asn1_ber_decoder()
227 goto next_op; in asn1_ber_decoder()
260 goto next_op; in asn1_ber_decoder()
361 goto next_op; in asn1_ber_decoder()
371 goto next_op; in asn1_ber_decoder()
377 goto next_op; in asn1_ber_decoder()
432 goto next_op; in asn1_ber_decoder()
451 goto next_op; in asn1_ber_decoder()
456 goto next_op; in asn1_ber_decoder()
465 goto next_op; in asn1_ber_decoder()
[all …]
/dports/sysutils/u-boot-cubieboard2/u-boot-2021.07/lib/
H A Dasn1_decoder.c207 next_op: in asn1_ber_decoder()
227 goto next_op; in asn1_ber_decoder()
260 goto next_op; in asn1_ber_decoder()
361 goto next_op; in asn1_ber_decoder()
371 goto next_op; in asn1_ber_decoder()
377 goto next_op; in asn1_ber_decoder()
432 goto next_op; in asn1_ber_decoder()
451 goto next_op; in asn1_ber_decoder()
456 goto next_op; in asn1_ber_decoder()
465 goto next_op; in asn1_ber_decoder()
[all …]
/dports/sysutils/u-boot-sinovoip-bpi-m3/u-boot-2021.07/lib/
H A Dasn1_decoder.c207 next_op: in asn1_ber_decoder()
227 goto next_op; in asn1_ber_decoder()
260 goto next_op; in asn1_ber_decoder()
361 goto next_op; in asn1_ber_decoder()
371 goto next_op; in asn1_ber_decoder()
377 goto next_op; in asn1_ber_decoder()
432 goto next_op; in asn1_ber_decoder()
451 goto next_op; in asn1_ber_decoder()
456 goto next_op; in asn1_ber_decoder()
465 goto next_op; in asn1_ber_decoder()
[all …]

12345678910>>...17