Searched defs:byteCount (Results 1 - 23 of 23) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_byte_stream.c87 u32 byteCount,initByteCount; local
107 zeroCount = byteCount = 2;
113 byteCount++;
115 if (byteCount == len)
130 initByteCount = byteCount;
139 byteCount++;
151 byteCount - initByteCount - zeroCount - 1;
162 if (byteCount == len)
164 pStrmData->strmBuffSize = byteCount - initByteCount - zeroCount;
/frameworks/base/core/java/android/content/pm/
H A DLimitedLengthInputStream.java68 public int read(byte[] buffer, int offset, int byteCount) throws IOException { argument
74 Arrays.checkOffsetAndCount(arrayLength, offset, byteCount);
76 if (mOffset > Long.MAX_VALUE - byteCount) {
77 throw new IOException("offset out of bounds: " + mOffset + " + " + byteCount);
80 if (mOffset + byteCount > mEnd) {
81 byteCount = (int) (mEnd - mOffset);
84 final int numRead = super.read(buffer, offset, byteCount);
/frameworks/base/core/java/com/android/internal/util/
H A DSizedInputStream.java49 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
52 } else if (byteCount > mLength) {
53 byteCount = (int) mLength;
56 final int n = mWrapped.read(buffer, byteOffset, byteCount);
/frameworks/base/core/jni/
H A Dandroid_ddm_DdmHandleNativeHeap.cpp60 ssize_t byteCount; local
61 while ((byteCount = TEMP_FAILURE_RETRY(read(fd, bytes, sizeof(bytes)))) > 0) {
62 s.append(bytes, byteCount);
H A Dandroid_hardware_camera2_CameraMetadata.cpp314 jsize byteCount = entry.count * tagSize; local
315 jbyteArray byteArray = env->NewByteArray(byteCount);
320 memcpy(arrayWriter.get(), entry.data.u8, byteCount);
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/io/
H A DBridgeBufferIterator.java48 public void skip(int byteCount) { argument
49 int newPosition = mByteBuffer.position() + byteCount;
55 public void readByteArray(byte[] dst, int dstOffset, int byteCount) { argument
56 assert dst.length >= dstOffset + byteCount;
57 mByteBuffer.get(dst, dstOffset, byteCount);
/frameworks/av/media/libaaudio/src/legacy/
H A DAudioStreamLegacy.cpp99 int32_t byteCount = audioBuffer->frameCount * getBytesPerFrame(); local
101 (uint8_t *) audioBuffer->raw, byteCount);
/frameworks/base/core/java/android/os/
H A DFileBridge.java180 public void write(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
181 Arrays.checkOffsetAndCount(buffer.length, byteOffset, byteCount);
183 Memory.pokeInt(mTemp, 4, byteCount, ByteOrder.BIG_ENDIAN);
185 IoBridge.write(mClient, buffer, byteOffset, byteCount);
/frameworks/base/packages/PrintSpooler/jni/
H A Dcom_android_printspooler_util_BitmapSerializeUtils.cpp29 static bool writeAllBytes(const int fd, void* buffer, const size_t byteCount) { argument
31 size_t remainingBytes = byteCount;
48 static bool readAllBytes(const int fd, void* buffer, const size_t byteCount) { argument
50 size_t remainingBytes = byteCount;
67 byteCount);
123 size_t byteCount = readInfo.stride * readInfo.height; local
124 read = readAllBytes(fd, (void*) pixels, byteCount);
162 size_t byteCount = info.stride * info.height; local
163 written = writeAllBytes(fd, (void*) pixels, byteCount);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.cpp22 /* Note byteCount doesn't have to be multiple of 2 or 4 */
75 stream->byteCount = 0;
213 if (stream->byteCount + WORD_SIZE > stream->bufferSize)
217 stream->byteCount += WORD_SIZE;
222 ptr = stream->bitstreamBuffer + stream->byteCount;
226 /* NOTE: byteCount does not have to be multiple of 2 or 4 */
236 stream->byteCount += 4;
239 stream->byteCount += 2;
267 if (stream->byteCount + numbyte > stream->bufferSize)
271 stream->byteCount
581 BitstreamRepos(BitstreamEncVideo *bitstream, Int byteCount, Int bitCount) argument
[all...]
H A Dcombined_encode.cpp285 Int byteCount = 0, byteCount1 = 0, bitCount = 0; local
368 byteCount1 = byteCount = bitCount >> 3; /* save the position before GOB header */
438 byteCount = bitCount >> 3; /* save the state before encoding */
469 BitstreamRepos(bs1, byteCount, bitCount); /* rewind one MB */
506 if (mbnum < nTotalMB - 1 && currVol->stream->byteCount + bs1->byteCount + 1 >= currVol->stream->bufferSize)
509 byteCount = currVol->stream->bufferSize - currVol->stream->byteCount - 1;
511 num_bits = BitstreamGetPos(bs1) - (byteCount << 3);
512 BitstreamRepos(bs1, byteCount,
[all...]
H A Dmp4lib_int.h32 Int byteCount; /*how many bytes already encoded*/ member in struct:tagBitstream
/frameworks/base/core/java/android/util/jar/
H A DStrictJarFile.java347 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
352 int r = super.read(buffer, byteOffset, byteCount);
384 public long skip(long byteCount) throws IOException { argument
385 return Streams.skipByReading(this, byteCount);
399 @Override public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
402 i = super.read(buffer, byteOffset, byteCount);
458 @Override public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
461 if (byteCount > length) {
462 byteCount = (int) length;
469 int count = IoBridge.read(fd, buffer, byteOffset, byteCount);
479 skip(long byteCount) argument
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DNativeFrame.java177 int byteCount = rgbaBitmap.getByteCount();
179 if (!setNativeBitmap(rgbaBitmap, byteCount, bps)) {
193 int byteCount = result.getByteCount();
195 if (!getNativeBitmap(result, byteCount, bps)) {
244 private native byte[] getNativeData(int byteCount); argument
252 private native int[] getNativeInts(int byteCount); argument
254 private native float[] getNativeFloats(int byteCount); argument
/frameworks/av/media/img_utils/src/
H A DTiffIfd.cpp312 uint32_t byteCount = stripByteCounts->getCount(); local
313 if (offsetsCount != byteCount) {
315 __FUNCTION__, offsetsCount, byteCount, mIfdId);
/frameworks/base/core/jni/android/graphics/pdf/
H A DPdfEditor.cpp75 static bool writeAllBytes(const int fd, const void* buffer, const size_t byteCount) { argument
77 size_t remainingBytes = byteCount;
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSmsMessage.java729 * @param byteCount the number of byest in the user data payload
732 String getUserDataGSM8bit(int byteCount) { argument
735 ret = GsmAlphabet.gsm8BitUnpackedToString(mPdu, mCur, byteCount);
737 mCur += byteCount;
746 * @param byteCount the number of bytes in the user data payload
749 String getUserDataUCS2(int byteCount) { argument
753 ret = new String(mPdu, mCur, byteCount, "utf-16");
759 mCur += byteCount;
767 * @param byteCount the number of bytes in the user data payload
770 String getUserDataKSC5601(int byteCount) { argument
[all...]
/frameworks/base/services/net/java/android/net/dhcp/
H A DDhcpPacket.java689 private static String readAsciiString(ByteBuffer buf, int byteCount, boolean nullOk) { argument
690 byte[] bytes = new byte[byteCount];
/frameworks/base/media/java/android/media/
H A DExifInterface.java2946 long byteCount = 0;
2953 byteCount = (long) numberOfComponents * IFD_FORMAT_BYTES_PER_FORMAT[dataFormat];
2954 if (byteCount < 0 || byteCount > Integer.MAX_VALUE) {
2968 if (byteCount > 4) {
3001 if (offset + byteCount <= dataInputStream.mLength) {
3014 Log.d(TAG, "nextIfdType: " + nextIfdType + " byteCount: " + byteCount);
3057 byte[] bytes = new byte[(int) byteCount];
3688 public void seek(long byteCount) throw argument
3823 skipBytes(int byteCount) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java930 private ByteBuffer toByteBuffer(int byteCount, Buffer input) { argument
932 boolean convertWholeBuffer = (byteCount < 0);
937 byteCount = input2.limit() - position;
939 result = ByteBuffer.allocate(byteCount).order(input2.order());
940 for (int i = 0; i < byteCount; i++) {
948 byteCount = (input2.limit() - position) * 2;
950 result = ByteBuffer.allocate(byteCount).order(input2.order());
952 for (int i = 0; i < byteCount / 2; i++) {
960 byteCount = (input2.limit() - position)* 2;
962 result = ByteBuffer.allocate(byteCount)
[all...]
/frameworks/support/exifinterface/src/android/support/media/
H A DExifInterface.java5339 long byteCount = 0;
5352 byteCount = (long) numberOfComponents * IFD_FORMAT_BYTES_PER_FORMAT[dataFormat];
5353 if (byteCount < 0 || byteCount > Integer.MAX_VALUE) {
5367 if (byteCount > 4) {
5400 if (offset + byteCount <= dataInputStream.mLength) {
5413 Log.d(TAG, "nextIfdType: " + nextIfdType + " byteCount: " + byteCount);
5456 byte[] bytes = new byte[(int) byteCount];
5624 for (long byteCount
6105 seek(long byteCount) argument
6247 skipBytes(int byteCount) argument
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...

Completed in 893 milliseconds