HomeSort by relevance Sort by last modified time
    Searched refs:kLookup (Results 1 - 6 of 6) sorted by null

  /system/netd/libnetdutils/
Slice.cpp 27 const std::array<char, 16> kLookup = {
29 return {kLookup[byte >> 4], kLookup[byte & 0xf]};
  /external/v8/src/compiler/
liveness-analyzer.h 92 void Lookup(int var) { entries_.push_back(Entry(Entry::kLookup, var)); }
97 entries_.push_back(Entry(Entry::kLookup, live_.length() - 1));
115 enum Kind { kBind, kLookup, kCheckpoint };
liveness-analyzer.cc 108 case Entry::kLookup:
202 case Entry::kLookup:
  /system/vold/
Utils.cpp 428 static const char* kLookup = "0123456789abcdef";
433 hex.push_back(kLookup[(str[i] & 0xF0) >> 4]);
434 hex.push_back(kLookup[str[i] & 0x0F]);
442 hex.push_back(kLookup[(str.data()[i] & 0xF0) >> 4]);
443 hex.push_back(kLookup[str.data()[i] & 0x0F]);
  /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 1098 milliseconds