Searched defs:outLen (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/foundation/
H A Dbase64.cpp43 size_t outLen = 3 * s.size() / 4 - padding; local
45 sp<ABuffer> buffer = new ABuffer(outLen);
78 if (j < outLen) { out[j++] = (accum >> 8) & 0xff; }
79 if (j < outLen) { out[j++] = accum & 0xff; }
/frameworks/base/core/java/android/content/pm/
H A DSignature.java121 * @param outLen Output parameter for the number of characters written in
127 public char[] toChars(char[] existingArray, int[] outLen) { argument
140 if (outLen != null) outLen[0] = N;
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4AudioAssembler.cpp68 size_t outLen = s.size() / 2; local
69 sp<ABuffer> buffer = new ABuffer(outLen);
H A DAPacketSource.cpp77 size_t outLen = s.size() / 2; local
78 sp<ABuffer> buffer = new ABuffer(outLen);
/frameworks/av/media/libstagefright/
H A DOggExtractor.cpp896 size_t outLen = 3 * size / 4 - padding; local
898 *outSize = outLen;
900 void *buffer = malloc(outLen);
933 if (j < outLen) { out[j++] = (accum >> 8) & 0xff; }
934 if (j < outLen) { out[j++] = accum & 0xff; }
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java1681 static byte[] readFully(InputStream stream, int[] outLen) throws IOException { argument
1692 outLen[0] = pos;

Completed in 483 milliseconds