Home
last modified time | relevance | path

Searched refs:op_array (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/opcodes/
H A Ds390-mkopc.c53 struct op_struct *op_array; variable
61 op_array = malloc (max_ops * sizeof (struct op_struct)); in createTable()
79 op_array = realloc (op_array, max_ops * sizeof (struct op_struct)); in insertOpcode()
102 if (sort_value > op_array[ix].sort_value) in insertOpcode()
105 op_array[k] = op_array[k-1]; in insertOpcode()
106 strcpy(op_array[ix].opcode, opcode); in insertOpcode()
107 strcpy(op_array[ix].mnemonic, mnemonic); in insertOpcode()
108 strcpy(op_array[ix].format, format); in insertOpcode()
109 op_array[ix].sort_value = sort_value; in insertOpcode()
110 op_array[ix].no_nibbles = no_nibbles; in insertOpcode()
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Ds390-mkopc.c54 struct op_struct *op_array; variable
62 op_array = malloc (max_ops * sizeof (struct op_struct)); in createTable()
80 op_array = realloc (op_array, max_ops * sizeof (struct op_struct)); in insertOpcode()
103 if (sort_value > op_array[ix].sort_value) in insertOpcode()
106 op_array[k] = op_array[k-1]; in insertOpcode()
107 strcpy(op_array[ix].opcode, opcode); in insertOpcode()
108 strcpy(op_array[ix].mnemonic, mnemonic); in insertOpcode()
109 strcpy(op_array[ix].format, format); in insertOpcode()
110 op_array[ix].sort_value = sort_value; in insertOpcode()
111 op_array[ix].no_nibbles = no_nibbles; in insertOpcode()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dgenattrtab.c1871 struct function_unit_op *op, **op_array, ***unit_ops; in expand_units() local
1985 unit_ops[unit->num] = op_array = (struct function_unit_op **) in expand_units()
1989 op_array[op->num] = op; in expand_units()
1993 unit_ops[num_units] = op_array = (struct function_unit_op **) in expand_units()
1998 memcpy (&op_array[i], unit_ops[unit->num], in expand_units()
2009 op_array = unit_ops[unit->num]; in expand_units()
2015 if (op_array[j - 1]->ready < op_array[j]->ready) in expand_units()
2017 op = op_array[j]; in expand_units()
2018 op_array[j] = op_array[j - 1]; in expand_units()
2019 op_array[j - 1] = op; in expand_units()
[all …]