Home
last modified time | relevance | path

Searched refs:offsetB (Results 1 – 9 of 9) sorted by relevance

/external/valgrind/main/VEX/priv/
Dhost_arm_defs.c2388 HReg rreg, Int offsetB, Bool mode64 ) in genSpill_ARM() argument
2391 vassert(offsetB >= 0); in genSpill_ARM()
2398 vassert(offsetB <= 4095); in genSpill_ARM()
2401 ARMAMode1_RI(hregARM_R8(), offsetB) ); in genSpill_ARM()
2408 vassert(0 == (offsetB & 3)); in genSpill_ARM()
2409 if (offsetB >= 1024) { in genSpill_ARM()
2410 Int offsetKB = offsetB / 1024; in genSpill_ARM()
2414 offsetB -= (1024 * offsetKB); in genSpill_ARM()
2417 vassert(offsetB <= 1020); in genSpill_ARM()
2421 mkARMAModeV(base, offsetB) ); in genSpill_ARM()
[all …]
Dhost_ppc_defs.h856 HReg rreg, Int offsetB, Bool mode64 );
858 HReg rreg, Int offsetB, Bool mode64 );
Dhost_x86_defs.c1615 HReg rreg, Int offsetB, Bool mode64 ) in genSpill_X86() argument
1618 vassert(offsetB >= 0); in genSpill_X86()
1622 am = X86AMode_IR(offsetB, hregX86_EBP()); in genSpill_X86()
1640 HReg rreg, Int offsetB, Bool mode64 ) in genReload_X86() argument
1643 vassert(offsetB >= 0); in genReload_X86()
1647 am = X86AMode_IR(offsetB, hregX86_EBP()); in genReload_X86()
Dhost_amd64_defs.c1950 HReg rreg, Int offsetB, Bool mode64 ) in genSpill_AMD64() argument
1953 vassert(offsetB >= 0); in genSpill_AMD64()
1957 am = AMD64AMode_IR(offsetB, hregAMD64_RBP()); in genSpill_AMD64()
1972 HReg rreg, Int offsetB, Bool mode64 ) in genReload_AMD64() argument
1975 vassert(offsetB >= 0); in genReload_AMD64()
1979 am = AMD64AMode_IR(offsetB, hregAMD64_RBP()); in genReload_AMD64()
Dhost_s390_defs.c452 genSpill_S390(HInstr **i1, HInstr **i2, HReg rreg, Int offsetB, Bool mode64) in genSpill_S390() argument
456 vassert(offsetB >= 0); in genSpill_S390()
457 vassert(offsetB <= (1 << 12)); /* because we use b12 amode */ in genSpill_S390()
462 am = s390_amode_for_guest_state(offsetB); in genSpill_S390()
479 genReload_S390(HInstr **i1, HInstr **i2, HReg rreg, Int offsetB, Bool mode64) in genReload_S390() argument
483 vassert(offsetB >= 0); in genReload_S390()
484 vassert(offsetB <= (1 << 12)); /* because we use b12 amode */ in genReload_S390()
489 am = s390_amode_for_guest_state(offsetB); in genReload_S390()
Dhost_ppc_defs.c2220 HReg rreg, Int offsetB, Bool mode64 ) in genSpill_PPC() argument
2225 am = PPCAMode_IR( offsetB, GuestStatePtr(mode64) ); in genSpill_PPC()
2250 HReg rreg, Int offsetB, Bool mode64 ) in genReload_PPC() argument
2255 am = PPCAMode_IR( offsetB, GuestStatePtr(mode64) ); in genReload_PPC()
/external/webkit/Source/WebCore/dom/
DRange.h72 …static short compareBoundaryPoints(Node* containerA, int offsetA, Node* containerB, int offsetB, E…
DRange.cpp458 short Range::compareBoundaryPoints(Node* containerA, int offsetA, Node* containerB, int offsetB, Ex… in compareBoundaryPoints() argument
472 if (offsetA == offsetB) in compareBoundaryPoints()
474 if (offsetA < offsetB) in compareBoundaryPoints()
505 while (n != c && offsetC < offsetB) { in compareBoundaryPoints()
510 if (offsetC < offsetB) in compareBoundaryPoints()
/external/webkit/Source/WebCore/editing/
Dhtmlediting.cpp102 int offsetB = b.deprecatedEditingOffset(); in comparePositions() local
120 offsetB = 0; in comparePositions()
126 int result = Range::compareBoundaryPoints(nodeA, offsetA, nodeB, offsetB, ec); in comparePositions()