Searched refs:reg1 (Results 1 - 18 of 18) sorted by relevance

/macosx-10.9.5/cxxfilt-11/cxxfilt/opcodes/
H A Di960-dis.c324 const char *reg1, *reg2, *reg3;
399 reg1 = reg_names[ (word1 >> 19) & 0x1f ]; /* MEMB only */
410 (*info->fprintf_func) (stream, ",%s", reg1);
419 (*info->fprintf_func)(stream, ",%s", reg1);
427 (*info->fprintf_func) (stream, "%s,", reg1);
433 (*info->fprintf_func) (stream, "%s,0x%x", reg1, (unsigned) offset);
323 const char *reg1, *reg2, *reg3; local
/macosx-10.9.5/IOPCIFamily-224.92.1/
H A DIOPCIDevice.cpp954 uint32_t reg1; local
989 reg1 = reserved->ltrReg1;
995 reg1 &= 0x0000FFFF;
996 reg1 |= (1 << 31) | (idx << 26) | (ltrValue << 16);
1002 reg1 &= 0xFFFF0000;
1003 reg1 |= (1 << 15) | (idx << 10) | (ltrValue << 0);
1007 reserved->ltrDevice->extendedConfigWrite32(reserved->ltrOffset, reg1);
1010 reserved->ltrReg1 = reg1;
/macosx-10.9.5/cctools-845/as/
H A Dhppa.c201 int reg,reg1,reg2,s2,s3; local
1028 reg1 = pa_parse_number(&s);
1034 reg2 = reg1;
1035 reg1 = 0;
1037 if ( reg1 < 4 && reg1 >= 0 ) {
1038 opcode |= reg1 << 14;
H A Dm68k.c2464 int reg1,
2472 reg1=i;
2475 ADD_REG(reg1);
2480 if(reg2<DATA || reg2>=FPREG+8 || reg1==FPI || reg1==FPS || reg1==FPC) {
2484 while(reg1<=reg2) {
2485 ADD_REG(reg1);
2486 reg1++;
2491 ADD_REG(reg1);
2463 int reg1, local
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFLocaleIdentifier.c104 const char * reg1; member in struct:SpecialCaseUpdates
1642 for (specialCasePtr = specialCases; specialCasePtr->reg1 != NULL; specialCasePtr++) {
1649 if ( ( foundTag = strstr(inLocaleString, specialCasePtr->reg1) ) && !isalnum(foundTag[3]) ) {
1652 if ( regionTag && _CheckForTag(regionTag+1, specialCasePtr->reg1 + 1, 2) ) {
1658 if ( ( regionTag && _CheckForTag(regionTag+1, specialCasePtr->reg1 + 1, 2) ) ||
1659 ( ( foundTag = strstr(inLocaleString, specialCasePtr->reg1) ) && !isalnum(foundTag[3]) ) ) {
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITInlines.h807 ALWAYS_INLINE JIT::Jump JIT::emitJumpIfBothJSCells(RegisterID reg1, RegisterID reg2, RegisterID scratch) argument
809 move(reg1, scratch);
858 ALWAYS_INLINE JIT::Jump JIT::emitJumpIfNotImmediateIntegers(RegisterID reg1, RegisterID reg2, RegisterID scratch) argument
860 move(reg1, scratch);
870 ALWAYS_INLINE void JIT::emitJumpSlowCaseIfNotImmediateIntegers(RegisterID reg1, RegisterID reg2, RegisterID scratch) argument
872 addSlowCase(emitJumpIfNotImmediateIntegers(reg1, reg2, scratch));
/macosx-10.9.5/emacs-92/emacs/lisp/calc/
H A Dcalc-rewr.el353 ;;; (func part head reg1 reg2 ... regn)
355 ;;; The arguments are stored in "reg1" through "regn".
357 ;;; (func-def part head defs reg1 reg2 ... regn)
365 ;;; (func-opt part head defs reg1)
368 ;;; "reg1" (and the defaults are assigned).
370 ;;; (try part heads mark reg1 [def])
373 ;;; types. An initial assignment of arguments to "reg1" is tried.
375 ;;; and tries other assignments of arguments to "reg1".
377 ;;; "part" to "reg1", and "def" to "reg2" in the following "try2".
381 ;;; 1 if reg1 i
[all...]
/macosx-10.9.5/cctools-845/otool/
H A Dm68k_disasm.c220 char *reg1, *reg2; local
279 reg1 = dregs[(specop1 & 0x7000) >> 12];
281 reg1 = aregs[(specop1 & 0x7000) >> 12];
282 printf(",%s\n", reg1);
487 reg1 = dregs[(specop1 & 0x7000) >> 12];
489 reg1 = aregs[(specop1 & 0x7000) >> 12];
504 reg1, reg2);
576 reg1 = dregs[(specop1 & 0x7000) >> 12];
578 reg1 = aregs[(specop1 & 0x7000) >> 12];
582 printf(",%s\n", reg1);
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/assembler/
H A DMacroAssemblerX86Common.h1010 void swap(RegisterID reg1, RegisterID reg2) argument
1012 if (reg1 != reg2)
1013 m_assembler.xchgq_rr(reg1, reg2);
1037 void swap(RegisterID reg1, RegisterID reg2) argument
1039 if (reg1 != reg2)
1040 m_assembler.xchgl_rr(reg1, reg2);
1067 // jle32(reg1, TrustedImm32(5)) will branch if the value held in reg1, when
H A DARMv7Assembler.h2669 ALWAYS_INLINE void oneWordOp5Imm5Reg3Reg3(OpcodeID op, uint8_t imm, RegisterID reg1, RegisterID reg2) argument
2671 m_buffer.putShort(op | (imm << 6) | (reg1 << 3) | reg2);
2674 ALWAYS_INLINE void oneWordOp7Reg3Reg3Reg3(OpcodeID op, RegisterID reg1, RegisterID reg2, RegisterID reg3) argument
2676 m_buffer.putShort(op | (reg1 << 6) | (reg2 << 3) | reg3);
2684 ALWAYS_INLINE void oneWordOp8RegReg143(OpcodeID op, RegisterID reg1, RegisterID reg2) argument
2686 m_buffer.putShort(op | ((reg2 & 8) << 4) | (reg1 << 3) | (reg2 & 7));
2694 ALWAYS_INLINE void oneWordOp10Reg3Reg3(OpcodeID op, RegisterID reg1, RegisterID reg2) argument
2696 m_buffer.putShort(op | (reg1 << 3) | reg2);
2726 ALWAYS_INLINE void twoWordOp12Reg4Reg4Imm12(OpcodeID1 op, RegisterID reg1, RegisterID reg2, uint16_t imm) argument
2728 m_buffer.putShort(op | reg1);
2732 twoWordOp12Reg40Imm3Reg4Imm20Imm5(OpcodeID1 op, RegisterID reg1, RegisterID reg2, uint16_t imm1, uint16_t imm2, uint16_t imm3) argument
[all...]
H A DMacroAssemblerARM.h540 void swap(RegisterID reg1, RegisterID reg2) argument
542 xor32(reg1, reg2);
543 xor32(reg2, reg1);
544 xor32(reg1, reg2);
H A DMacroAssemblerARMv7.h1208 void swap(RegisterID reg1, RegisterID reg2) argument
1210 move(reg1, dataTempRegister);
1211 move(reg2, reg1);
1258 // jle32(reg1, TrustedImm32(5)) will branch if the value held in reg1, when
H A DMacroAssemblerMIPS.h1249 void swap(RegisterID reg1, RegisterID reg2) argument
1251 move(reg1, immTempRegister);
1252 move(reg2, reg1);
1280 // jle32(reg1, TrustedImm32(5)) will branch if the value held in reg1, when
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGSpeculativeJIT.cpp3141 FPRReg reg1 = op1.fpr(); local
3143 m_jit.addDouble(reg1, reg2, result.fpr());
3301 FPRReg reg1 = op1.fpr(); local
3303 m_jit.subDouble(reg1, reg2, result.fpr());
3357 GPRReg reg1 = op1.gpr(); local
3360 m_jit.move(reg1, result.gpr());
3374 GPRReg reg1 = op1.gpr(); local
3381 m_jit.move(reg1, result.gpr());
3386 m_jit.branchMul32(MacroAssembler::Overflow, reg1, reg2, result.gpr()));
3392 speculationCheck(NegativeZero, JSValueRegs(), 0, m_jit.branch32(MacroAssembler::LessThan, reg1, TrustedImm3
3406 FPRReg reg1 = op1.fpr(); local
[all...]
H A DDFGSpeculativeJIT32_64.cpp2177 GPRReg reg1 = op1.gpr(); local
2179 bitOp(op, reg1, reg2, result.gpr());
2201 GPRReg reg1 = op1.gpr(); local
2203 shiftOp(op, reg1, reg2, result.gpr());
2273 FPRReg reg1 = op1.fpr(); local
2275 m_jit.divDouble(reg1, reg2, result.fpr());
H A DDFGSpeculativeJIT64.cpp2109 GPRReg reg1 = op1.gpr(); local
2111 bitOp(op, reg1, reg2, result.gpr());
2133 GPRReg reg1 = op1.gpr(); local
2135 shiftOp(op, reg1, reg2, result.gpr());
2199 FPRReg reg1 = op1.fpr(); local
2201 m_jit.divDouble(reg1, reg2, result.fpr());
/macosx-10.9.5/apache-786.1/httpd/modules/proxy/
H A Dmod_proxy.c574 ap_regmatch_t reg1[AP_MAX_REG_MATCH]; local
614 AP_MAX_REG_MATCH, reg1, 0)) {
619 (use_uri == r->uri) ? regm : reg1);
/macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/
H A Dsqlite3.c79999 int reg1, reg2, reg3; local
[all...]

Completed in 709 milliseconds