OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:imm64
(Results
1 - 9
of
9
) sorted by null
/external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.c
1452
uint64_t
imm64
;
local
[
all
...]
/dalvik/vm/compiler/codegen/x86/libenc/
enc_prvt.h
211
#define
imm64
{OpndKind_Imm, OpndSize_64, OpndExt_Any, RegName_Null }
macro
/art/compiler/utils/arm/
assembler_arm.cc
806
uint64_t
imm64
= bit_cast<uint64_t, double>(d_imm);
local
807
if (((
imm64
& ((1LL << 48) - 1)) == 0) &&
808
((((
imm64
>> 54) & ((1 << 9) - 1)) == (1 << 8)) ||
809
(((
imm64
>> 54) & ((1 << 9) - 1)) == ((1 << 8) -1)))) {
810
uint8_t imm8 = ((
imm64
>> 63) << 7) | (((
imm64
>> 61) & 1) << 6) |
811
((
imm64
>> 48) & ((1 << 6) -1));
[
all
...]
constants_arm.h
342
uint64_t
imm64
= (Bit(19)*(1LL << 63)) | (((1LL << 8) - Bit(18)) << 54) |
local
344
return bit_cast<double, uint64_t>(
imm64
);
/external/valgrind/main/VEX/priv/
host_amd64_defs.c
608
AMD64Instr* AMD64Instr_Imm64 ( ULong
imm64
, HReg dst ) {
611
i->Ain.
Imm64
.
imm64
=
imm64
;
612
i->Ain.
Imm64
.dst = dst;
1015
vex_printf("movabsq $0x%llx,", i->Ain.
Imm64
.
imm64
);
1016
ppHRegAMD64(i->Ain.
Imm64
.dst);
3687
ULong
imm64
= (ULong)Ptr_to_ULong(location_of_counter);
local
[
all
...]
host_arm_isel.c
4220
ULong
imm64
= e->Iex.Binop.arg2->Iex.Const.con->Ico.U64;
local
[
all
...]
host_amd64_defs.h
413
ULong
imm64
;
member in struct:__anon29822::__anon29823::__anon29824
415
}
Imm64
;
690
extern AMD64Instr* AMD64Instr_Imm64 ( ULong
imm64
, HReg dst );
host_ppc_defs.h
538
ULong
imm64
;
member in struct:__anon30060::__anon30061::__anon30062
[
all
...]
/external/qemu/target-arm/
translate.c
5133
uint64_t
imm64
;
local
[
all
...]
Completed in 379 milliseconds