/third_party/node/deps/v8/src/strings/ |
H A D | unicode.cc | 23 static const uchar kSentinel = static_cast<uchar>(-1); member 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}}, [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | swiss-hash-table-helpers.h | 179 kSentinel = -1, // 0b11111111 182 kEmpty & kDeleted & kSentinel & 0x80, 184 static_assert(kEmpty < kSentinel && kDeleted < kSentinel, 185 "kEmpty and kDeleted must be smaller than kSentinel to make the " 187 static_assert(kSentinel == -1, 188 "kSentinel must be -1 to elide loading it from memory into SIMD " 193 static_assert(~kEmpty & ~kDeleted & kSentinel & 0x7F, 195 "by kSentinel to make the scalar test for MatchEmptyOrDeleted() " 207 kEmpty & kDeleted & kSentinel [all...] |
H A D | swiss-name-dictionary-inl.h | 728 STATIC_ASSERT(Ctrl::kSentinel < 0); in IsFull() 737 STATIC_ASSERT(Ctrl::kDeleted < Ctrl::kSentinel); 738 STATIC_ASSERT(Ctrl::kEmpty < Ctrl::kSentinel); 739 STATIC_ASSERT(Ctrl::kSentinel < 0); 740 return c < Ctrl::kSentinel;
|
/third_party/skia/tests/ |
H A D | TDPQueueTest.cpp | 83 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/ |
H A D | raw_hash_set.cc | 27 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()
|
H A D | raw_hash_set.h | 262 kSentinel = -1, // 0b11111111 member in absl::container_internal::ctrl_t 267 static_cast<int8_t>(ctrl_t::kSentinel) & 0x80) != 0, 270 ctrl_t::kEmpty < ctrl_t::kSentinel && ctrl_t::kDeleted < ctrl_t::kSentinel, 272 "ctrl_t::kSentinel to make the SIMD test of IsEmptyOrDeleted() efficient"); 274 ctrl_t::kSentinel == static_cast<ctrl_t>(-1), 275 "ctrl_t::kSentinel must be -1 to elide loading it from memory into SIMD " 283 static_cast<int8_t>(ctrl_t::kSentinel) & 0x7F) != 0, 285 "shared by ctrl_t::kSentinel to make the scalar test for " 321 inline bool IsEmptyOrDeleted(ctrl_t c) { return c < ctrl_t::kSentinel; } [all...] |
H A D | raw_hash_set_test.cc | 177 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() [all...] |
H A D | raw_hash_set_benchmark.cc | 374 ctrl[capacity] = ctrl_t::kSentinel; in BM_DropDeletes()
|
/third_party/skia/src/core/ |
H A D | SkFontDescriptor.cpp | 24 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/ |
H A D | GrQuadBuffer.h | 152 inline static constexpr unsigned kSentinel = 0xbaffe; member in GrQuadBuffer 277 SkDEBUGCODE(h->fSentinel = static_cast<unsigned>(kSentinel);) in append() 323 SkASSERT(this->header(entry)->fSentinel == kSentinel); in validate() local
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | objects-printer.cc | 1059 case Ctrl::kSentinel: in SwissNameDictionaryPrint() 1061 os << " (= kSentinel)"; in SwissNameDictionaryPrint()
|