Searched refs:byteLimit (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/skia/tests/
H A DSkResourceCacheTest.cpp99 const size_t byteLimit = 100 * 1024; local
100 cache.reset(SkNEW_ARGS(SkResourceCache, (byteLimit)));
132 const size_t byteLimit = 100 * 1024; local
133 cache.reset(SkNEW_ARGS(SkResourceCache, (byteLimit)));
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DCodedInputByteBufferNano.java471 * Sets {@code currentLimit} to (current position) + {@code byteLimit}. This
476 public int pushLimit(int byteLimit) throws InvalidProtocolBufferNanoException { argument
477 if (byteLimit < 0) {
480 byteLimit += bufferPos;
482 if (byteLimit > oldLimit) {
485 currentLimit = byteLimit;
/external/chromium_org/third_party/skia/src/core/
H A DSkResourceCache.cpp171 SkResourceCache::SkResourceCache(size_t byteLimit) { argument
173 fTotalByteLimit = byteLimit;
234 size_t byteLimit; local
239 byteLimit = SK_MaxU32; // no limit based on bytes
242 byteLimit = fTotalByteLimit;
247 if (!forcePurge && fTotalBytesUsed < byteLimit && fCount < countLimit) {
H A DSkResourceCache.h157 * byteLimit, purging automatically when a new image is added to the cache
161 explicit SkResourceCache(size_t byteLimit);
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DCodedInputStream.java576 * Sets {@code currentLimit} to (current position) + {@code byteLimit}. This
589 public int pushLimit(int byteLimit) throws InvalidProtocolBufferException { argument
590 if (byteLimit < 0) {
593 byteLimit += totalBytesRetired + bufferPos;
595 if (byteLimit > oldLimit) {
598 currentLimit = byteLimit;
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DCodedInputStreamMicro.java528 * Sets {@code currentLimit} to (current position) + {@code byteLimit}. This
533 public int pushLimit(int byteLimit) throws InvalidProtocolBufferMicroException { argument
534 if (byteLimit < 0) {
537 byteLimit += totalBytesRetired + bufferPos;
539 if (byteLimit > oldLimit) {
542 currentLimit = byteLimit;
/external/skia/src/core/
H A DSkScaledImageCache.cpp299 SkScaledImageCache::SkScaledImageCache(size_t byteLimit) { argument
301 fTotalByteLimit = byteLimit;
498 size_t byteLimit; local
503 byteLimit = SK_MaxU32; // no limit based on bytes
506 byteLimit = fTotalByteLimit;
514 if (bytesUsed < byteLimit && countUsed < countLimit) {
H A DSkScaledImageCache.h90 * byteLimit, purging automatically when a new image is added to the cache
94 SkScaledImageCache(size_t byteLimit);
/external/google-tv-pairing-protocol/java/jar/
H A Dprotobuf-java-2.2.0-lite.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/protobuf/ com/google/protobuf/UninitializedMessageException ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 1009 milliseconds