HomeSort by relevance Sort by last modified time
    Searched defs:outLength (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
Base64.cpp 76 // Note: Keep this in sync with the "outLength" computation below.
85 unsigned outLength = ((len + 2) / 3) * 4;
88 bool insertLFs = (policy == Base64InsertLFs && outLength > 76);
90 outLength += ((outLength - 1) / 76);
93 out.grow(outLength);
151 unsigned outLength = 0;
167 out[outLength++] = base64DecMap[ch];
174 if (outLength < out.size())
175 out.shrink(outLength);
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeTokenizer.cpp 255 int outLength = readStringLength(start, end);
256 unsigned char* out = (unsigned char*)allocator->alloc(outLength);
258 SkPdfNativeObject::makeString(out, out + outLength, str);
260 TRACE_STRING(out, out + outLength);
403 int outLength = readHexStringLength(start, end);
404 unsigned char* out = (unsigned char*)allocator->alloc(outLength);
406 SkPdfNativeObject::makeHexString(out, out + outLength, str);
408 TRACE_HEXSTRING(out, out + outLength);
531 int outLength = readNameLength(start, end);
532 unsigned char* out = (unsigned char*)allocator->alloc(outLength);
    [all...]
  /external/icu/icu4c/source/layout/
HangulLayoutEngine.cpp 293 le_int32 outLength = outCharCount - outStart;
306 if ((inLength >= 1 && inLength <= 3) && (outLength == 2 || outLength == 3)) {
310 LEUnicode trail = outLength == 3? outChars[outStart + 2] : TJMO_FIRST;
316 if (compose(lead, vowel, trail, syllable) == outLength) {
  /external/chromium_org/net/third_party/nss/ssl/
ssl3con.c     [all...]

Completed in 266 milliseconds