OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sign_offset
(Results
1 - 2
of
2
) sorted by null
/external/vixl/src/
utils-vixl.h
[
all
...]
/external/v8/src/arm64/
simulator-arm64.h
110
const int
sign_offset
= exponent_offset + ebits;
local
111
DCHECK_EQ(
sign_offset
, static_cast<int>(sizeof(T) * 8 - 1));
115
return static_cast<T>(sign <<
sign_offset
);
140
return static_cast<T>((sign <<
sign_offset
) |
165
return static_cast<T>(sign <<
sign_offset
);
171
return static_cast<T>((sign <<
sign_offset
) | 1);
194
static_cast<T>((sign <<
sign_offset
) | (exponent << exponent_offset) |
215
return static_cast<T>((sign <<
sign_offset
) |
223
return static_cast<T>((sign <<
sign_offset
) |
[
all
...]
Completed in 68 milliseconds