Home
last modified time | relevance | path

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

/external/valgrind/main/VEX/priv/
Dhost_arm_defs.c2366 HReg rreg, Int offsetB, Bool mode64 ) in genSpill_ARM() argument
2369 vassert(offsetB >= 0); in genSpill_ARM()
2376 vassert(offsetB <= 4095); in genSpill_ARM()
2379 ARMAMode1_RI(hregARM_R8(), offsetB) ); in genSpill_ARM()
2386 vassert(0 == (offsetB & 3)); in genSpill_ARM()
2387 if (offsetB >= 1024) { in genSpill_ARM()
2388 Int offsetKB = offsetB / 1024; in genSpill_ARM()
2392 offsetB -= (1024 * offsetKB); in genSpill_ARM()
2395 vassert(offsetB <= 1020); in genSpill_ARM()
2399 mkARMAModeV(base, offsetB) ); in genSpill_ARM()
[all …]
Dhost_ppc_defs.h848 HReg rreg, Int offsetB, Bool mode64 );
850 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.c1909 HReg rreg, Int offsetB, Bool mode64 ) in genSpill_AMD64() argument
1912 vassert(offsetB >= 0); in genSpill_AMD64()
1916 am = AMD64AMode_IR(offsetB, hregAMD64_RBP()); in genSpill_AMD64()
1931 HReg rreg, Int offsetB, Bool mode64 ) in genReload_AMD64() argument
1934 vassert(offsetB >= 0); in genReload_AMD64()
1938 am = AMD64AMode_IR(offsetB, hregAMD64_RBP()); in genReload_AMD64()
Dhost_ppc_defs.c2142 HReg rreg, Int offsetB, Bool mode64 ) in genSpill_PPC() argument
2147 am = PPCAMode_IR( offsetB, GuestStatePtr(mode64) ); in genSpill_PPC()
2172 HReg rreg, Int offsetB, Bool mode64 ) in genReload_PPC() argument
2177 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.cpp456 short Range::compareBoundaryPoints(Node* containerA, int offsetA, Node* containerB, int offsetB, Ex… in compareBoundaryPoints() argument
470 if (offsetA == offsetB) in compareBoundaryPoints()
472 if (offsetA < offsetB) in compareBoundaryPoints()
503 while (n != c && offsetC < offsetB) { in compareBoundaryPoints()
508 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()