OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kLookup
(Results
1 - 5
of
5
) sorted by null
/external/v8/src/compiler/
liveness-analyzer.h
84
void Lookup(int var) { entries_.push_back(Entry(Entry::
kLookup
, var)); }
92
enum Kind { kBind,
kLookup
, kCheckpoint };
/system/vold/
Utils.cpp
413
static const char*
kLookup
= "0123456789abcdef";
418
hex.push_back(
kLookup
[(str[i] & 0xF0) >> 4]);
419
hex.push_back(
kLookup
[str[i] & 0x0F]);
/external/libgdx/gdx/jni/etc1/
etc1_utils.cpp
120
static const int
kLookup
[8] = { 0, 1, 2, 3, -4, -3, -2, -1 };
163
return convert5To8((0x1f & base) +
kLookup
[0x7 & diff]);
/external/skia/third_party/etc1/
etc1.cpp
128
static const int
kLookup
[8] = { 0, 1, 2, 3, -4, -3, -2, -1 };
171
return convert5To8((0x1f & base) +
kLookup
[0x7 & diff]);
/frameworks/native/opengl/libs/ETC1/
etc1.cpp
120
static const int
kLookup
[8] = { 0, 1, 2, 3, -4, -3, -2, -1 };
163
return convert5To8((0x1f & base) +
kLookup
[0x7 & diff]);
Completed in 163 milliseconds