Home
last modified time | relevance | path

Searched refs:kMaxBytes (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/src/core/
DSkAutoMalloc.h164 static const size_t kMaxBytes = 4 * 1024; variable
165 static const size_t kSize = kSizeRequested > kMaxBytes ? kMaxBytes : kSizeAlign4;
/third_party/skia/include/private/
DSkTemplates.h221 static const int kMaxBytes = 4 * 1024;
222 static const int kCount = kCountRequested * sizeof(T) > kMaxBytes
223 ? kMaxBytes / sizeof(T)
379 static const size_t kMaxBytes = 4 * 1024; variable
380 static const size_t kCount = kCountRequested * sizeof(T) > kMaxBytes
381 ? kMaxBytes / sizeof(T)
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
Dstacktrace_x86-inl.inc46 // kMaxBytes tells how many instruction bytes of __kernel_vsyscall
47 // to analyze before giving up. Up to kMaxBytes+1 bytes of
74 static const int kMaxBytes = 10;
81 for (int i = 0; i < kMaxBytes; ++i) {
107 // [__kernel_vsyscall, __kernel_vsyscall + kMaxBytes) interval.
218 reg_eip - kernel_vsyscall_address < kMaxBytes) {
/third_party/skia/tests/
DPromiseImageTest.cpp310 static constexpr int kMaxBytes = 1; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local
311 dContext->setResourceCacheLimit(kMaxBytes); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
325 REPORTER_ASSERT(reporter, bytesUsed > kMaxBytes); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/third_party/skia/third_party/externals/libgifcodec/
DSkGifImageReader.cpp939 constexpr size_t kMaxBytes = (kMaxSequence + SK_DICTIONARY_WORD_SIZE - 1) in prepareToDecode() local
946 rowBuffer.reset(m_frameContext->width() - 1 + kMaxBytes); in prepareToDecode()