/external/chromium_org/content/browser/ |
resource_context_impl.cc | 54 ResourceDispatcherHostImpl* rdhi = ResourceDispatcherHostImpl::Get(); local 55 if (rdhi) { 56 rdhi->CancelRequestsForContext(this); 57 rdhi->RemoveResourceContext(this);
|
/system/core/libpixelflinger/codeflinger/ |
ARMAssemblerProxy.cpp | 173 int RdLo, int RdHi, int Rm, int Rs) { 174 mTarget->UMULL(cc, s, RdLo, RdHi, Rm, Rs); 177 int RdLo, int RdHi, int Rm, int Rs) { 178 mTarget->UMUAL(cc, s, RdLo, RdHi, Rm, Rs); 181 int RdLo, int RdHi, int Rm, int Rs) { 182 mTarget->SMULL(cc, s, RdLo, RdHi, Rm, Rs); 185 int RdLo, int RdHi, int Rm, int Rs) { 186 mTarget->SMUAL(cc, s, RdLo, RdHi, Rm, Rs); 282 int RdHi, int RdLo, int Rs, int Rm) { 283 mTarget->SMLAL(cc, xy, RdHi, RdLo, Rs, Rm) [all...] |
ARMAssembler.cpp | 242 int RdLo, int RdHi, int Rm, int Rs) { 243 LOG_FATAL_IF(RdLo==Rm || RdHi==Rm || RdLo==RdHi, 244 "UMULL(r%u,r%u,r%u,r%u)", RdLo,RdHi,Rm,Rs); 246 (RdHi<<16) | (RdLo<<12) | (Rs<<8) | 0x90 | Rm; 249 int RdLo, int RdHi, int Rm, int Rs) { 250 LOG_FATAL_IF(RdLo==Rm || RdHi==Rm || RdLo==RdHi, 251 "UMUAL(r%u,r%u,r%u,r%u)", RdLo,RdHi,Rm,Rs); 253 (RdHi<<16) | (RdLo<<12) | (Rs<<8) | 0x90 | Rm [all...] |
ARMAssemblerInterface.h | 132 int RdLo, int RdHi, int Rm, int Rs) = 0; 134 int RdLo, int RdHi, int Rm, int Rs) = 0; 136 int RdLo, int RdHi, int Rm, int Rs) = 0; 138 int RdLo, int RdHi, int Rm, int Rs) = 0; 210 int RdHi, int RdLo, int Rs, int Rm) = 0; 316 SMLALBB(int cc, int RdHi, int RdLo, int Rs, int Rm) { 317 SMLAL(cc, xyBB, RdHi, RdLo, Rs, Rm); } 319 SMLALTB(int cc, int RdHi, int RdLo, int Rs, int Rm) { 320 SMLAL(cc, xyTB, RdHi, RdLo, Rs, Rm); } 322 SMLALBT(int cc, int RdHi, int RdLo, int Rs, int Rm) [all...] |
ARMAssembler.h | 98 int RdLo, int RdHi, int Rm, int Rs); 100 int RdLo, int RdHi, int Rm, int Rs); 102 int RdLo, int RdHi, int Rm, int Rs); 104 int RdLo, int RdHi, int Rm, int Rs); 155 int RdHi, int RdLo, int Rs, int Rm);
|
ARMAssemblerProxy.h | 87 int RdLo, int RdHi, int Rm, int Rs); 89 int RdLo, int RdHi, int Rm, int Rs); 91 int RdLo, int RdHi, int Rm, int Rs); 93 int RdLo, int RdHi, int Rm, int Rs); 142 int RdHi, int RdLo, int Rs, int Rm);
|
MIPSAssembler.cpp | 637 int RdLo, int RdHi, int Rm, int Rs) { 640 mMips->MFHI(RdHi); 644 cond.r1 = RdHi; // BUG... 650 int RdLo, int RdHi, int Rm, int Rs) { 651 LOG_FATAL_IF(RdLo==Rm || RdHi==Rm || RdLo==RdHi, 652 "UMUAL(r%u,r%u,r%u,r%u)", RdLo,RdHi,Rm,Rs); 654 // (RdHi<<16) | (RdLo<<12) | (Rs<<8) | 0x90 | Rm; 660 cond.r1 = RdHi; // BUG... 666 int RdLo, int RdHi, int Rm, int Rs) [all...] |
MIPSAssembler.h | 98 int RdLo, int RdHi, int Rm, int Rs); 100 int RdLo, int RdHi, int Rm, int Rs); 102 int RdLo, int RdHi, int Rm, int Rs); 104 int RdLo, int RdHi, int Rm, int Rs); 154 int RdHi, int RdLo, int Rs, int Rm);
|
/external/llvm/lib/Target/ARM/ |
ARMInstrInfo.td | [all...] |
ARMInstrThumb2.td | 529 bits<4> RdHi; 537 let Inst{11-8} = RdHi; 546 bits<4> RdHi; 554 let Inst{11-8} = RdHi; [all...] |
ARMInstrFormats.td | 812 bits<4> RdHi; 813 let Inst{19-16} = RdHi; [all...] |
/sdk/emulator/qtools/ |
armdis.cpp | 512 uint8_t rdhi = (insn >> 16) & 0xf; local 520 opname, cond_to_str(cond), bit_s ? "s" : "", rdlo, rdhi, rm, rs);
|
/external/v8/src/arm/ |
disasm-arm.cc | 702 // The signed/long multiply instructions use the terms RdHi and RdLo 706 // RdHi == Rn field 707 // The order of registers is: <RdLo>, <RdHi>, <Rm>, <Rs> [all...] |
simulator-arm.cc | [all...] |
/art/compiler/dex/quick/arm/ |
arm_lir.h | 421 kThumb2Umull, // umull [111110111010] rn[19-16], rdlo[15-12] rdhi[11-8] [0000] rm[3-0]. 447 kThumb2Smull, // smull [111110111000] rn[19-16], rdlo[15-12] rdhi[11-8] [0000] rm[3-0].
|
/external/chromium_org/v8/src/arm/ |
disasm-arm.cc | 757 // The signed/long multiply instructions use the terms RdHi and RdLo 761 // RdHi == Rn field 762 // The order of registers is: <RdLo>, <RdHi>, <Rm>, <Rs> [all...] |
simulator-arm.cc | [all...] |
/external/chromium_org/content/browser/download/ |
download_manager_impl.cc | 56 // we must down cast. RDHI is the only subclass of RDH as of 2012 May 4.
|
/external/qemu/target-arm/ |
translate.c | 1381 int rdhi, rdlo, rd0, rd1, i; local 2384 int acc, rd0, rd1, rdhi, rdlo; local [all...] |
/external/valgrind/main/VEX/priv/ |
host_arm_isel.c | [all...] |
/external/qemu/ |
trace.c | 912 int RdHi = (insn >> 16) & 15; 915 result += _interlock_use(RdLo) + _interlock_use(RdHi); [all...] |
/dalvik/vm/compiler/codegen/arm/ |
ArmLIR.h | 617 rdhi[11-8] [0000] rm[3-0] */ [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/ |
libarm-linux-android-sim.a | [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/ |
libarm-linux-android-sim.a | [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/ |
libarm-linux-android-sim.a | [all...] |