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

1 2

  /external/jsoncpp/devtools/
antglob.py 66 rex = ['^']
76 rex.append( sep_rex + '(?:.*%s)?' % sep_rex )
78 rex.append( '(?:.*%s)?' % sep_rex )
80 rex.append( sep_rex + '.*' )
82 rex.append( '[^/%s]*' % re.escape(os.path.sep) )
84 rex.append( sep_rex )
86 rex.append( re.escape(match.group(6)) )
88 rex.append('$')
89 return re.compile( ''.join( rex ) )
116 for rex in filter_rexs
    [all...]
  /external/capstone/bindings/java/capstone/
X86.java 72 public byte rex; field in class:X86.UnionOpInfo
97 return Arrays.asList("prefix", "opcode", "rex", "addr_size",
106 public byte rex; field in class:X86.OpInfo
126 rex = e.rex;
  /art/disassembler/
disassembler_x86.cc 63 // 64-bit opcode REX modifier.
69 static void DumpReg0(std::ostream& os, uint8_t rex, size_t reg,
71 DCHECK_LT(reg, (rex == 0) ? 8u : 16u);
72 bool rex_w = (rex & REX_W) != 0;
74 os << ((rex == 0) ? gReg8Names[reg] : gExtReg8Names[reg]);
84 static void DumpAnyReg(std::ostream& os, uint8_t rex, size_t reg,
87 DumpReg0(os, rex, reg, byte_operand, size_override);
95 static void DumpReg(std::ostream& os, uint8_t rex, uint8_t reg,
97 bool rex_r = (rex & REX_R) != 0;
99 DumpAnyReg(os, rex, reg_num, byte_operand, size_override, reg_file)
315 uint8_t rex = (supports_rex_ && (*instr >= 0x40) && (*instr <= 0x4F)) ? *instr : 0; local
    [all...]
  /external/syzkaller/pkg/ifuzz/
encode.go 70 // REX
71 var rex byte
77 rex = byte(0x40 | r.Intn(16))
79 rex |= 1 << 3
81 rex &^= 1 << 3
83 rexR = rex&0x4 != 0
84 code = append(code, rex)
109 if rex&(1<<3) != 0 {
  /external/capstone/bindings/ocaml/
x86.ml 32 rex: int; Record field in type:cs_x86
  /external/swiftshader/third_party/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)
450 /* The value of the REX prefix, if present */
453 the opcode, or right before the REX prefix if one is present) *
    [all...]
  /external/v8/src/x64/
assembler-x64-inl.h 83 emit(0x48 | reg.high_bit() << 2 | op.data().rex);
87 emit(0x48 | (reg.code() & 0x8) >> 1 | op.data().rex);
96 void Assembler::emit_rex_64(Operand op) { emit(0x48 | op.data().rex); }
103 emit(0x40 | reg.high_bit() << 2 | op.data().rex);
111 void Assembler::emit_rex_32(Operand op) { emit(0x40 | op.data().rex); }
119 byte rex_bits = reg.high_bit() << 2 | op.data().rex;
124 byte rex_bits = (reg.code() & 0x8) >> 1 | op.data().rex;
156 if (op.data().rex != 0) emit(0x40 | op.data().rex);
170 byte rxb = ~((reg.high_bit() << 2) | rm.data().rex) << 5
    [all...]
  /external/pcre/dist2/src/sljit/
sljitNativeX86_64.c 323 static sljit_s32 emit_do_imm32(struct sljit_compiler *compiler, sljit_u8 rex, sljit_u8 opcode, sljit_sw imm)
326 sljit_s32 length = 1 + (rex ? 1 : 0) + sizeof(sljit_s32);
331 if (rex)
332 *inst++ = rex;
346 sljit_u8 rex = 0; local
368 rex |= REX_W;
370 rex |= REX;
397 rex |= REX_B;
412 rex |= REX_X
    [all...]
  /external/capstone/arch/X86/
X86DisassemblerDecoder.h 42 #define wFromREX(rex) (((rex) & 0x8) >> 3)
43 #define rFromREX(rex) (((rex) & 0x4) >> 2)
44 #define xFromREX(rex) (((rex) & 0x2) >> 1)
45 #define bFromREX(rex) ((rex) & 0x1)
581 /* The value of the REX prefix, if present */
638 the opcode, or right before the REX prefix if one is present) *
    [all...]
  /external/libcxx/test/std/re/re.iter/re.regiter/re.regiter.incr/
post.pass.cpp 99 std::regex rex(".*");
102 std::cregex_iterator i(std::begin(foo), std::end(foo) - 1, rex);
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 32 #define wFromREX(rex) (((rex) & 0x8) >> 3)
33 #define rFromREX(rex) (((rex) & 0x4) >> 2)
34 #define xFromREX(rex) (((rex) & 0x2) >> 1)
35 #define bFromREX(rex) ((rex) & 0x1)
557 // The value of the REX prefix, if present
560 // the opcode, or right before the REX prefix if one is present)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 32 #define wFromREX(rex) (((rex) & 0x8) >> 3)
33 #define rFromREX(rex) (((rex) & 0x4) >> 2)
34 #define xFromREX(rex) (((rex) & 0x2) >> 1)
35 #define bFromREX(rex) ((rex) & 0x1)
555 // The value of the REX prefix, if present
  /external/capstone/bindings/python/capstone/
x86.py 55 ('rex', ctypes.c_uint8),
72 return (a.prefix[:], a.opcode[:], a.rex, a.addr_size, \
  /external/boringssl/src/crypto/perlasm/
x86_64-xlate.pl 955 sub rex {
957 my ($dst,$src,$rex)=@_;
959 $rex|=0x04 if($dst>=8);
960 $rex|=0x01 if($src>=8);
961 push @$opcode,($rex|0x40) if ($rex);
970 rex(\@opcode,$src,$dst,0x8);
977 rex(\@opcode,$src,$dst,0x8);
994 rex(\@opcode,$src,$dst);
1012 rex(\@opcode,$dst,$src)
954 sub rex { subroutine
    [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64.cc 1196 // Emit a REX.W prefix if the operand size is 64 bits.
1211 // Emit a REX.W prefix if the operand size is 64 bits.
1231 // Emit a REX.W prefix if the operand size is 64 bits.
1246 // Emit a REX.W prefix if the operand size is 64 bits.
3757 uint8_t rex = force ? 0x40 : 0; local
3796 uint8_t rex = operand.rex(); local
3803 uint8_t rex = operand.rex(); local
3813 uint8_t rex = operand.rex(); local
3831 uint8_t rex = operand.rex(); local
3849 uint8_t rex = 0x48 | operand.rex(); \/\/ REX.W000 local
3857 uint8_t rex = 0x48 | operand.rex(); \/\/ REX.W000 local
3871 uint8_t rex = operand.rex(); local
    [all...]
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/
rjsmin.py 375 rex = (
429 rex = (
496 return _re.sub(rex, subber, '\n%s\n' % script).strip()
  /external/capstone/cstool/
cstool_x86.c 26 printf("\trex: 0x%x\n", x86->rex);
  /external/guava/guava-bootstrap/src/java/util/concurrent/
AbstractExecutorService.java 88 } catch (RuntimeException rex) {
89 ee = new ExecutionException(rex);
  /external/capstone/bindings/python/
test_x86.py 42 # print operand's REX prefix (non-zero value is relavant for x86_64 instructions)
43 print("\trex: 0x%x" % (insn.rex))
  /external/capstone/bindings/java/
TestX86.java 52 // print REX prefix (non-zero value is relevant for x86_64)
53 System.out.printf("\trex: 0x%x\n", operands.rex);
  /external/capstone/tests/
test_x86.c 49 printf("\trex: 0x%x\n", x86->rex);
  /external/guava/guava/src/com/google/common/util/concurrent/
MoreExecutors.java 725 } catch (RuntimeException rex) {
726 ee = new ExecutionException(rex);
    [all...]
  /external/llvm/utils/lit/lit/
main.py 360 rex = re.compile(opts.filter)
365 if rex.search(result_test.getFullName())]
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_x86sse.c 657 uint8_t rex = 0x40; local
660 rex |= 4;
665 rex |= 1;
668 emit_1ub(p, rex);
694 uint8_t rex = 0x48; local
703 rex |= 4;
708 rex |= 1;
712 emit_1ub(p, rex);
    [all...]
  /external/epid-sdk/ext/argtable3/
argtable3.c 2775 TRex *rex = NULL; local
2921 TRex *rex = NULL; local
    [all...]

Completed in 1344 milliseconds

1 2