OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:constant_abs
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/arm/
lithium-codegen-arm.cc
1192
uint32_t
constant_abs
= (constant + mask) ^ mask;
local
[
all
...]
/external/v8/src/mips/
lithium-codegen-mips.cc
990
uint32_t
constant_abs
= (constant + mask) ^ mask;
local
992
if (IsPowerOf2(
constant_abs
) ||
993
IsPowerOf2(
constant_abs
- 1) ||
994
IsPowerOf2(
constant_abs
+ 1)) {
995
if (IsPowerOf2(
constant_abs
)) {
996
int32_t shift = WhichPowerOf2(
constant_abs
);
[
all
...]
Completed in 175 milliseconds