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

  /external/webkit/Source/WebCore/platform/text/
Base64.cpp 77 // Note: Keep this in sync with the "outLength" computation below.
86 unsigned outLength = ((len + 2) / 3) * 4;
89 insertLFs = (insertLFs && outLength > 76);
91 outLength += ((outLength - 1) / 76);
94 out.grow(outLength);
152 unsigned outLength = 0;
160 out[outLength] = base64DecMap[ch];
161 outLength++;
166 if (!outLength)
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp 230 size_t outLength = mbuf->range_length();
233 outLength += sizeof(int32_t);
236 sp<ABuffer> buffer = new ABuffer(outLength);
  /external/icu4c/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/jmonkeyengine/engine/src/tools/jme3tools/optimize/
TriangleCollector.java 122 int outLength = entry.getValue().length;
128 int outElementCount = outLength * 3;
153 for (int i = outOffset; i < outOffset + outLength; i++){
  /system/security/keystore/
keystore.cpp 278 size_t outLength = 0;
286 outLength++;
288 return outLength;
    [all...]

Completed in 72 milliseconds