Searched defs:op2 (Results 51 - 67 of 67) sorted by relevance

123

/macosx-10.9.5/cxxfilt-11/cxxfilt/include/opcode/
H A Dm88k.h441 OPSPEC op1,op2,op3; member in struct:INSTRUCTAB
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGSpeculativeJIT.cpp1234 GPRTemporary::GPRTemporary(SpeculativeJIT* jit, SpeculateIntegerOperand& op1, SpeculateIntegerOperand& op2) argument
1266 GPRTemporary::GPRTemporary(SpeculativeJIT* jit, IntegerOperand& op1, IntegerOperand& op2) argument
1359 FPRTemporary::FPRTemporary(SpeculativeJIT* jit, SpeculateDoubleOperand& op1, SpeculateDoubleOperand& op2) argument
[all...]
H A DDFGSpeculativeJIT.h627 void bitOp(NodeType op, GPRReg op1, GPRReg op2, GPRReg result) argument
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/overlays/
H A Dsyncprov.c1237 Operation op2; local
2189 Operation *op2; local
[all...]
H A Dpcache.c756 Operation op2 = *op; local
2088 Operation op2; local
2179 Operation op2 = *op; local
2203 Operation op2; local
2637 Operation op2 = *op; local
2802 Operation op2 = *op; local
2838 Operation op2; local
5307 Operation op2 = *op; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeCtrl.c2330 int i, op = STATE_OP_ON, op2, op3, length, state = 0; local
H A DtkTreeColumn.c685 int i, op = STATE_OP_ON, op2, op3, length, state = 0; local
/macosx-10.9.5/JavaScriptCore-7537.78.1/assembler/
H A DARMAssembler.h249 void emitInstruction(ARMWord op, int rd, int rn, ARMWord op2) argument
271 void bitAnd(int rd, int rn, ARMWord op2, Condition cc = AL) argument
276 void bitAnds(int rd, int rn, ARMWord op2, Condition cc = AL) argument
278 emitInstruction(toARMWord(cc) | AND | SetConditionalCodes, rd, rn, op2); local
281 void eor(int rd, int rn, ARMWord op2, Condition cc = AL) argument
286 eors(int rd, int rn, ARMWord op2, Condition cc = AL) argument
288 emitInstruction(toARMWord(cc) | EOR | SetConditionalCodes, rd, rn, op2); local
291 sub(int rd, int rn, ARMWord op2, Condition cc = AL) argument
296 subs(int rd, int rn, ARMWord op2, Condition cc = AL) argument
298 emitInstruction(toARMWord(cc) | SUB | SetConditionalCodes, rd, rn, op2); local
301 rsb(int rd, int rn, ARMWord op2, Condition cc = AL) argument
306 rsbs(int rd, int rn, ARMWord op2, Condition cc = AL) argument
308 emitInstruction(toARMWord(cc) | RSB | SetConditionalCodes, rd, rn, op2); local
311 add(int rd, int rn, ARMWord op2, Condition cc = AL) argument
316 adds(int rd, int rn, ARMWord op2, Condition cc = AL) argument
318 emitInstruction(toARMWord(cc) | ADD | SetConditionalCodes, rd, rn, op2); local
321 adc(int rd, int rn, ARMWord op2, Condition cc = AL) argument
326 adcs(int rd, int rn, ARMWord op2, Condition cc = AL) argument
328 emitInstruction(toARMWord(cc) | ADC | SetConditionalCodes, rd, rn, op2); local
331 sbc(int rd, int rn, ARMWord op2, Condition cc = AL) argument
336 sbcs(int rd, int rn, ARMWord op2, Condition cc = AL) argument
338 emitInstruction(toARMWord(cc) | SBC | SetConditionalCodes, rd, rn, op2); local
341 rsc(int rd, int rn, ARMWord op2, Condition cc = AL) argument
346 rscs(int rd, int rn, ARMWord op2, Condition cc = AL) argument
348 emitInstruction(toARMWord(cc) | RSC | SetConditionalCodes, rd, rn, op2); local
351 tst(int rn, ARMWord op2, Condition cc = AL) argument
353 emitInstruction(toARMWord(cc) | TST | SetConditionalCodes, 0, rn, op2); local
356 teq(int rn, ARMWord op2, Condition cc = AL) argument
358 emitInstruction(toARMWord(cc) | TEQ | SetConditionalCodes, 0, rn, op2); local
361 cmp(int rn, ARMWord op2, Condition cc = AL) argument
363 emitInstruction(toARMWord(cc) | CMP | SetConditionalCodes, 0, rn, op2); local
366 cmn(int rn, ARMWord op2, Condition cc = AL) argument
368 emitInstruction(toARMWord(cc) | CMN | SetConditionalCodes, 0, rn, op2); local
371 orr(int rd, int rn, ARMWord op2, Condition cc = AL) argument
376 orrs(int rd, int rn, ARMWord op2, Condition cc = AL) argument
378 emitInstruction(toARMWord(cc) | ORR | SetConditionalCodes, rd, rn, op2); local
381 mov(int rd, ARMWord op2, Condition cc = AL) argument
383 emitInstruction(toARMWord(cc) | MOV, rd, ARMRegisters::r0, op2); local
387 movw(int rd, ARMWord op2, Condition cc = AL) argument
393 movt(int rd, ARMWord op2, Condition cc = AL) argument
400 movs(int rd, ARMWord op2, Condition cc = AL) argument
402 emitInstruction(toARMWord(cc) | MOV | SetConditionalCodes, rd, ARMRegisters::r0, op2); local
405 bic(int rd, int rn, ARMWord op2, Condition cc = AL) argument
410 bics(int rd, int rn, ARMWord op2, Condition cc = AL) argument
412 emitInstruction(toARMWord(cc) | BIC | SetConditionalCodes, rd, rn, op2); local
415 mvn(int rd, ARMWord op2, Condition cc = AL) argument
417 emitInstruction(toARMWord(cc) | MVN, rd, ARMRegisters::r0, op2); local
420 mvns(int rd, ARMWord op2, Condition cc = AL) argument
422 emitInstruction(toARMWord(cc) | MVN | SetConditionalCodes, rd, ARMRegisters::r0, op2); local
495 dtrUp(DataTransferTypeA transferType, int rd, int rb, ARMWord op2, Condition cc = AL) argument
497 emitInstruction(toARMWord(cc) | transferType | DataTransferUp, rd, rb, op2); local
505 dtrDown(DataTransferTypeA transferType, int rd, int rb, ARMWord op2, Condition cc = AL) argument
515 halfDtrUp(DataTransferTypeB transferType, int rd, int rb, ARMWord op2, Condition cc = AL) argument
517 emitInstruction(toARMWord(cc) | transferType | DataTransferUp, rd, rb, op2); local
525 halfDtrDown(DataTransferTypeB transferType, int rd, int rb, ARMWord op2, Condition cc = AL) argument
535 doubleDtrUp(DataTransferTypeFloat type, int rd, int rb, ARMWord op2, Condition cc = AL) argument
542 doubleDtrDown(DataTransferTypeFloat type, int rd, int rb, ARMWord op2, Condition cc = AL) argument
[all...]
H A DARMv7Assembler.h2711 ALWAYS_INLINE void twoWordOp16Op16(OpcodeID1 op1, OpcodeID2 op2) argument
2742 ALWAYS_INLINE void vfpOp(OpcodeID1 op1, OpcodeID2 op2, bool size, VFPOperand a, VFPOperand b, VFPOperand c) argument
2752 ALWAYS_INLINE void vfpMemOp(OpcodeID1 op1, OpcodeID2 op2, bool size, RegisterID rn, VFPOperand rd, int32_t imm) argument
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/
H A Dsyncrepl.c2147 Operation op2 = *op; local
2962 Operation op2 = *op; local
3197 Operation op2 = *op; local
[all...]
/macosx-10.9.5/emacs-92/emacs/src/
H A Ddispnew.c5584 struct glyph *obody, *nbody, *op1, *op2, *np1, *nend; local
H A Dregex.c4665 re_opcode_t op2; local
/macosx-10.9.5/ruby-104/ruby/include/ruby/
H A Doniguruma.h383 unsigned int op2; member in struct:__anon12366
/macosx-10.9.5/cxxfilt-11/cxxfilt/opcodes/
H A Di386-dis.c497 op_rtn op2; member in struct:dis386
/macosx-10.9.5/libxml2-26/libxml2/
H A Dxpath.c11331 int op2 = -1; local
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A Dxpath.c11174 int op2 = -1; local
/macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/
H A Dsqlite3.c10325 u8 op2; /* If a TK_REGISTER, the original value of Expr.op */ member in struct:Expr
[all...]

Completed in 568 milliseconds

123