Home
last modified time | relevance | path

Searched refs:rex (Results 1 – 25 of 55) sorted by relevance

123

/external/jsoncpp/devtools/
Dantglob.py69 rex = ['^']
79 rex.append(sep_rex + '(?:.*%s)?' % sep_rex)
81 rex.append('(?:.*%s)?' % sep_rex)
83 rex.append(sep_rex + '.*')
85 rex.append('[^/%s]*' % re.escape(os.path.sep))
87 rex.append(sep_rex)
89 rex.append(re.escape(match.group(6)))
91 rex.append('$')
92 return re.compile(''.join(rex))
119 for rex in filter_rexs:
[all …]
/external/capstone/suite/cstest/
Dissues.cs19 …0x2175a1], 4 ; Prefix:0x00 0x00 0x00 0x00 ; Opcode:0x83 0x00 0x00 0x00 ; rex: 0x0 ; addr_size: 8…
23 …[rsp + 0x5e] ; Prefix:0x00 0x00 0x00 0x00 ; Opcode:0x0f 0x95 0x00 0x00 ; rex: 0x0 ; addr_size: 8…
27 …[rsp + 0x1f] ; Prefix:0x00 0x00 0x00 0x00 ; Opcode:0x0f 0x94 0x00 0x00 ; rex: 0x0 ; addr_size: 8…
31 …[rsp + 0x40] ; Prefix:0x00 0x00 0x00 0x00 ; Opcode:0xdb 0x00 0x00 0x00 ; rex: 0x0 ; addr_size: 8…
35 0x0: 0xdd,0xd9 == fstp st(1) ; Prefix:0x00 0x00 0x00 0x00 ; Opcode:0xdd 0x00 0x00 0x00 ; rex: 0x0…
39 …[rsp + 0x68] ; Prefix:0x00 0x00 0x00 0x00 ; Opcode:0xdf 0x00 0x00 0x00 ; rex: 0x0 ; addr_size: 8…
75 …8049094], ax ; Prefix:0x00 0x00 0x66 0x00 ; Opcode:0xa3 0x00 0x00 0x00 ; rex: 0x0 ; addr_size: 4…
103 … fs:[0], eax ; Prefix:0x00 0x64 0x00 0x00 ; Opcode:0xa3 0x00 0x00 0x00 ; rex: 0x0 ; addr_size: 4…
115 …0x210], xmm1 ; Prefix:0x00 0x00 0x00 0x00 ; Opcode:0x0f 0x29 0x00 0x00 ; rex: 0x0 ; addr_size: 8…
175 …00b044], eax ; Prefix:0x00 0x00 0x00 0x00 ; Opcode:0xa3 0x00 0x00 0x00 ; rex: 0x0 ; addr_size: 4…
[all …]
/external/rust/crates/ring/crypto/perlasm/
Dx86_64-xlate.pl954 sub rex { subroutine
956 my ($dst,$src,$rex)=@_;
958 $rex|=0x04 if($dst>=8);
959 $rex|=0x01 if($src>=8);
960 push @$opcode,($rex|0x40) if ($rex);
969 rex(\@opcode,$src,$dst,0x8);
976 rex(\@opcode,$src,$dst,0x8);
993 rex(\@opcode,$src,$dst);
1011 rex(\@opcode,$dst,$src);
1024 rex(\@opcode,$2,$1);
[all …]
/external/pcre/dist2/src/sljit/
DsljitNativeX86_64.c378 static sljit_s32 emit_do_imm32(struct sljit_compiler *compiler, sljit_u8 rex, sljit_u8 opcode, slji… in emit_do_imm32() argument
381 sljit_s32 length = 1 + (rex ? 1 : 0) + sizeof(sljit_s32); in emit_do_imm32()
386 if (rex) in emit_do_imm32()
387 *inst++ = rex; in emit_do_imm32()
401 sljit_u8 rex = 0; in emit_x86_instruction() local
423 rex |= REX_W; in emit_x86_instruction()
425 rex |= REX; in emit_x86_instruction()
452 rex |= REX_B; in emit_x86_instruction()
467 rex |= REX_X; in emit_x86_instruction()
473 rex |= REX_B; in emit_x86_instruction()
[all …]
/external/capstone/bindings/java/capstone/
DX86.java83 public byte rex; field in X86.UnionOpInfo
121 public byte rex; field in X86.OpInfo
145 rex = e.rex; in OpInfo()
/external/boringssl/src/crypto/perlasm/
Dx86_64-xlate.pl954 sub rex { subroutine
956 my ($dst,$src,$rex)=@_;
958 $rex|=0x04 if($dst>=8);
959 $rex|=0x01 if($src>=8);
960 push @$opcode,($rex|0x40) if ($rex);
969 rex(\@opcode,$src,$dst,0x8);
976 rex(\@opcode,$src,$dst,0x8);
993 rex(\@opcode,$src,$dst);
1011 rex(\@opcode,$dst,$src);
1024 rex(\@opcode,$2,$1);
[all …]
/external/capstone/bindings/vb6/
DCX86Inst.cls83 Public rex As Byte
124 push r, "Rex: " & rex
171 Me.rex = cs.rex
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Disassembler/
DX86DisassemblerDecoder.h34 #define wFromREX(rex) (((rex) & 0x8) >> 3) argument
35 #define rFromREX(rex) (((rex) & 0x4) >> 2) argument
36 #define xFromREX(rex) (((rex) & 0x2) >> 1) argument
37 #define bFromREX(rex) ((rex) & 0x1) argument
/external/capstone/arch/X86/
DX86DisassemblerDecoder.h39 #define wFromREX(rex) (((rex) & 0x8) >> 3) argument
40 #define rFromREX(rex) (((rex) & 0x4) >> 2) argument
41 #define xFromREX(rex) (((rex) & 0x2) >> 1) argument
42 #define bFromREX(rex) ((rex) & 0x1) argument
/external/llvm-project/llvm/lib/Target/X86/Disassembler/
DX86DisassemblerDecoder.h31 #define wFromREX(rex) (((rex) & 0x8) >> 3) argument
32 #define rFromREX(rex) (((rex) & 0x4) >> 2) argument
33 #define xFromREX(rex) (((rex) & 0x2) >> 1) argument
34 #define bFromREX(rex) ((rex) & 0x1) argument
/external/llvm/lib/Target/X86/Disassembler/
DX86DisassemblerDecoder.h32 #define wFromREX(rex) (((rex) & 0x8) >> 3) argument
33 #define rFromREX(rex) (((rex) & 0x4) >> 2) argument
34 #define xFromREX(rex) (((rex) & 0x2) >> 1) argument
35 #define bFromREX(rex) ((rex) & 0x1) argument
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/
Drjsmin.py375 rex = (
429 rex = (
496 return _re.sub(rex, subber, '\n%s\n' % script).strip()
/external/llvm-project/libcxx/test/std/re/re.iter/re.regiter/re.regiter.incr/
Dpost.pass.cpp98 std::regex rex(".*"); in main() local
101 std::cregex_iterator i(std::begin(foo), std::end(foo) - 1, rex); in main()
/external/libcxx/test/std/re/re.iter/re.regiter/re.regiter.incr/
Dpost.pass.cpp99 std::regex rex(".*"); in main() local
102 std::cregex_iterator i(std::begin(foo), std::end(foo) - 1, rex); in main()
/external/rust/crates/ring/crypto/fipsmodule/aes/asm/
Daesni-x86_64.pl1643 sub rex { subroutine
1646 my $rex=0;
1648 $rex|=0x04 if($dst>=8);
1649 $rex|=0x01 if($src>=8);
1650 push @opcode,$rex|0x40 if($rex);
1658 rex(\@opcode,$4,$3);
1672 rex(\@opcode,$3,$2);
/external/llvm-project/lld/ELF/Arch/
DX86_64.cpp770 const uint8_t rex = loc[-3]; in relaxGotNoPic() local
806 loc[-3] = (rex & ~0x4) | (rex & 0x4) >> 2; in relaxGotNoPic()
827 loc[-3] = (rex & ~0x4) | (rex & 0x4) >> 2; in relaxGotNoPic()
/external/capstone/bindings/ocaml/
Dx86.ml32 rex: int; RecordField
/external/capstone/bindings/python/capstone/
Dx86.py80 return (a.prefix[:], a.opcode[:], a.rex, a.addr_size, \
/external/capstone/cstool/
DREADME31 rex: 0x0
Dcstool_x86.c195 printf("\trex: 0x%x\n", x86->rex); in print_insn_detail_x86()
/external/mesa3d/src/gallium/auxiliary/rtasm/
Drtasm_x86sse.c657 uint8_t rex = 0x40; in x86_mov() local
660 rex |= 4; in x86_mov()
665 rex |= 1; in x86_mov()
668 emit_1ub(p, rex); in x86_mov()
694 uint8_t rex = 0x48; in x64_mov64() local
703 rex |= 4; in x64_mov64()
708 rex |= 1; in x64_mov64()
712 emit_1ub(p, rex); in x64_mov64()
/external/boringssl/src/crypto/fipsmodule/sha/asm/
Dsha1-x86_64.pl2097 my $rex=0;
2098 $rex|=0x04 if ($2>=8);
2099 $rex|=0x01 if ($1>=8);
2100 unshift @opcode,0x40|$rex if ($rex);
/external/llvm/utils/lit/lit/
Dmain.py360 rex = re.compile(opts.filter)
365 if rex.search(result_test.getFullName())]
/external/guava/android/guava/src/com/google/common/util/concurrent/
DMoreExecutors.java728 } catch (RuntimeException rex) { in invokeAnyImpl()
729 ee = new ExecutionException(rex); in invokeAnyImpl()
/external/guava/guava/src/com/google/common/util/concurrent/
DMoreExecutors.java803 } catch (RuntimeException rex) { in invokeAnyImpl()
804 ee = new ExecutionException(rex); in invokeAnyImpl()

123