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

1 2

  /dalvik/vm/compiler/codegen/x86/libenc/
dec_base.h 120 , const Rex *rex
127 , const Rex *rex
dec_base.cpp 184 ((NULL == rex || 0 == rex->flag) ? reg : (reg + 8))
189 //don't know the use of rex, seems not used when _EM64T_ is not enabled
193 , const Rex UNREF *rex
211 decodeModRM(odesc, pbuf, pinst, rex);
228 decodeModRM(odesc, pbuf, pinst, rex);
311 , rex
378 Rex *prex = NULL;
379 Rex rex local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinTask.java 306 } catch (Throwable rex) {
307 setExceptionalCompletion(rex);
327 } catch (Throwable rex) {
328 return setExceptionalCompletion(rex);
349 } catch (Throwable rex) {
350 return setExceptionalCompletion(rex);
    [all...]
AbstractExecutorService.java 167 } catch (RuntimeException rex) {
168 ee = new ExecutionException(rex);
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 43 #define wFromREX(rex) (((rex) & 0x8) >> 3)
44 #define rFromREX(rex) (((rex) & 0x4) >> 2)
45 #define xFromREX(rex) (((rex) & 0x2) >> 1)
46 #define bFromREX(rex) ((rex) & 0x1)
453 /* The value of the REX prefix, if present */
456 the opcode, or right before the REX prefix if one is present) *
    [all...]
  /external/valgrind/main/VEX/priv/
host_amd64_defs.c 2269 UChar rex; local
    [all...]
  /external/qemu/
i386-dis.c 244 /* REX prefix the current instruction. See below. */
245 static int rex; variable
246 /* Bits of REX we've already used. */
248 /* Mark parts used in the REX prefix. When we are testing for
249 empty prefix (for 8bit register REX extension), just mask it
250 out. Otherwise test for REX bit is excuse for existence of REX
256 if ((rex & value)) \
476 #define dq_mode 11 /* operand size depends on REX prefixes. */
702 'K' => print 'd' or 'q' if rex prefix is present
    [all...]
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 653 sub rex {
655 my ($dst,$src,$rex)=@_;
657 $rex|=0x04 if($dst>=8);
658 $rex|=0x01 if($src>=8);
659 push @opcode,($rex|0x40) if ($rex);
672 rex(\@opcode,$src,$dst,0x8);
679 rex(\@opcode,$src,$dst,0x8);
696 rex(\@opcode,$src,$dst);
714 rex(\@opcode,$dst,$src)
652 sub rex { subroutine
    [all...]
  /frameworks/base/core/java/android/os/storage/
StorageManager.java 341 } catch (RemoteException rex) {
374 } catch (RemoteException rex) {
432 } catch (RemoteException rex) {
433 Log.e(TAG, "Failed to get UMS enable state", rex);
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractListeningExecutorService.java 115 } catch (RuntimeException rex) {
116 ee = new ExecutionException(rex);
  /external/qemu/tcg/x86_64/
tcg-target.c 221 #define P_REXW 0x200 /* set rex.w = 1 */
240 int rex = 0; local
242 rex |= (opc & P_REXW) >> 6; /* REX.W */
243 rex |= (r & 8) >> 1; /* REX.R */
244 rex |= (x & 8) >> 2; /* REX.X */
245 rex |= (rm & 8) >> 3; /* REX.B *
    [all...]
  /frameworks/base/core/java/android/os/
Environment.java 599 } catch (RemoteException rex) {
600 Log.w(TAG, "Failed to read external storage state; assuming REMOVED: " + rex);
  /external/qemu/tcg/i386/
tcg-target.c 234 # define P_REXW 0x800 /* Set REX.W = 1 */
353 int rex; local
364 rex = 0;
365 rex |= (opc & P_REXW) >> 8; /* REX.W */
366 rex |= (r & 8) >> 1; /* REX.R */
367 rex |= (x & 8) >> 2; /* REX.X */
368 rex |= (rm & 8) >> 3; /* REX.B *
    [all...]
  /external/openssl/crypto/aes/asm/
aesni-sha1-x86_64.pl 1219 sub rex { subroutine
1222 my $rex=0;
1224 $rex|=0x04 if($dst>=8);
1225 $rex|=0x01 if($src>=8);
1226 push @opcode,$rex|0x40 if($rex);
1238 rex(\@opcode,$3,$2);
aesni-x86_64.pl 3027 sub rex { subroutine
    [all...]
  /external/llvm/utils/lit/lit/
main.py 303 rex = re.compile(opts.filter)
308 if rex.search(t.getFullName())]
  /external/v8/src/x64/
disasm-x64.cc 348 void setRex(byte rex) {
349 ASSERT_EQ(0x40, rex & 0xF0);
350 rex_ = rex;
353 bool rex() { return rex_ != 0; } function in class:disasm::DisassemblerX64
357 // Actual number of base register given the low bits and the rex.b state.
737 regop &= 0x7; // The REX.R bit does not affect the operation.
    [all...]
  /external/smack/src/com/kenai/jbosh/
BOSHClient.java     [all...]
  /external/elfutils/libcpu/
i386_disasm.c 118 prefbit (rex),
539 ADD_STRING ("rex");
  /frameworks/base/services/java/com/android/server/
MountService.java 695 } catch (RemoteException rex) {
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Tab.java     [all...]
  /frameworks/base/core/java/android/app/
ContextImpl.java 466 } catch (RemoteException rex) {
467 Log.e(TAG, "Failed to create StorageManager", rex);
    [all...]
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 

Completed in 980 milliseconds

1 2