Searched defs:byteCount (Results 1 - 19 of 19) 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.cpp312 jsize byteCount = entry.count * tagSize; local
313 jbyteArray byteArray = env->NewByteArray(byteCount);
318 memcpy(arrayWriter.get(), entry.data.u8, byteCount);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/io/
H A DBridgeBufferIterator.java43 public void skip(int byteCount) { argument
44 int newPosition = mByteBuffer.position() + byteCount;
50 public void readByteArray(byte[] dst, int dstOffset, int byteCount) { argument
51 assert dst.length >= dstOffset + byteCount;
52 mByteBuffer.get(dst, dstOffset, byteCount);
/frameworks/base/core/java/android/os/
H A DFileBridge.java178 public void write(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
179 Arrays.checkOffsetAndCount(buffer.length, byteOffset, byteCount);
181 Memory.pokeInt(mTemp, 4, byteCount, ByteOrder.BIG_ENDIAN);
183 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.java304 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
309 int r = super.read(buffer, byteOffset, byteCount);
341 public long skip(long byteCount) throws IOException { argument
342 return Streams.skipByReading(this, byteCount);
356 @Override public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
359 i = super.read(buffer, byteOffset, byteCount);
420 @Override public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { argument
423 if (byteCount > length) {
424 byteCount = (int) length;
427 int count = sharedRaf.read(buffer, byteOffset, byteCount);
437 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.cpp136 static bool writeAllBytes(const int fd, const void* buffer, const size_t byteCount) { argument
138 size_t remainingBytes = byteCount;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSmsMessage.java719 * @param byteCount the number of byest in the user data payload
722 String getUserDataGSM8bit(int byteCount) { argument
725 ret = GsmAlphabet.gsm8BitUnpackedToString(mPdu, mCur, byteCount);
727 mCur += byteCount;
736 * @param byteCount the number of bytes in the user data payload
739 String getUserDataUCS2(int byteCount) { argument
743 ret = new String(mPdu, mCur, byteCount, "utf-16");
749 mCur += byteCount;
757 * @param byteCount the number of bytes in the user data payload
760 String getUserDataKSC5601(int byteCount) { argument
[all...]
/frameworks/base/services/net/java/android/net/dhcp/
H A DDhcpPacket.java685 private static String readAsciiString(ByteBuffer buf, int byteCount, boolean nullOk) { argument
686 byte[] bytes = new byte[byteCount];
/frameworks/base/media/java/android/media/
H A DExifInterface.java2210 int byteCount = numberOfComponents * IFD_FORMAT_BYTES_PER_FORMAT[dataFormat];
2211 if (byteCount > 4) {
2216 if (offset + byteCount <= dataInputStream.mLength) {
2229 Log.d(TAG, "innerIfdHint: " + innerIfdHint + " byteCount: " + byteCount);
2579 public void seek(long byteCount) throws IOException { argument
2582 if (skip(byteCount) != byteCount) {
2583 throw new IOException("Couldn't seek up to the byteCount");
2652 public long skip(long 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...]

Completed in 4032 milliseconds