/external/chromium_org/net/third_party/nss/patches/ |
D | paddingextension.patch | 37 maxBytes -= extLen; 39 + extLen = ssl3_AppendPaddingExtension(ss, paddingExtensionLen, maxBytes); 43 + maxBytes -= extLen; 45 PORT_Assert(!maxBytes); 52 @@ -2297,3 +2297,56 @@ ssl3_ClientSendSigAlgsXtn(sslSocket * ss, PRBool append, PRUint32 maxBytes) 83 + PRUint32 maxBytes) 93 + extensionLen > maxBytes || 114 ssl3_CallHelloExtensionSenders(sslSocket *ss, PRBool append, PRUint32 maxBytes, 122 + PRUint32 maxBytes);
|
D | alpn.patch | 28 + PRUint32 maxBytes); 30 PRUint32 maxBytes); 126 PRUint32 maxBytes) 132 +ssl3_ClientSendAppProtoXtn(sslSocket * ss, PRBool append, PRUint32 maxBytes) 146 + if (append && maxBytes >= extension_length) { 183 + } else if (maxBytes < extension_length) {
|
D | paddingextensionall.patch | 19 PRUint32 maxBytes)
|
D | signedcertificatetimestamps.patch | 80 PRUint32 maxBytes); 85 + PRUint32 maxBytes); 121 + PRUint32 maxBytes) 130 + if (append && maxBytes >= extension_length) { 144 + } else if (maxBytes < extension_length) {
|
D | channelid.patch | 279 PRUint32 maxBytes); 285 + PRUint32 maxBytes); 287 PRBool append, PRUint32 maxBytes); 330 + PRUint32 maxBytes) 337 + if (maxBytes < extension_length) {
|
/external/chromium-trace/trace-viewer/src/tcmalloc/ |
D | heap_instance_track.js | 52 var maxBytes = 0; 62 if (sumBytes > maxBytes) 63 maxBytes = sumBytes; 65 return maxBytes; 96 var maxBytes = this.maxBytes_; 153 var barHeight = height * trace.currentBytes / maxBytes;
|
/external/chromium_org/net/third_party/nss/ssl/ |
D | ssl3ext.c | 50 PRBool append, PRUint32 maxBytes); 60 PRUint32 maxBytes); 62 PRUint32 maxBytes); 64 PRUint32 maxBytes); 70 PRUint32 maxBytes); 72 PRBool append, PRUint32 maxBytes); 79 PRUint32 maxBytes); 81 PRUint32 maxBytes); 86 PRUint32 maxBytes); 341 PRUint32 maxBytes) in ssl3_SendServerNameXtn() argument [all …]
|
D | sslimpl.h | 211 PRUint32 maxBytes); 237 ssl3_CallHelloExtensionSenders(sslSocket *ss, PRBool append, PRUint32 maxBytes, 245 PRUint32 maxBytes); 1810 PRUint32 maxBytes); 1816 PRUint32 maxBytes); 1828 PRBool append, PRUint32 maxBytes); 1830 PRBool append, PRUint32 maxBytes);
|
D | ssl3ecc.c | 1121 PRUint32 maxBytes) in ssl3_SendSupportedCurvesXtn() argument 1137 if (append && maxBytes >= ecListSize) { in ssl3_SendSupportedCurvesXtn() 1166 PRUint32 maxBytes) in ssl3_SendSupportedPointFormatsXtn() argument 1170 if (append && maxBytes >= (sizeof ecPtFmt)) { in ssl3_SendSupportedPointFormatsXtn()
|
D | ssl3con.c | 5196 PRUint32 maxBytes = 65535; /* 2^16 - 1 */ in ssl3_SendClientHello() local 5199 extLen = ssl3_CallHelloExtensionSenders(ss, PR_FALSE, maxBytes, NULL); in ssl3_SendClientHello() 5203 maxBytes -= extLen; in ssl3_SendClientHello() 5383 PRUint32 maxBytes = total_exten_len - 2; in ssl3_SendClientHello() local 5386 rv = ssl3_AppendHandshakeNumber(ss, maxBytes, 2); in ssl3_SendClientHello() 5391 extLen = ssl3_CallHelloExtensionSenders(ss, PR_TRUE, maxBytes, NULL); in ssl3_SendClientHello() 5395 maxBytes -= extLen; in ssl3_SendClientHello() 5397 extLen = ssl3_AppendPaddingExtension(ss, paddingExtensionLen, maxBytes); in ssl3_SendClientHello() 5401 maxBytes -= extLen; in ssl3_SendClientHello() 5403 PORT_Assert(!maxBytes); in ssl3_SendClientHello() [all …]
|
/external/skia/gm/ |
D | gm_expectations.cpp | 237 /*static*/ SkData* JsonExpectationsSource::ReadIntoSkData(SkStream &stream, size_t maxBytes) { in ReadIntoSkData() argument 238 if (0 == maxBytes) { in ReadIntoSkData() 241 char* bufStart = reinterpret_cast<char *>(sk_malloc_throw(maxBytes)); in ReadIntoSkData() 243 size_t bytesRemaining = maxBytes; in ReadIntoSkData() 252 return SkData::NewFromMalloc(bufStart, maxBytes - bytesRemaining); in ReadIntoSkData()
|
D | gm_expectations.h | 251 static SkData* ReadIntoSkData(SkStream &stream, size_t maxBytes);
|
/external/chromium_org/third_party/skia/src/gpu/ |
D | GrResourceCache.h | 203 GrResourceCache(int maxCount, size_t maxBytes); 214 void getLimits(int* maxResources, size_t* maxBytes) const;
|
D | GrResourceCache.cpp | 50 GrResourceCache::GrResourceCache(int maxCount, size_t maxBytes) : in GrResourceCache() argument 52 fMaxBytes(maxBytes) { in GrResourceCache()
|
/external/skia/src/gpu/ |
D | GrResourceCache.h | 203 GrResourceCache(int maxCount, size_t maxBytes); 214 void getLimits(int* maxResources, size_t* maxBytes) const;
|
D | GrResourceCache.cpp | 50 GrResourceCache::GrResourceCache(int maxCount, size_t maxBytes) : in GrResourceCache() argument 52 fMaxBytes(maxBytes) { in GrResourceCache()
|
/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/ |
D | IsValidUtf8TestUtil.java | 326 int maxBytes = (int) (encoder.maxBytesPerChar() * maxChars) + 1; 327 byte[] bytesReencoded = new byte[maxBytes];
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/ |
D | GIFImageReader.cpp | 784 const size_t maxBytes = MAX_DICTIONARY_ENTRIES - 1; in prepareToDecode() local 790 rowBuffer.resize(m_frameContext->width() - 1 + maxBytes); in prepareToDecode()
|
/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/valgrind/main/VEX/priv/ |
D | guest_ppc_toIR.c | 5007 Int maxBytes ) // 32 or 128 in generate_lsw_sequence() argument 5017 for (i = 0; i < maxBytes; i++) { in generate_lsw_sequence() 5058 Int maxBytes ) // 32 or 128 in generate_stsw_sequence() argument 5068 for (i = 0; i < maxBytes; i++) { in generate_stsw_sequence()
|