Searched refs:rex (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/
H A Dgas-prefix.asm5 rex jmp foo label
6 rex movb $0, %ah label
7 rex movb $0, %sil label
/external/chromium_org/tools/grit/grit/
H A Dlazy_re_unittest.py23 rex = lazy_re.compile('bingo')
24 self.assertEqual(None, rex._lazy_re)
25 self.assertTrue(rex.match('bingo'))
26 self.assertNotEqual(None, rex._lazy_re)
29 rex = lazy_re.compile(flags=re.I, pattern='BiNgO')
30 self.assertTrue(rex.match('bingo'))
33 rex = lazy_re.compile('BiNgO', flags=re.I)
34 self.assertTrue(rex.match('bingo'))
H A Dclique_unittest.py60 rex = re.compile('fr|de|bingo')
61 self.failUnless(len(c.AllMessagesThatMatch(rex, False)) == 2)
62 self.failUnless(c.AllMessagesThatMatch(rex, True)[pseudo.PSEUDO_LANG] != None)
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
H A Dx86bc.c110 yasm_x86__set_rex_from_reg(unsigned char *rex, unsigned char *low3, argument
121 if (*rex == 0xff) {
126 *rex |= 0x40 | (((reg & 8) >> 3) << rexbit);
129 if (*rex != 0 && *rex != 0xff) {
134 *rex = 0xff; /* Flag so we can NEVER set it (see above) */
206 unsigned char *rex, unsigned int bits)
210 if (yasm_x86__set_rex_from_reg(rex, &rm, reg, bits, X86_REX_B))
273 yasm_x86__bc_apply_prefixes(x86_common *common, unsigned char *rex, argument
295 if (!rex)
205 yasm_x86__ea_create_reg(x86_effaddr *x86_ea, unsigned long reg, unsigned char *rex, unsigned int bits) argument
[all...]
H A Dx86arch.h172 int yasm_x86__set_rex_from_reg(unsigned char *rex, unsigned char *low3,
202 unsigned char *rex, unsigned int bits);
242 unsigned char rex; /* REX AMD64 extension, 0 if none, member in struct:x86_insn
293 (x86_common *common, unsigned char *rex, unsigned int def_opersize_64,
301 int address16_op, unsigned char *rex, yasm_bytecode *bc);
H A Dx86expr.c585 unsigned int bits, int address16_op, unsigned char *rex,
867 if (yasm_x86__set_rex_from_reg(rex, &low3,
894 if (yasm_x86__set_rex_from_reg(rex, &low3, (unsigned int)
907 if (yasm_x86__set_rex_from_reg(rex, &low3,
912 if (yasm_x86__set_rex_from_reg(rex, &low3,
584 yasm_x86__expr_checkea(x86_effaddr *x86_ea, unsigned char *addrsize, unsigned int bits, int address16_op, unsigned char *rex, yasm_bytecode *bc) argument
H A Dx86id.c1171 insn->rex = 0;
1229 insn->rex = 0x48;
1264 (unsigned long)op->data.reg, &insn->rex,
1310 (unsigned long)op->data.reg, &insn->rex, mode_bits);
1338 if (yasm_x86__set_rex_from_reg(&insn->rex, &spare,
1347 if (yasm_x86__set_rex_from_reg(&insn->rex, &spare,
1355 if (yasm_x86__set_rex_from_reg(&insn->rex, &opadd,
1365 if (yasm_x86__set_rex_from_reg(&insn->rex, &opadd,
1376 (unsigned long)op->data.reg, &insn->rex,
1379 yasm_x86__set_rex_from_reg(&insn->rex,
[all...]
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.h43 #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)
/external/valgrind/main/VEX/priv/
H A Dhost_amd64_defs.c2023 (lowest bit of rex distinguishes R12/RSP)
2027 (lowest bit of rex distinguishes R12/RSP)
2124 static inline UChar clearWBit ( UChar rex )
2126 return toUChar(rex & ~(1<<3));
2269 UChar rex; local
2543 rex = clearWBit( rexAMode_R( fake(0), i->Ain.Alu32R.dst ) );
2544 if (rex != 0x40) *p++ = rex;
2549 rex = clearWBit( rexAMode_R( fake(0), i->Ain.Alu32R.dst) );
2550 if (rex !
[all...]
/external/qemu/
H A Di386-dis.c245 static int rex; variable
256 if ((rex & value)) \
702 'K' => print 'd' or 'q' if rex prefix is present.
707 . or suffix_always is true. print 'q' if rex prefix is present.
3325 rex = 0;
3394 if (prefixes || rex)
3406 if (rex)
3408 rex_used = rex;
3411 rex = newrex;
3424 "rex", /*
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
H A Dx86_64-xlate.pl653 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(\
652 sub rex { subroutine
[all...]
/external/openssl/crypto/perlasm/
H A Dx86_64-xlate.pl653 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(\
652 sub rex { subroutine
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractListeningExecutorService.java115 } catch (RuntimeException rex) {
116 ee = new ExecutionException(rex);
/external/qemu/tcg/x86_64/
H A Dtcg-target.c221 #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 */
252 rex |= opc & (r >= 4 ? P_REXB_R : 0);
253 rex |= opc & (rm >= 4 ? P_REXB_RM : 0);
255 if (rex) {
256 tcg_out8(s, (uint8_t)(rex |
[all...]
/external/qemu/tcg/i386/
H A Dtcg-target.c353 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 */
375 rex |= opc & (r >= 4 ? P_REXB_R : 0);
376 rex |= opc & (rm >= 4 ? P_REXB_RM : 0);
378 if (rex) {
379 tcg_out8(s, (uint8_t)(rex |
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/aes/asm/
H A Daesni-sha1-x86_64.pl1219 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);
H A Daesni-x86_64.pl3040 sub rex {
3043 my $rex=0;
3045 $rex|=0x04 if($dst>=8);
3046 $rex|=0x01 if($src>=8);
3047 push @opcode,$rex|0x40 if($rex);
3055 rex(\@opcode,$4,$3);
3069 rex(\@opcode,$3,$2);
3027 sub rex { subroutine
/external/openssl/crypto/aes/asm/
H A Daesni-sha1-x86_64.pl1219 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);
H A Daesni-x86_64.pl3040 sub rex {
3043 my $rex=0;
3045 $rex|=0x04 if($dst>=8);
3046 $rex|=0x01 if($src>=8);
3047 push @opcode,$rex|0x40 if($rex);
3055 rex(\@opcode,$4,$3);
3069 rex(\@opcode,$3,$2);
3027 sub rex { subroutine
/external/llvm/utils/lit/lit/
H A Dmain.py325 rex = re.compile(opts.filter)
330 if rex.search(t.getFullName())]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
H A Drtasm_x86sse.c656 uint8_t rex = 0x40; local
659 rex |= 4;
664 rex |= 1;
667 emit_1ub(p, rex);
693 uint8_t rex = 0x48; local
702 rex |= 4;
707 rex |= 1;
711 emit_1ub(p, rex);
/external/mesa3d/src/gallium/auxiliary/rtasm/
H A Drtasm_x86sse.c656 uint8_t rex = 0x40; local
659 rex |= 4;
664 rex |= 1;
667 emit_1ub(p, rex);
693 uint8_t rex = 0x48; local
702 rex |= 4;
707 rex |= 1;
711 emit_1ub(p, rex);
/external/chromium_org/v8/src/x64/
H A Ddisasm-x64.cc353 void setRex(byte rex) { argument
354 ASSERT_EQ(0x40, rex & 0xF0);
355 rex_ = rex;
358 bool rex() { return rex_ != 0; } function in class:disasm::DisassemblerX64
362 // Actual number of base register given the low bits and the rex.b state.
/external/v8/src/x64/
H A Ddisasm-x64.cc348 void setRex(byte rex) { argument
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.
/external/smack/src/com/kenai/jbosh/
H A DBOSHClient.java1176 } catch (RejectedExecutionException rex) {
1177 LOG.log(Level.FINEST, "Could not schedule empty request", rex);

Completed in 1478 milliseconds

12