OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hiWord
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/JavaScriptCore/dfg/
DFGJITCompiler.cpp
425
intptr_t
hiWord
= reinterpret_cast<intptr_t>(counter.addressOfCounter()) + sizeof(int32_t);
427
addWithCarry32(TrustedImm32(0), AbsoluteAddress(reinterpret_cast<void*>(
hiWord
)));
/external/webkit/Source/JavaScriptCore/jit/
JITInlineMethods.h
323
intptr_t
hiWord
= reinterpret_cast<intptr_t>(counter.addressOfCounter()) + sizeof(int32_t);
325
addWithCarry32(TrustedImm32(0), AbsoluteAddress(reinterpret_cast<void*>(
hiWord
)));
/external/llvm/lib/Support/
APInt.cpp
983
unsigned
hiWord
= whichWord(n-1);
984
if (
hiWord
== 0) {
989
assert(
hiWord
> 0 && "huh?");
990
uint64_t hibits = Tmp.pVal[
hiWord
] << (52 - n % APINT_BITS_PER_WORD);
991
uint64_t lobits = Tmp.pVal[
hiWord
-1] >> (11 + n % APINT_BITS_PER_WORD);
[
all
...]
Completed in 108 milliseconds