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

1 2 3

  /external/v8/src/
unicode-inl.h 15 CacheEntry entry = entries_[code_point & kMask];
23 entries_[code_point & kMask] = CacheEntry(code_point, result);
29 CacheEntry entry = entries_[c & kMask];
48 entries_[c & kMask] = CacheEntry(c, result[0] - c);
51 entries_[c & kMask] = CacheEntry(c, 0);
61 static const int kMask = ~(1 << 6);
67 str[1] = 0x80 | (c & kMask);
79 static const int kMask = ~(1 << 6);
85 str[1] = 0x80 | (c & kMask);
100 str[1] = 0x80 | ((c >> 6) & kMask);
    [all...]
field-index.h 74 (IsInObjectBits::kMask | IsDoubleBits::kMask | IndexBits::kMask);
address-map.h 118 return bitfield_ & (ChunkOffsetBits::kMask | ChunkIndexBits::kMask);
unicode.h 54 static const int kMask = kSize - 1;
81 static const int kMask = kSize - 1;
global-handles.h 441 static const int kMask = 0xff;
446 return &blocks_[index >> kShift][index & kMask];
utils.h 250 static const U kMask = ((kOne << shift) << size) - (kOne << shift);
271 return (previous & ~kMask) | encode(value);
276 return static_cast<T>((value & kMask) >> shift);
308 static const int kMask = (1 << kBitsPerItem) - 1;
323 return static_cast<T>((data >> shift(item)) & kMask);
330 return (previous & ~(kMask << shift_value)) | set_bits;
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/test/
mp3reader.cpp 192 static const uint32_t kMask = 0xfffe0c00;
286 if (match_header != 0 && (header & kMask) != (match_header & kMask)) {
321 if ((test_header & kMask) != (header & kMask)) {
390 if ((header & kMask) == (mFixedHeader & kMask)
  /system/tpm/attestation/server/
database_impl.cc 99 const int kMask = base::FILE_PERMISSION_OTHERS_MASK;
103 (permissions & kMask) != 0) {
105 base::SetPosixFilePermissions(path, permissions & ~kMask);
  /external/skia/include/svg/parser/
SkSVGPaintState.h 29 kMask,
  /external/v8/src/base/utils/
random-number-generator.h 116 static const int64_t kMask = V8_2PART_UINT64_C(0xffff, ffffffff);
  /external/boringssl/src/crypto/ec/
p256-x86_64.c 243 static const unsigned kMask = (1 << (5 /* kWindowSize */ + 1)) - 1;
332 wvalue = (wvalue >> ((index - 1) % 8)) & kMask;
341 wvalue = (wvalue >> ((index - 1) % 8)) & kMask;
364 wvalue = (wvalue << 1) & kMask;
391 static const unsigned kMask = (1 << (7 /* kWindowSize */ + 1)) - 1;
459 unsigned wvalue = (p_str[0] << 1) & kMask;
476 wvalue = (wvalue >> ((index - 1) % 8)) & kMask;
  /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)) {
546 if ((header & kMask) == (mFixedHeader & kMask)
AVIExtractor.cpp 293 static const uint32_t kMask = 0xfffe0c00;
296 if ((header & kMask) != (firstHeader & kMask)) {
    [all...]
  /external/webp/src/dsp/
alpha_processing_sse2.c 181 const __m128i kMask = _mm_set_epi16(0xff, 0, 0, 0, 0xff, 0, 0, 0);
185 APPLY_ALPHA(rgbx[i], _MM_SHUFFLE(0, 3, 3, 3), kMask, kMult);
188 const __m128i kMask = _mm_set_epi16(0, 0, 0, 0xff, 0, 0, 0, 0xff);
192 APPLY_ALPHA(rgbx[i], _MM_SHUFFLE(0, 0, 0, 3), kMask, kMult);
  /frameworks/base/tools/aapt2/
StringPool.cpp 278 constexpr size_t kMask = 1 << ((sizeof(T) * 8) - 1);
279 constexpr size_t kMaxSize = kMask - 1;
281 *data++ = kMask | (kMaxSize & (length >> (sizeof(T) * 8)));
291 constexpr size_t kMask = 1 << ((sizeof(T) * 8) - 1);
292 constexpr size_t kMaxSize = kMask - 1;
Debug.cpp 40 static constexpr uint32_t kMask = android::ResTable_map::TYPE_ENUM |
42 if (attr->typeMask & kMask) {
  /external/v8/src/compiler/
linkage.h 102 ((location << LocationField::kShift) & LocationField::kMask);
106 return static_cast<int32_t>(bit_field_ & LocationField::kMask) >>
  /external/skia/src/svg/parser/
SkSVGPaintState.cpp 65 case kMask:
301 case kMask:
384 case kMask:
  /external/v8/src/ic/
stub-cache.cc 37 STATIC_ASSERT((Code::ICStateField::kMask & 1) == 1);
  /external/skia/src/core/
SkBitmapProcState.cpp 613 static const unsigned kMask = SkMatrix::kTranslate_Mask | SkMatrix::kScale_Mask;
615 if (1 == fPixmap.width() && 0 == (fInvType & ~kMask)) {
SkPathRef.cpp 455 static const uint32_t kMask = (static_cast<int64_t>(1) << SkPath::kPathRefGenIDBitCnt) - 1;
464 fGenerationID = (sk_atomic_inc(&gPathRefGenerationID) + 1) & kMask;
  /external/v8/src/ia32/
macro-assembler-ia32.h 486 static const int mask = Field::kMask >> Field::kShift;
496 static const int mask = (Field::kMask >> Field::kShift) << kSmiTagSize;
    [all...]
  /external/v8/src/ic/arm64/
ic-arm64.cc 62 __ Tst(scratch1, Smi::FromInt(PropertyDetails::TypeField::kMask));
102 PropertyDetails::TypeField::kMask |
    [all...]
  /external/v8/src/ic/ia32/
ic-ia32.cc 72 Immediate(PropertyDetails::TypeField::kMask << kSmiTagSize));
118 (PropertyDetails::TypeField::kMask |
    [all...]
  /external/v8/src/ic/x64/
ic-x64.cc 71 Smi::FromInt(PropertyDetails::TypeField::kMask));
118 PropertyDetails::TypeField::kMask |
    [all...]

Completed in 945 milliseconds

1 2 3