/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
D | CollationWeights.java | 32 maxBytes[1] = Collation.TRAIL_WEIGHT_BYTE; in initForPrimary() 35 maxBytes[2] = Collation.PRIMARY_COMPRESSION_HIGH_BYTE - 1; in initForPrimary() 38 maxBytes[2] = 0xff; in initForPrimary() 41 maxBytes[3] = 0xff; in initForPrimary() 43 maxBytes[4] = 0xff; in initForPrimary() 50 maxBytes[1] = 0; in initForSecondary() 52 maxBytes[2] = 0; in initForSecondary() 54 maxBytes[3] = 0xff; in initForSecondary() 56 maxBytes[4] = 0xff; in initForSecondary() 63 maxBytes[1] = 0; in initForTertiary() [all …]
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | CollationWeights.java | 30 maxBytes[1] = Collation.TRAIL_WEIGHT_BYTE; in initForPrimary() 33 maxBytes[2] = Collation.PRIMARY_COMPRESSION_HIGH_BYTE - 1; in initForPrimary() 36 maxBytes[2] = 0xff; in initForPrimary() 39 maxBytes[3] = 0xff; in initForPrimary() 41 maxBytes[4] = 0xff; in initForPrimary() 48 maxBytes[1] = 0; in initForSecondary() 50 maxBytes[2] = 0; in initForSecondary() 52 maxBytes[3] = 0xff; in initForSecondary() 54 maxBytes[4] = 0xff; in initForSecondary() 61 maxBytes[1] = 0; in initForTertiary() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | collationweights.cpp | 101 minBytes[i] = maxBytes[i] = 0; in CollationWeights() 109 maxBytes[1] = Collation::TRAIL_WEIGHT_BYTE; in initForPrimary() 112 maxBytes[2] = Collation::PRIMARY_COMPRESSION_HIGH_BYTE - 1; in initForPrimary() 115 maxBytes[2] = 0xff; in initForPrimary() 118 maxBytes[3] = 0xff; in initForPrimary() 120 maxBytes[4] = 0xff; in initForPrimary() 128 maxBytes[1] = 0; in initForSecondary() 130 maxBytes[2] = 0; in initForSecondary() 132 maxBytes[3] = 0xff; in initForSecondary() 134 maxBytes[4] = 0xff; in initForSecondary() [all …]
|
D | collationweights.h | 87 return (int32_t)(maxBytes[idx] - minBytes[idx] + 1); in countBytes() 104 uint32_t maxBytes[5]; variable
|
/external/skqp/src/core/ |
D | SkImageFilterCache.cpp | 30 CacheImpl(size_t maxBytes) : fMaxBytes(maxBytes), fCurrentBytes(0) { } in CacheImpl() argument 134 SkImageFilterCache* SkImageFilterCache::Create(size_t maxBytes) { in Create() argument 135 return new CacheImpl(maxBytes); in Create()
|
D | SkImageFilterCache.h | 56 static SkImageFilterCache* Create(size_t maxBytes);
|
/external/skia/src/core/ |
D | SkImageFilterCache.cpp | 30 CacheImpl(size_t maxBytes) : fMaxBytes(maxBytes), fCurrentBytes(0) { } in CacheImpl() argument 134 SkImageFilterCache* SkImageFilterCache::Create(size_t maxBytes) { in Create() argument 135 return new CacheImpl(maxBytes); in Create()
|
D | SkImageFilterCache.h | 56 static SkImageFilterCache* Create(size_t maxBytes);
|
/external/dng_sdk/source/ |
D | dng_string.h | 68 uint32 maxBytes = 6, 81 void Truncate (uint32 maxBytes);
|
D | dng_string.cpp | 913 uint32 maxBytes, in DecodeUTF8() argument 940 if (aSize > maxBytes) in DecodeUTF8() 943 s += maxBytes; in DecodeUTF8() 1328 void dng_string::Truncate (uint32 maxBytes) in Truncate() argument 1333 if (len > maxBytes) in Truncate() 1341 while (maxBytes > 0 && ((s [maxBytes]) & 0xC0) == 0x80) in Truncate() 1344 maxBytes--; in Truncate() 1348 s [maxBytes] = 0; in Truncate()
|
/external/skia/tests/ |
D | TextureProxyTest.cpp | 226 size_t maxBytes; in invalidation_test() local 227 context->getResourceCacheLimits(&maxNum, &maxBytes); in invalidation_test() 228 context->setResourceCacheLimits(maxNum-1, maxBytes); in invalidation_test()
|
/external/skqp/tests/ |
D | TextureProxyTest.cpp | 226 size_t maxBytes; in invalidation_test() local 227 context->getResourceCacheLimits(&maxNum, &maxBytes); in invalidation_test() 228 context->setResourceCacheLimits(maxNum-1, maxBytes); in invalidation_test()
|
/external/python/cpython2/Lib/logging/ |
D | handlers.py | 89 def __init__(self, filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=0): argument 115 if maxBytes > 0: 118 self.maxBytes = maxBytes 155 if self.maxBytes > 0: # are we rolling over? 158 if self.stream.tell() + len(msg) >= self.maxBytes:
|
/external/autotest/site_utils/stats/ |
D | log_daemon_common.py | 38 args.output_logfile, maxBytes=10**6, backupCount=5)
|
/external/python/cpython3/Lib/logging/ |
D | handlers.py | 122 def __init__(self, filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=False): argument 148 if maxBytes > 0: 151 self.maxBytes = maxBytes 186 if self.maxBytes > 0: # are we rolling over? 189 if self.stream.tell() + len(msg) >= self.maxBytes:
|
/external/autotest/site_utils/ |
D | rpc_logserver.py | 110 maxBytes=max_log_size*MEGABYTE,
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | IsValidUtf8TestUtil.java | 356 int maxBytes = (int) (encoder.maxBytesPerChar() * maxChars) + 1; 357 byte[] bytesReencoded = new byte[maxBytes];
|
/external/toolchain-utils/automation/common/ |
D | logger.py | 19 maxBytes=10 * 1024 * 1024,
|
/external/javassist/src/main/javassist/util/proxy/ |
D | ProxyFactory.java | 784 int maxBytes = ((l + 7) >> 3); in computeSignature() local 785 signature = new byte[maxBytes]; in computeSignature() 803 int maxBytes = ((l + 7) >> 3); in installSignature() local 804 if (signature.length != maxBytes) { in installSignature()
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
D | device_monitor.py | 208 '/tmp/device_monitor.log', maxBytes=10 * 1024 * 1024, backupCount=5)
|
/external/skia/third_party/gif/ |
D | SkGifImageReader.cpp | 1007 const size_t maxBytes = SK_MAX_DICTIONARY_ENTRIES - 1; in prepareToDecode() local 1013 rowBuffer.reset(m_frameContext->width() - 1 + maxBytes); in prepareToDecode()
|
/external/skqp/third_party/gif/ |
D | SkGifImageReader.cpp | 1007 const size_t maxBytes = SK_MAX_DICTIONARY_ENTRIES - 1; in prepareToDecode() local 1013 rowBuffer.reset(m_frameContext->width() - 1 + maxBytes); in prepareToDecode()
|
/external/sonic/ |
D | Sonic.java | 431 int maxBytes) in readBytesFromStream() argument 433 int maxSamples = maxBytes/(2*numChannels); in readBytesFromStream()
|
/external/autotest/site_utils/chromeos_proxy/ |
D | swarming_bots.py | 393 filename=log_file, maxBytes=LOG_FILE_SIZE,
|
/external/python/cpython2/Doc/library/ |
D | logging.handlers.rst | 177 .. class:: RotatingFileHandler(filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=… 185 You can use the *maxBytes* and *backupCount* values to allow the file to 188 whenever the current log file is nearly *maxBytes* in length; if either of 189 *maxBytes* or *backupCount* is zero, rollover never occurs. If *backupCount*
|