HomeSort by relevance Sort by last modified time
    Searched refs:kSentinel (Results 1 - 8 of 8) sorted by null

  /external/v8/src/
unicode.cc 16 static const uchar kSentinel = static_cast<uchar>(-1);
87 static const uchar kEndOfEncoding = kSentinel;
    [all...]
  /external/pdfium/core/fxcrt/
fx_system_unittest.cpp 18 const char kSentinel = 0x7f;
23 buf[kBufLen - 1] = kSentinel;
26 EXPECT_EQ(kSentinel, buf[kBufLen - 1]);
32 buf[kBufLen - 1] = kSentinel;
35 EXPECT_EQ(kSentinel, buf[kBufLen - 1]);
41 buf[kBufLen - 1] = kSentinel;
44 EXPECT_EQ(kSentinel, buf[kBufLen - 1]);
50 buf[kBufLen - 1] = kSentinel;
53 EXPECT_EQ(kSentinel, buf[kBufLen - 1]);
59 buf[kBufLen - 1] = kSentinel;
    [all...]
  /external/skia/tests/
TDPQueueTest.cpp 83 static const Dummy kSentinel = {-1, -1, -1};
95 if (*dummy == kSentinel) {
117 REPORTER_ASSERT(reporter, kSentinel == array[k] ||
127 *top = kSentinel;
134 } while (array[item] == kSentinel);
136 array[item] = kSentinel;
143 } while (array[item] == kSentinel);
  /external/skqp/tests/
TDPQueueTest.cpp 83 static const Dummy kSentinel = {-1, -1, -1};
95 if (*dummy == kSentinel) {
117 REPORTER_ASSERT(reporter, kSentinel == array[k] ||
127 *top = kSentinel;
134 } while (array[item] == kSentinel);
136 array[item] = kSentinel;
143 } while (array[item] == kSentinel);
  /external/skia/src/core/
SkFontDescriptor.cpp 23 kSentinel = 0xFF,
62 for (size_t id; (id = stream->readPackedUInt()) != kSentinel;) {
122 stream->writePackedUInt(kSentinel);
  /external/skqp/src/core/
SkFontDescriptor.cpp 23 kSentinel = 0xFF,
62 for (size_t id; (id = stream->readPackedUInt()) != kSentinel;) {
122 stream->writePackedUInt(kSentinel);
  /external/tensorflow/tensorflow/core/lib/gtl/
inlined_vector.h 270 // Last byte holds kSentinel.
281 static const unsigned int kSentinel = 255;
283 static const size_t kFit = (kFit1 >= kSentinel) ? (kSentinel - 1) : kFit1;
292 inline bool is_inline() const { return u_.data[kSize - 1] != kSentinel; }
316 if (s != kSentinel) {
332 DCHECK_LT(n, kSentinel);
340 (static_cast<uint64_t>(kSentinel) << 56));
345 (static_cast<uint64_t>(kSentinel)));
348 DCHECK_EQ(u_.data[kSize - 1], kSentinel) << n
    [all...]
  /external/boringssl/src/crypto/cipher_extra/
aead_test.cc 430 constexpr uint8_t kSentinel = 42;
431 OPENSSL_memset(ciphertext, kSentinel, sizeof(ciphertext));
439 EXPECT_EQ(kSentinel, ciphertext[i])
450 OPENSSL_memset(plaintext2, kSentinel, sizeof(plaintext2));
460 EXPECT_EQ(kSentinel, plaintext2[i])

Completed in 257 milliseconds