Searched refs:outLength (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Source/WebCore/platform/text/ |
D | Base64.cpp | 86 unsigned outLength = ((len + 2) / 3) * 4; in base64Encode() local 89 insertLFs = (insertLFs && outLength > 76); in base64Encode() 91 outLength += ((outLength - 1) / 76); in base64Encode() 94 out.grow(outLength); in base64Encode() 152 unsigned outLength = 0; in base64DecodeInternal() local 160 out[outLength] = base64DecMap[ch]; in base64DecodeInternal() 161 outLength++; in base64DecodeInternal() 166 if (!outLength) in base64DecodeInternal() 170 if ((outLength % 4) == 1) in base64DecodeInternal() 174 outLength -= (outLength + 3) / 4; in base64DecodeInternal() [all …]
|
/external/icu4c/common/ |
D | uinvchar.c | 450 const char *outString, int32_t outLength, in uprv_compareInvAscii() argument 456 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) { in uprv_compareInvAscii() 460 if(outLength<0) { in uprv_compareInvAscii() 461 outLength=(int32_t)uprv_strlen(outString); in uprv_compareInvAscii() 467 minLength= outLength<localLength ? outLength : localLength; in uprv_compareInvAscii() 490 return outLength-localLength; in uprv_compareInvAscii() 495 const char *outString, int32_t outLength, in uprv_compareInvEbcdic() argument 501 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) { in uprv_compareInvEbcdic() 505 if(outLength<0) { in uprv_compareInvEbcdic() 506 outLength=(int32_t)uprv_strlen(outString); in uprv_compareInvEbcdic() [all …]
|
D | udataswp.h | 132 const char *outString, int32_t outLength, 307 const char *outString, int32_t outLength, 316 const char *outString, int32_t outLength,
|
/external/icu4c/layout/ |
D | HangulLayoutEngine.cpp | 293 le_int32 outLength = outCharCount - outStart; in characterProcessing() local 306 if ((inLength >= 1 && inLength <= 3) && (outLength == 2 || outLength == 3)) { in characterProcessing() 310 LEUnicode trail = outLength == 3? outChars[outStart + 2] : TJMO_FIRST; in characterProcessing() 316 if (compose(lead, vowel, trail, syllable) == outLength) { in characterProcessing()
|
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/ |
D | TriangleCollector.java | 122 int outLength = entry.getValue().length; in gatherTris() local 128 int outElementCount = outLength * 3; in gatherTris() 153 for (int i = outOffset; i < outOffset + outLength; i++){ in gatherTris()
|
/external/quake/quake/src/WinQuake/ |
D | common.h | 161 void COM_FileBase (const char *in, char *out, size_t outLength);
|
/external/webkit/Source/WebKit/mac/Misc/ |
D | WebNSURLExtras.mm | 377 int outLength = 0; 385 outLength += 3; 389 outLength++; 393 NSData *data = [NSData dataWithBytesNoCopy:outBytes length:outLength]; // adopts outBytes
|
/external/icu4c/test/cintltst/ |
D | cnormtst.c | 1032 const UChar *out, int32_t outLength, in _testIter() argument 1041 outLimit=out+outLength; in _testIter()
|