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

  /external/chromium_org/gpu/command_buffer/common/
bitfield_helpers.h 20 static const unsigned int kMask = 1U + ((1U << (length-1)) - 1U) * 2U;
24 return (container >> kShift) & kMask;
29 return (value & kMask) << kShift;
34 *container = (*container & ~(kMask << kShift)) | MakeValue(field_value);
  /external/chromium_org/media/tools/player_x11/
x11_video_renderer.cc 51 static const unsigned long kMask =
58 pictformat = XRenderFindFormat(dpy, kMask, &templ, 0 /* first result */);
  /external/chromium_org/v8/src/
unicode-inl.h 38 CacheEntry entry = entries_[code_point & kMask];
46 entries_[code_point & kMask] = CacheEntry(code_point, result);
52 CacheEntry entry = entries_[c & kMask];
71 entries_[c & kMask] = CacheEntry(c, result[0] - c);
74 entries_[c & kMask] = CacheEntry(c, 0);
100 static const int kMask = ~(1 << 6);
106 str[1] = 0x80 | (c & kMask);
112 static const int kMask = ~(1 << 6);
118 str[1] = 0x80 | (c & kMask);
129 str[1] = 0x80 | ((c >> 6) & kMask);
    [all...]
global-handles.h 388 static const int kMask = 0xff;
393 return &blocks_[index >> kShift][index & kMask];
unicode.h 66 static const int kMask = kSize - 1;
92 static const int kMask = kSize - 1;
utils.h 286 static const U kMask = ((kOne << shift) << size) - (kOne << shift);
306 return (previous & ~kMask) | encode(value);
311 return static_cast<T>((value & kMask) >> shift);
    [all...]
jsregexp.h     [all...]
jsregexp.cc     [all...]
  /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);
99 str[1] = 0x80 | ((c >> 6) & kMask);
100 str[2] = 0x80 | (c & kMask);
104 str[1] = 0x80 | ((c >> 12) & kMask);
    [all...]
unicode.h 66 static const int kMask = kSize - 1;
92 static const int kMask = kSize - 1;
utils.h 224 static const uint32_t kMask = ((1U << shift) << size) - (1U << shift);
242 return (previous & ~kMask) | encode(value);
247 return static_cast<T>((value & kMask) >> shift);
  /external/chromium/net/disk_cache/
backend_impl.h 30 kMask = 1, // A mask (for the index table) was specified.
  /external/chromium_org/net/disk_cache/
backend_impl.h 32 kMask = 1, // A mask (for the index table) was specified.
  /external/chromium_org/net/disk_cache/v3/
backend_impl_v3.h 30 kMask = 1, // A mask (for the index table) was specified.
  /external/chromium_org/third_party/skia/include/svg/
SkSVGPaintState.h 29 kMask,
  /external/chromium_org/third_party/tcmalloc/vendor/src/
heap-profile-table.h 217 return reinterpret_cast<Bucket*>(bucket_rep & ~uintptr_t(kMask));
240 static const int kMask = kLive | kIgnore;
  /external/skia/include/svg/
SkSVGPaintState.h 29 kMask,
  /external/chromium_org/third_party/skia/src/core/
SkBitmapProcState.cpp 803 static const unsigned kMask = SkMatrix::kTranslate_Mask | SkMatrix::kScale_Mask;
805 if (1 == fBitmap->width() && 0 == (fInvType & ~kMask)) {
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-table.h 243 return reinterpret_cast<Bucket*>(bucket_rep & ~uintptr_t(kMask));
261 return static_cast<AllocationMark>(bucket_rep & uintptr_t(kMask));
264 bucket_rep = (bucket_rep & ~uintptr_t(kMask)) | uintptr_t(mark);
272 static const int kMask = kLive | kIgnore;
  /external/skia/src/core/
SkBitmapProcState.cpp 803 static const unsigned kMask = SkMatrix::kTranslate_Mask | SkMatrix::kScale_Mask;
805 if (1 == fBitmap->width() && 0 == (fInvType & ~kMask)) {
    [all...]
  /external/chromium_org/net/quic/
quic_framer_test.cc 37 const QuicPacketSequenceNumber kMask = kEpoch - 1;
404 expected_sequence_number & kMask;
430 CheckCalculatePacketSequenceNumber(kEpoch + 1, kMask);
431 CheckCalculatePacketSequenceNumber(kEpoch, kMask);
507 const uint64 max_epoch = max_number & ~kMask;
    [all...]
  /frameworks/av/media/libstagefright/
MP3Extractor.cpp 46 static const uint32_t kMask = 0xfffe0c00;
140 if (match_header != 0 && (header & kMask) != (match_header & kMask)) {
177 if ((test_header & kMask) != (header & kMask)) {
526 if ((header & kMask) == (mFixedHeader & kMask)
AVIExtractor.cpp 293 static const uint32_t kMask = 0xfffe0c00;
296 if ((header & kMask) != (firstHeader & kMask)) {
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest.cc     [all...]
  /external/chromium_org/ui/base/x/
x11_util.cc     [all...]

Completed in 1083 milliseconds