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

1 2 3 4

  /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 71 (IsInObjectBits::kMask | IsDoubleBits::kMask | IndexBits::kMask);
unicode.h 54 static const int kMask = kSize - 1;
81 static const int kMask = kSize - 1;
address-map.h 134 return bitfield_ & (ChunkOffsetBits::kMask | ChunkIndexBits::kMask);
global-handles.h 447 static const int kMask = 0xff;
452 return &blocks_[index >> kShift][index & kMask];
source-position-table.cc 61 MoreBit::encode(more) | ValueBits::encode(encoded & ValueBits::kMask);
code-stub-assembler.h     [all...]
utils.h 312 static const U kMask = ((kOne << shift) << size) - (kOne << shift);
333 return (previous & ~kMask) | encode(value);
338 return static_cast<T>((value & kMask) >> shift);
371 static const int kMask = (1 << kBitsPerItem) - 1;
386 return static_cast<T>((data >> shift(item)) & kMask);
393 return (previous & ~(kMask << shift_value)) | set_bits;
    [all...]
  /external/tensorflow/tensorflow/stream_executor/
device_options.h 55 static const unsigned kMask = 0xf; // Mask of all available flags.
59 CHECK((flags & kMask) == flags);
  /external/skia/bench/
ClipStrategyBench.cpp 17 kMask,
88 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 1 );)
89 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 5 );)
90 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 10 );)
91 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 100);)
  /external/skqp/bench/
ClipStrategyBench.cpp 17 kMask,
88 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 1 );)
89 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 5 );)
90 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 10 );)
91 DEF_BENCH( return new ClipStrategyBench(ClipStrategyBench::Mode::kMask, 100);)
  /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)
  /external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
RunQueue.h 56 Elem* e = &array_[front & kMask];
71 Elem* e = &array_[(front - 1) & kMask];
88 Elem* e = &array_[(back - 1) & kMask];
107 Elem* e = &array_[back & kMask];
131 Elem* e = &array_[mid & kMask];
181 static const unsigned kMask = kSize - 1;
  /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/v8/src/base/utils/
random-number-generator.h 117 static const int64_t kMask = V8_2PART_UINT64_C(0xffff, ffffffff);
  /external/boringssl/src/crypto/fipsmodule/ec/
p256-x86_64.c 219 static const unsigned kMask = (1 << (5 /* kWindowSize */ + 1)) - 1;
261 wvalue = (wvalue >> ((index - 1) % 8)) & kMask;
270 wvalue = (wvalue >> ((index - 1) % 8)) & kMask;
293 wvalue = (wvalue << 1) & kMask;
314 static const unsigned kMask = (1 << (7 /* kWindowSize */ + 1)) - 1;
327 unsigned wvalue = (p_str[0] << 1) & kMask;
348 wvalue = (wvalue >> ((index - 1) % 8)) & kMask;
  /external/webp/src/dsp/
alpha_processing_sse2.c 160 const __m128i alpha0_lo = _mm_or_si128(argb1_lo, kMask); \
161 const __m128i alpha0_hi = _mm_or_si128(argb1_hi, kMask); \
181 const __m128i kMask = _mm_set_epi16(0, 0xff, 0xff, 0, 0, 0xff, 0xff, 0);
278 const __m128i kMask = _mm_set_epi16(0, 0xff, 0, 0, 0, 0xff, 0, 0);
284 const __m128i A2 = _mm_or_si128(A1, kMask);
  /frameworks/av/media/extractors/mp3/
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)) {
551 if ((header & kMask) == (mFixedHeader & kMask)
  /frameworks/base/tools/aapt2/
StringPool.cpp 328 constexpr size_t kMask = 1 << ((sizeof(T) * 8) - 1);
329 constexpr size_t kMaxSize = kMask - 1;
331 *data++ = kMask | (kMaxSize & (length >> (sizeof(T) * 8)));
347 constexpr size_t kMask = 1 << ((sizeof(T) * 8 * 2) - 1);
348 constexpr size_t max = kMask - 1;
360 constexpr size_t kMask = 1 << ((sizeof(T) * 8) - 1);
361 constexpr size_t kMaxSize = kMask - 1;
  /system/netd/server/
WakeupControllerTest.cpp 288 const uint32_t kMask = 0x0F0F0F0F;
294 mController.addInterface(kPrefix, kIfName, kMark, kMask);
301 const uint32_t kMask = 0xF0F0F0F0;
307 mController.delInterface(kPrefix, kIfName, kMark, kMask);
  /external/v8/src/compiler/
linkage.h 118 ((location << LocationField::kShift) & LocationField::kMask);
134 return static_cast<int32_t>(bit_field_ & LocationField::kMask) >>
  /external/skia/src/core/
SkScan_DAAPath.cpp 358 record->fType = SkDAARecord::Type::kMask;
374 if (record->fType == SkDAARecord::Type::kMask) {
SkCoverageDelta.h 188 kMask,
SkBitmapProcState.cpp 475 static const unsigned kMask = SkMatrix::kTranslate_Mask | SkMatrix::kScale_Mask;
477 if (1 == fPixmap.width() && 0 == (fInvType & ~kMask)) {
  /external/skqp/src/core/
SkBitmapProcState.cpp 475 static const unsigned kMask = SkMatrix::kTranslate_Mask | SkMatrix::kScale_Mask;
477 if (1 == fPixmap.width() && 0 == (fInvType & ~kMask)) {

Completed in 474 milliseconds

1 2 3 4