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

  /external/qemu/
i386-dis.c 243 /* REX prefix the current instruction. See below. */
244 static int rex; variable
245 /* Bits of REX we've already used. */
247 /* Mark parts used in the REX prefix. When we are testing for
248 empty prefix (for 8bit register REX extension), just mask it
249 out. Otherwise test for REX bit is excuse for existence of REX
255 if ((rex & value)) \
468 #define dq_mode 11 /* operand size depends on REX prefixes. */
694 'K' => print 'd' or 'q' if rex prefix is present
    [all...]
  /frameworks/base/core/java/android/os/
Environment.java 390 } catch (Exception rex) {
  /libcore/luni/src/main/java/java/util/concurrent/
AbstractExecutorService.java 173 } catch (RuntimeException rex) {
174 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/storage/
StorageManager.java 401 } catch (RemoteException rex) {
402 Log.e(TAG, "Failed to get UMS enable state", rex);
  /external/v8/src/x64/
disasm-x64.cc 340 void setRex(byte rex) {
341 ASSERT_EQ(0x40, rex & 0xF0);
342 rex_ = rex;
345 bool rex() { return rex_ != 0; } function in class:disasm::DisassemblerX64
349 // Actual number of base register given the low bits and the rex.b state.
724 regop &= 0x7; // The REX.R bit does not affect the operation.
    [all...]
  /frameworks/base/services/java/com/android/server/
MountService.java 544 } catch (RemoteException rex) {
    [all...]
  /frameworks/base/core/java/android/app/
ContextImpl.java     [all...]

Completed in 3523 milliseconds