Home | History | Annotate | Download | only in opjitconv

Lines Matching full:opcode

52 	/* Adding new opcode needs an update of the standard_opcode_length
101 // number of opcode + 1
103 /* follow the array of opcode args nr: ubytes [nr_opcode_base] */
198 static void emit_extended_opcode(struct growable_buffer * b, ubyte opcode,
203 add_data(b, &opcode, 1);
208 static void emit_opcode(struct growable_buffer * b, ubyte opcode)
210 add_data(b, &opcode, 1);
215 ubyte opcode, long data)
217 add_data(b, &opcode, 1);
222 static void emit_opcode_unsigned(struct growable_buffer * b, ubyte opcode,
225 add_data(b, &opcode, 1);
291 /* This is not sufficient to ensure opcode will be in [0-256] but
293 * not overflow the unsigned long opcode */
295 unsigned long opcode = temp +
299 return opcode <= 255 ? opcode : 0;