OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:high16
(Results
1 - 4
of
4
) sorted by null
/external/v8/src/arm/
constants-arm.cc
21
uint64_t
high16
;
local
22
high16
= (Bits(17, 16) << 4) | Bits(3, 0); // xxxxxxxx,xxcdefgh.
23
high16
|= (0xFF * Bit(18)) << 6; // xxbbbbbb,bbxxxxxx.
24
high16
|= (Bit(18) ^ 1) << 14; // xBxxxxxx,xxxxxxxx.
25
high16
|= Bit(19) << 15; // axxxxxxx,xxxxxxxx.
27
uint64_t imm =
high16
<< 48;
/external/v8/src/arm64/
instructions-arm64.cc
302
uint32_t
high16
= unsigned_bitextract_32(31, 16, target_offset);
local
306
patcher.brk(
high16
);
instructions-arm64.h
351
int32_t
high16
= ImmException();
local
353
return (
high16
<< 16) | low16;
assembler-arm64.cc
3938
uint32_t
high16
= unsigned_bitextract_32(31, 16, offset);
local
[
all
...]
Completed in 1001 milliseconds