Home
last modified time | relevance | path

Searched refs:kMaxSize (Results 1 - 25 of 37) sorted by relevance

12

/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DViewportTest.cpp343 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/
H A DFuzzerDictionary.h23 template <size_t kMaxSize> class FixedWord {
29 assert(S <= kMaxSize); in Set()
34 bool operator==(const FixedWord<kMaxSize> &w) const { in operator ==()
38 bool operator<(const FixedWord<kMaxSize> &w) const { in operator <()
44 static size_t GetMaxSize() { return kMaxSize; } in GetMaxSize()
50 uint8_t Data[kMaxSize];
/third_party/node/deps/v8/src/objects/
H A Dembedder-data-array.h54 static const int kMaxSize = kMaxRegularHeapObjectSize; member in v8::internal::EmbedderDataArray
56 (kMaxSize - kHeaderSize) / kEmbedderDataSlotSize;
H A Dfixed-array.h90 // whole array of kMaxSize.
91 static const int kMaxSize = 128 * kTaggedSize * MB - kTaggedSize; member in v8::internal::FixedArrayBase
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;
H A Dstring.h498 // means SeqTwoByteString::kMaxSize must be able to fit into a Smi.
746 static const int kMaxSize = OBJECT_POINTER_ALIGN(kMaxCharsSize + kHeaderSize);
747 STATIC_ASSERT((kMaxSize - kHeaderSize) >= String::kMaxLength);
792 static const int kMaxSize = OBJECT_POINTER_ALIGN(kMaxCharsSize + kHeaderSize);
793 STATIC_ASSERT(static_cast<int>((kMaxSize - kHeaderSize) / sizeof(uint16_t)) >=
H A Dcode.h1075 static const int kMaxSize = 512 * MB; member in v8::internal::BytecodeArray
1077 static const int kMaxLength = kMaxSize - kHeaderSize;
/third_party/skia/src/codec/
H A DSkStreamBuffer.h90 inline static constexpr size_t kMaxSize = 256 * 3; member in SkStreamBuffer
94 char fBuffer[kMaxSize];
H A DSkStreamBuffer.cpp40 SkASSERT(totalBytesToBuffer <= kMaxSize); in buffer()
/third_party/node/deps/v8/src/heap/
H A Dheap-controller.cc41 if (max_size >= Trait::kMaxSize) { in MaxGrowingFactor()
46 DCHECK_LT(max_size, Trait::kMaxSize); in MaxGrowingFactor()
51 (Trait::kMaxSize - Trait::kMinSize) + in MaxGrowingFactor()
H A Dheap-controller.h18 static constexpr size_t kMaxSize = 1024u * Heap::kHeapLimitMultiplier * MB; member
/third_party/lzma/CPP/7zip/Compress/
H A DLzma2Decoder.cpp64 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/
H A DSkSpan.h30 SkASSERT(size < kMaxSize);
70 static constexpr size_t kMaxSize = std::numeric_limits<size_t>::max() / sizeof(T); member in SkSpan
/third_party/lzma/CPP/7zip/Common/
H A DMethodProps.h233 const UInt32 kMaxSize = (UInt32)1 << 28; in Get_Xz_BlockSize() local
238 if (blockSize > kMaxSize) blockSize = kMaxSize; in Get_Xz_BlockSize()
/third_party/skia/src/core/
H A DSkArenaAlloc.h33 template<uint32_t kMaxSize>
46 SkASSERT_RELEASE(fBlockUnitSize < std::min(kMaxSize, (1u << 26) - 1));
53 SkFibonacci47[fIndex + 1] < kMaxSize / fBlockUnitSize)
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dstring_view.h286 constexpr size_type max_size() const noexcept { return kMaxSize; }
605 static constexpr size_type kMaxSize =
609 return ABSL_HARDENING_ASSERT(len <= kMaxSize), len;
H A Dstring_view.cc225 constexpr string_view::size_type string_view::kMaxSize; member in absl::string_view
/third_party/node/deps/v8/src/heap/cppgc/
H A Dheap-object-header.h61 static constexpr size_t kMaxSize = (size_t{1} << kSizeLog2) - 1; member in cppgc::internal::HeapObjectHeader
185 DCHECK_GE(kMaxSize, size); in HeapObjectHeader()
/third_party/skia/src/ports/
H A DSkFontMgr_FontConfigInterface.cpp163 static const size_t kMaxSize = 1 << 15; member in SkFontMgr_FCI
169 , fCache(kMaxSize) in SkFontMgr_FCI()
/third_party/lzma/CPP/7zip/Archive/7z/
H A D7zHandlerOut.cpp203 const UInt32 kMaxSize = (UInt32)1 << 28; in SetMainMethod() local
205 if (cs > kMaxSize) cs = kMaxSize; in SetMainMethod()
/third_party/lzma/C/
H A DLzma2Enc.c315 const UInt32 kMaxSize = (UInt32)1 << 28; in Lzma2EncProps_Normalize() local
319 if (blockSize > kMaxSize) blockSize = kMaxSize; in Lzma2EncProps_Normalize()
/third_party/skia/src/gpu/ops/
H A DSmallPathRenderer.cpp45 static constexpr SkScalar kMaxSize = 2*kMaxMIP; member
694 // scaled to have bounds within kMaxSize by kMaxSize. in onCanDrawPath()
701 if (maxDim > kMaxDim || kMinSize > minSize || maxSize > kMaxSize) { in onCanDrawPath()
/third_party/node/deps/v8/src/codegen/
H A Dreloc-info.h406 static constexpr int kMaxSize = 1 + 4 + 1 + 1 + kSystemPointerSize; member in v8::internal::RelocInfoWriter
H A Dreloc-info.cc167 DCHECK_LE(begin_pos - pos_, kMaxSize); in Write()
/third_party/node/deps/v8/src/regexp/
H A Dregexp-interpreter.cc136 return (static_cast<int>(data_.size()) <= kMaxSize); in push()
163 static constexpr int kMaxSize = member in v8::internal::__anon14987::BacktrackStack
/third_party/node/deps/v8/src/compiler/
H A Dcode-assembler.cc997 template <size_t kMaxSize>
1001 DCHECK_GT(kMaxSize, size()); in Add()
1009 Node* arr_[kMaxSize];

Completed in 21 milliseconds

12