Home
last modified time | relevance | path

Searched refs:kSentinel (Results 1 – 11 of 11) sorted by relevance

/third_party/node/deps/v8/src/strings/
Dunicode.cc23 static const uchar kSentinel = static_cast<uchar>(-1); variable
88 static const uchar kEndOfEncoding = kSentinel;
805 {{105, 775}}, {{kSentinel}}};
932 {{kSentinel}}};
957 {{kSentinel}}};
983 {{kSentinel}}};
1013 {{83, 83, kSentinel}}, {{700, 78, kSentinel}},
1014 {{74, 780, kSentinel}}, {{921, 776, 769}},
1015 {{933, 776, 769}}, {{1333, 1362, kSentinel}},
1016 {{72, 817, kSentinel}}, {{84, 776, kSentinel}},
[all …]
/third_party/node/deps/v8/src/objects/
Dswiss-hash-table-helpers.h179 kSentinel = -1, // 0b11111111 enumerator
182 kEmpty & kDeleted & kSentinel & 0x80,
184 static_assert(kEmpty < kSentinel && kDeleted < kSentinel,
187 static_assert(kSentinel == -1,
193 static_assert(~kEmpty & ~kDeleted & kSentinel & 0x7F,
207 kEmpty & kDeleted & kSentinel & kNotFullMask,
265 auto special = _mm_set1_epi8(kSentinel); in MatchEmptyOrDeleted()
272 auto special = _mm_set1_epi8(kSentinel); in CountLeadingEmptyOrDeleted()
341 if (ctrl_[i] < kSentinel) { in MatchEmptyOrDeletedMask()
Dswiss-name-dictionary-inl.h728 STATIC_ASSERT(Ctrl::kSentinel < 0); in IsFull()
737 STATIC_ASSERT(Ctrl::kDeleted < Ctrl::kSentinel); in IsEmptyOrDeleted()
738 STATIC_ASSERT(Ctrl::kEmpty < Ctrl::kSentinel); in IsEmptyOrDeleted()
739 STATIC_ASSERT(Ctrl::kSentinel < 0); in IsEmptyOrDeleted()
740 return c < Ctrl::kSentinel; in IsEmptyOrDeleted()
/third_party/skia/tests/
DTDPQueueTest.cpp83 static const Mock kSentinel = {-1, -1, -1}; in random_test() local
95 if (*mock == kSentinel) { in random_test()
117 REPORTER_ASSERT(reporter, kSentinel == array[k] || in random_test()
127 *top = kSentinel; in random_test()
134 } while (array[item] == kSentinel); in random_test()
136 array[item] = kSentinel; in random_test()
143 } while (array[item] == kSentinel); in random_test()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Draw_hash_set.cc27 ctrl_t::kSentinel, ctrl_t::kEmpty, ctrl_t::kEmpty, ctrl_t::kEmpty,
53 assert(ctrl[capacity] == ctrl_t::kSentinel); in ConvertDeletedToEmptyAndFullToDeleted()
60 ctrl[capacity] = ctrl_t::kSentinel; in ConvertDeletedToEmptyAndFullToDeleted()
Draw_hash_set.h262 kSentinel = -1, // 0b11111111
267 static_cast<int8_t>(ctrl_t::kSentinel) & 0x80) != 0,
270 ctrl_t::kEmpty < ctrl_t::kSentinel && ctrl_t::kDeleted < ctrl_t::kSentinel,
274 ctrl_t::kSentinel == static_cast<ctrl_t>(-1),
283 static_cast<int8_t>(ctrl_t::kSentinel) & 0x7F) != 0,
321 inline bool IsEmptyOrDeleted(ctrl_t c) { return c < ctrl_t::kSentinel; }
368 auto special = _mm_set1_epi8(static_cast<int8_t>(ctrl_t::kSentinel));
375 auto special = _mm_set1_epi8(static_cast<int8_t>(ctrl_t::kSentinel));
607 ctrl[capacity] = ctrl_t::kSentinel;
805 if (ABSL_PREDICT_FALSE(*ctrl_ == ctrl_t::kSentinel)) ctrl_ = nullptr;
Draw_hash_set_test.cc177 ctrl_t::kEmpty, CtrlT(5), ctrl_t::kSentinel, CtrlT(7), in TEST()
188 ctrl_t::kSentinel, CtrlT(1)}; in TEST()
200 ctrl_t::kEmpty, CtrlT(5), ctrl_t::kSentinel, CtrlT(7), in TEST()
207 ctrl_t::kSentinel, CtrlT(1)}; in TEST()
217 ctrl_t::kEmpty, CtrlT(5), ctrl_t::kSentinel, CtrlT(7), in TEST()
224 ctrl_t::kSentinel, CtrlT(1)}; in TEST()
235 ctrl[kCapacity] = ctrl_t::kSentinel; in TEST()
245 ASSERT_EQ(ctrl[kCapacity], ctrl_t::kSentinel); in TEST()
248 if (i == kCapacity) expected = ctrl_t::kSentinel; in TEST()
260 CtrlT(5), CtrlT(9), CtrlT(127), ctrl_t::kSentinel}; in TEST()
Draw_hash_set_benchmark.cc374 ctrl[capacity] = ctrl_t::kSentinel; in BM_DropDeletes()
/third_party/skia/src/core/
DSkFontDescriptor.cpp24 kSentinel = 0xFF, enumerator
70 for (size_t id; (id = read_id(stream)) != kSentinel;) { in Deserialize()
135 stream->writePackedUInt(kSentinel); in serialize()
/third_party/skia/src/gpu/geometry/
DGrQuadBuffer.h152 inline static constexpr unsigned kSentinel = 0xbaffe; variable
277 SkDEBUGCODE(h->fSentinel = static_cast<unsigned>(kSentinel);) in append()
323 SkASSERT(this->header(entry)->fSentinel == kSentinel); in validate()
/third_party/node/deps/v8/src/diagnostics/
Dobjects-printer.cc1059 case Ctrl::kSentinel: in SwissNameDictionaryPrint()