HomeSort by relevance Sort by last modified time
    Searched refs:_inst (Results 1 - 25 of 50) sorted by null

1 2

  /dalvik/vm/mterp/c/
header.cpp 273 * Extract instruction byte from 16-bit fetch (_inst is a u2).
275 #define INST_INST(_inst) ((_inst) & 0xff)
280 #define INST_REPLACE_OP(_inst, _opcode) (((_inst) & 0xff00) | _opcode)
283 * Extract the "vA, vB" 4-bit registers from the instruction word (_inst is u2).
285 #define INST_A(_inst) (((_inst) >> 8) & 0x0f)
286 #define INST_B(_inst) ((_inst) >> 12
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
random.py 879 _inst = Random() variable
880 seed = _inst.seed
881 random = _inst.random
882 uniform = _inst.uniform
883 triangular = _inst.triangular
884 randint = _inst.randint
885 choice = _inst.choice
886 randrange = _inst.randrange
887 sample = _inst.sample
888 shuffle = _inst.shuffl
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
random.py 879 _inst = Random() variable
880 seed = _inst.seed
881 random = _inst.random
882 uniform = _inst.uniform
883 triangular = _inst.triangular
884 randint = _inst.randint
885 choice = _inst.choice
886 randrange = _inst.randrange
887 sample = _inst.sample
888 shuffle = _inst.shuffl
    [all...]
  /dalvik/vm/interp/
Interp.h 34 #define GET_OPCODE(_inst) (_inst & 0xff)
  /dalvik/libdex/
InstrUtils.cpp 475 #define INST_A(_inst) (((u2)(_inst) >> 8) & 0x0f)
476 #define INST_B(_inst) ((u2)(_inst) >> 12)
477 #define INST_AA(_inst) ((_inst) >> 8)
  /external/genext2fs/
install-sh 260 dsttmp=$dstdir/_inst.$$_
  /external/grub/
install-sh 260 dsttmp=$dstdir/_inst.$$_
  /external/libffi/
install-sh 260 dsttmp=$dstdir/_inst.$$_
  /external/libogg/
install-sh 260 dsttmp=$dstdir/_inst.$$_
  /external/libvorbis/
install-sh 260 dsttmp=$dstdir/_inst.$$_
  /external/llvm/autoconf/
install-sh 259 dsttmp=$dstdir/_inst.$$_
  /external/llvm/projects/sample/autoconf/
install-sh 259 dsttmp=$dstdir/_inst.$$_
  /external/qemu/distrib/sdl-1.2.15/build-scripts/
install-sh 260 dsttmp=$dstdir/_inst.$$_
  /ndk/sources/host-tools/make-3.81/config/
install-sh 260 dsttmp=$dstdir/_inst.$$_
  /dalvik/vm/mterp/out/
InterpC-armv5te-vfp.cpp 280 * Extract instruction byte from 16-bit fetch (_inst is a u2).
282 #define INST_INST(_inst) ((_inst) & 0xff)
287 #define INST_REPLACE_OP(_inst, _opcode) (((_inst) & 0xff00) | _opcode)
290 * Extract the "vA, vB" 4-bit registers from the instruction word (_inst is u2).
292 #define INST_A(_inst) (((_inst) >> 8) & 0x0f)
293 #define INST_B(_inst) ((_inst) >> 12
    [all...]
InterpC-armv5te.cpp 280 * Extract instruction byte from 16-bit fetch (_inst is a u2).
282 #define INST_INST(_inst) ((_inst) & 0xff)
287 #define INST_REPLACE_OP(_inst, _opcode) (((_inst) & 0xff00) | _opcode)
290 * Extract the "vA, vB" 4-bit registers from the instruction word (_inst is u2).
292 #define INST_A(_inst) (((_inst) >> 8) & 0x0f)
293 #define INST_B(_inst) ((_inst) >> 12
    [all...]
InterpC-armv7-a-neon.cpp 280 * Extract instruction byte from 16-bit fetch (_inst is a u2).
282 #define INST_INST(_inst) ((_inst) & 0xff)
287 #define INST_REPLACE_OP(_inst, _opcode) (((_inst) & 0xff00) | _opcode)
290 * Extract the "vA, vB" 4-bit registers from the instruction word (_inst is u2).
292 #define INST_A(_inst) (((_inst) >> 8) & 0x0f)
293 #define INST_B(_inst) ((_inst) >> 12
    [all...]
InterpC-armv7-a.cpp 280 * Extract instruction byte from 16-bit fetch (_inst is a u2).
282 #define INST_INST(_inst) ((_inst) & 0xff)
287 #define INST_REPLACE_OP(_inst, _opcode) (((_inst) & 0xff00) | _opcode)
290 * Extract the "vA, vB" 4-bit registers from the instruction word (_inst is u2).
292 #define INST_A(_inst) (((_inst) >> 8) & 0x0f)
293 #define INST_B(_inst) ((_inst) >> 12
    [all...]
InterpC-mips.cpp 280 * Extract instruction byte from 16-bit fetch (_inst is a u2).
282 #define INST_INST(_inst) ((_inst) & 0xff)
287 #define INST_REPLACE_OP(_inst, _opcode) (((_inst) & 0xff00) | _opcode)
290 * Extract the "vA, vB" 4-bit registers from the instruction word (_inst is u2).
292 #define INST_A(_inst) (((_inst) >> 8) & 0x0f)
293 #define INST_B(_inst) ((_inst) >> 12
    [all...]
InterpC-x86.cpp 280 * Extract instruction byte from 16-bit fetch (_inst is a u2).
282 #define INST_INST(_inst) ((_inst) & 0xff)
287 #define INST_REPLACE_OP(_inst, _opcode) (((_inst) & 0xff00) | _opcode)
290 * Extract the "vA, vB" 4-bit registers from the instruction word (_inst is u2).
292 #define INST_A(_inst) (((_inst) >> 8) & 0x0f)
293 #define INST_B(_inst) ((_inst) >> 12
    [all...]
  /dalvik/vm/compiler/codegen/x86/
Lower.h 80 #define INST_INST(_inst) ((_inst) & 0xff)
81 #define INST_A(_inst) (((_inst) >> 8) & 0x0f)
82 #define INST_B(_inst) ((_inst) >> 12)
83 #define INST_AA(_inst) ((_inst) >> 8)
    [all...]
  /external/bison/build-aux/
install-sh 453 dsttmp=$dstdir/_inst.$$_
  /external/chromium/sdch/open-vcdiff/
install-sh 446 dsttmp=$dstdir/_inst.$$_
  /external/chromium_org/sdch/open-vcdiff/
install-sh 446 dsttmp=$dstdir/_inst.$$_
  /external/chromium_org/third_party/libxml/src/
install-sh 446 dsttmp=$dstdir/_inst.$$_

Completed in 878 milliseconds

1 2