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

  /external/v8/src/
unicode-inl.h 36 CacheEntry entry = entries_[code_point & kMask];
44 entries_[code_point & kMask] = CacheEntry(code_point, result);
50 CacheEntry entry = entries_[c & kMask];
69 entries_[c & kMask] = CacheEntry(c, result[0] - c);
72 entries_[c & kMask] = CacheEntry(c, 0);
82 static const int kMask = ~(1 << 6);
88 str[1] = 0x80 | (c & kMask);
92 str[1] = 0x80 | ((c >> 6) & kMask);
93 str[2] = 0x80 | (c & kMask);
97 str[1] = 0x80 | ((c >> 12) & kMask);
    [all...]
unicode.h 66 static const int kMask = kSize - 1;
92 static const int kMask = kSize - 1;
  /external/skia/src/core/
SkAntiRun.h 42 int fb = start & kMask;
43 int fe = stop & kMask;
81 int aa = start & kMask;
92 aa = stop & kMask;
135 kMask = (1 << kShift) - 1,
  /external/skia/include/svg/
SkSVGPaintState.h 36 kMask,
  /frameworks/base/media/libstagefright/
MP3Extractor.cpp 43 static const uint32_t kMask = 0xfffe0cc0;
361 if (match_header != 0 && (header & kMask) != (match_header & kMask)) {
393 if ((test_header & kMask) != (header & kMask)) {
669 if ((header & kMask) == (mFixedHeader & kMask)
  /external/chromium/net/disk_cache/
backend_impl.h 24 kMask = 1, // A mask (for the index table) was specified.
47 cache_type_(net::DISK_CACHE), uma_report_(0), user_flags_(kMask),
backend_impl.cc 1132 if (!(user_flags_ & kMask))
    [all...]
  /external/skia/src/svg/
SkSVGPaintState.cpp 73 case kMask:
309 case kMask:
392 case kMask:

Completed in 279 milliseconds