/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | ViewportTest.cpp | 343 constexpr int kMaxSize = std::numeric_limits<int>::max(); in TEST_P() local 346 kMaxSize, in TEST_P() 347 kMaxSize, in TEST_P() 354 kMaxSize, in TEST_P() 355 kMaxSize, in TEST_P() 360 kMaxSize, in TEST_P() 361 kMaxSize, in TEST_P() 364 kMaxSize, in TEST_P() 365 kMaxSize, in TEST_P() 366 kMaxSize, in TEST_P() [all …]
|
/third_party/json/tests/thirdparty/Fuzzer/ |
D | FuzzerDictionary.h | 23 template <size_t kMaxSize> class FixedWord { 29 assert(S <= kMaxSize); in Set() 34 bool operator==(const FixedWord<kMaxSize> &w) const { 38 bool operator<(const FixedWord<kMaxSize> &w) const { 44 static size_t GetMaxSize() { return kMaxSize; } in GetMaxSize() 50 uint8_t Data[kMaxSize];
|
/third_party/node/deps/v8/src/objects/ |
D | fixed-array.h | 91 static const int kMaxSize = 128 * kTaggedSize * MB - kTaggedSize; variable 92 STATIC_ASSERT(Smi::IsValid(kMaxSize)); 206 static const int kMaxLength = (kMaxSize - kHeaderSize) / kTaggedSize; 211 STATIC_ASSERT(kMaxRegularHeapObjectSize < kMaxSize); 276 static const int kMaxLength = (kMaxSize - kHeaderSize) / kDoubleSize; 324 (FixedArray::kMaxSize - kHeaderSize) / kTaggedSize; 406 (FixedArray::kMaxSize - kHeaderSize) / kTaggedSize; 578 static const int kMaxLength = kMaxSize - kHeaderSize;
|
D | embedder-data-array.h | 54 static const int kMaxSize = kMaxRegularHeapObjectSize; variable 56 (kMaxSize - kHeaderSize) / kEmbedderDataSlotSize;
|
D | string.h | 746 static const int kMaxSize = OBJECT_POINTER_ALIGN(kMaxCharsSize + kHeaderSize); variable 747 STATIC_ASSERT((kMaxSize - kHeaderSize) >= String::kMaxLength); 792 static const int kMaxSize = OBJECT_POINTER_ALIGN(kMaxCharsSize + kHeaderSize); variable 793 STATIC_ASSERT(static_cast<int>((kMaxSize - kHeaderSize) / sizeof(uint16_t)) >=
|
D | code.h | 1075 static const int kMaxSize = 512 * MB; in DEFINE_OPERATORS_FOR_FLAGS() local 1077 static const int kMaxLength = kMaxSize - kHeaderSize; in DEFINE_OPERATORS_FOR_FLAGS()
|
/third_party/skia/src/codec/ |
D | SkStreamBuffer.h | 90 inline static constexpr size_t kMaxSize = 256 * 3; 94 char fBuffer[kMaxSize];
|
D | SkStreamBuffer.cpp | 40 SkASSERT(totalBytesToBuffer <= kMaxSize); in buffer()
|
/third_party/node/deps/v8/src/heap/ |
D | heap-controller.cc | 41 if (max_size >= Trait::kMaxSize) { in MaxGrowingFactor() 46 DCHECK_LT(max_size, Trait::kMaxSize); in MaxGrowingFactor() 51 (Trait::kMaxSize - Trait::kMinSize) + in MaxGrowingFactor()
|
D | heap-controller.h | 18 static constexpr size_t kMaxSize = 1024u * Heap::kHeapLimitMultiplier * MB; member
|
/third_party/lzma/CPP/7zip/Compress/ |
D | Lzma2Decoder.cpp | 64 const UInt32 kMaxSize = (UInt32)1 << 28; in Get_ExpectedBlockSize_From_Dict() local 67 if (blockSize > kMaxSize) blockSize = kMaxSize; in Get_ExpectedBlockSize_From_Dict()
|
/third_party/skia/include/core/ |
D | SkSpan.h | 30 SkASSERT(size < kMaxSize); 70 static constexpr size_t kMaxSize = std::numeric_limits<size_t>::max() / sizeof(T);
|
/third_party/skia/src/core/ |
D | SkArenaAlloc.h | 33 template<uint32_t kMaxSize> 46 SkASSERT_RELEASE(fBlockUnitSize < std::min(kMaxSize, (1u << 26) - 1)); 53 SkFibonacci47[fIndex + 1] < kMaxSize / fBlockUnitSize) in nextBlockSize()
|
/third_party/lzma/CPP/7zip/Common/ |
D | MethodProps.h | 233 const UInt32 kMaxSize = (UInt32)1 << 28; in Get_Xz_BlockSize() local 238 if (blockSize > kMaxSize) blockSize = kMaxSize; in Get_Xz_BlockSize()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | string_view.h | 286 constexpr size_type max_size() const noexcept { return kMaxSize; } in max_size() 605 static constexpr size_type kMaxSize = variable 609 return ABSL_HARDENING_ASSERT(len <= kMaxSize), len; in CheckLengthInternal()
|
D | string_view.cc | 225 constexpr string_view::size_type string_view::kMaxSize; member in absl::string_view
|
/third_party/skia/src/ports/ |
D | SkFontMgr_FontConfigInterface.cpp | 163 static const size_t kMaxSize = 1 << 15; member in SkFontMgr_FCI 169 , fCache(kMaxSize) in SkFontMgr_FCI()
|
/third_party/node/deps/v8/src/heap/cppgc/ |
D | heap-object-header.h | 61 static constexpr size_t kMaxSize = (size_t{1} << kSizeLog2) - 1; variable 185 DCHECK_GE(kMaxSize, size); in HeapObjectHeader()
|
/third_party/lzma/C/ |
D | Lzma2Enc.c | 315 const UInt32 kMaxSize = (UInt32)1 << 28; in Lzma2EncProps_Normalize() local 319 if (blockSize > kMaxSize) blockSize = kMaxSize; in Lzma2EncProps_Normalize()
|
/third_party/lzma/CPP/7zip/Archive/7z/ |
D | 7zHandlerOut.cpp | 162 const UInt32 kMaxSize = (UInt32)1 << 28; in SetMainMethod() local 164 if (cs > kMaxSize) cs = kMaxSize; in SetMainMethod()
|
/third_party/skia/src/gpu/ops/ |
D | SmallPathRenderer.cpp | 45 static constexpr SkScalar kMaxSize = 2*kMaxMIP; variable 701 if (maxDim > kMaxDim || kMinSize > minSize || maxSize > kMaxSize) { in onCanDrawPath()
|
/third_party/node/deps/v8/src/codegen/ |
D | reloc-info.h | 406 static constexpr int kMaxSize = 1 + 4 + 1 + 1 + kSystemPointerSize; variable
|
D | reloc-info.cc | 167 DCHECK_LE(begin_pos - pos_, kMaxSize); in Write()
|
/third_party/node/deps/v8/src/regexp/ |
D | regexp-interpreter.cc | 136 return (static_cast<int>(data_.size()) <= kMaxSize); in push() 163 static constexpr int kMaxSize = member in v8::internal::__anonbaf368e10111::BacktrackStack
|
/third_party/node/deps/v8/src/compiler/ |
D | code-assembler.cc | 997 template <size_t kMaxSize> 1001 DCHECK_GT(kMaxSize, size()); in Add() 1009 Node* arr_[kMaxSize];
|