/frameworks/av/media/codecs/m4v_h263/enc/src/ |
D | bitstream_io.cpp | 75 stream->byteCount = 0; in BitStreamCreateEnc() 213 if (stream->byteCount + WORD_SIZE > stream->bufferSize) in BitstreamSaveWord() 217 stream->byteCount += WORD_SIZE; in BitstreamSaveWord() 222 ptr = stream->bitstreamBuffer + stream->byteCount; in BitstreamSaveWord() 236 stream->byteCount += 4; in BitstreamSaveWord() 239 stream->byteCount += 2; in BitstreamSaveWord() 267 if (stream->byteCount + numbyte > stream->bufferSize) in BitstreamSavePartial() 271 stream->byteCount += numbyte; in BitstreamSavePartial() 276 ptr = stream->bitstreamBuffer + stream->byteCount; in BitstreamSavePartial() 280 stream->byteCount += numbyte; in BitstreamSavePartial() [all …]
|
D | combined_encode.cpp | 285 Int byteCount = 0, byteCount1 = 0, bitCount = 0; in EncodeSliceCombinedMode() local 368 byteCount1 = byteCount = bitCount >> 3; /* save the position before GOB header */ in EncodeSliceCombinedMode() 438 byteCount = bitCount >> 3; /* save the state before encoding */ in EncodeSliceCombinedMode() 469 BitstreamRepos(bs1, byteCount, bitCount); /* rewind one MB */ in EncodeSliceCombinedMode() 506 …if (mbnum < nTotalMB - 1 && currVol->stream->byteCount + bs1->byteCount + 1 >= currVol->stream->bu… in EncodeSliceCombinedMode() 509 byteCount = currVol->stream->bufferSize - currVol->stream->byteCount - 1; in EncodeSliceCombinedMode() 511 num_bits = BitstreamGetPos(bs1) - (byteCount << 3); in EncodeSliceCombinedMode() 512 BitstreamRepos(bs1, byteCount, 0); in EncodeSliceCombinedMode() 550 if (currVol->stream->byteCount + bs1->byteCount > currVol->stream->bufferSize) in EncodeSliceCombinedMode() 552 if (byteCount == byteCount1) /* a single GOB bigger than packet size */ in EncodeSliceCombinedMode() [all …]
|
D | bitstream_io.h | 44 PV_STATUS BitstreamRepos(BitstreamEncVideo *bitstream, Int byteCount, Int bitCount);
|
/frameworks/base/core/java/android/content/pm/ |
D | LimitedLengthInputStream.java | 69 public int read(byte[] buffer, int offset, int byteCount) throws IOException { in read() argument 75 ArrayUtils.throwsIfOutOfBounds(arrayLength, offset, byteCount); in read() 77 if (mOffset > Long.MAX_VALUE - byteCount) { in read() 78 throw new IOException("offset out of bounds: " + mOffset + " + " + byteCount); in read() 81 if (mOffset + byteCount > mEnd) { in read() 82 byteCount = (int) (mEnd - mOffset); in read() 85 final int numRead = super.read(buffer, offset, byteCount); in read()
|
/frameworks/base/packages/PrintSpooler/jni/ |
D | com_android_printspooler_util_BitmapSerializeUtils.cpp | 29 static bool writeAllBytes(const int fd, void* buffer, const size_t byteCount) { in writeAllBytes() argument 31 size_t remainingBytes = byteCount; in writeAllBytes() 45 static bool readAllBytes(const int fd, void* buffer, const size_t byteCount) { in readAllBytes() argument 47 size_t remainingBytes = byteCount; in readAllBytes() 62 byteCount); in readAllBytes() 118 size_t byteCount = readInfo.stride * readInfo.height; in readBitmapPixels() local 119 read = readAllBytes(fd, (void*) pixels, byteCount); in readBitmapPixels() 157 size_t byteCount = info.stride * info.height; in writeBitmapPixels() local 158 written = writeAllBytes(fd, (void*) pixels, byteCount); in writeBitmapPixels()
|
/frameworks/base/core/java/android/util/jar/ |
D | StrictJarFile.java | 347 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() argument 352 int r = super.read(buffer, byteOffset, byteCount); in read() 384 public long skip(long byteCount) throws IOException { in skip() argument 385 return Streams.skipByReading(this, byteCount); in skip() 400 @Override public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() argument 403 i = super.read(buffer, byteOffset, byteCount); in read() 465 @Override public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() argument 468 if (byteCount > length) { in read() 469 byteCount = (int) length; in read() 476 int count = IoBridge.read(fd, buffer, byteOffset, byteCount); in read() [all …]
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/libcore/io/ |
D | BridgeBufferIterator.java | 48 public void skip(int byteCount) { in skip() argument 49 int newPosition = mByteBuffer.position() + byteCount; in skip() 55 public void readByteArray(byte[] dst, int dstOffset, int byteCount) { in readByteArray() argument 56 assert dst.length >= dstOffset + byteCount; in readByteArray() local 57 mByteBuffer.get(dst, dstOffset, byteCount); in readByteArray()
|
/frameworks/base/core/java/com/android/internal/util/ |
D | SizedInputStream.java | 49 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() argument 52 } else if (byteCount > mLength) { in read() 53 byteCount = (int) mLength; in read() 56 final int n = mWrapped.read(buffer, byteOffset, byteCount); in read()
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
D | NativeFrame.java | 177 int byteCount = rgbaBitmap.getByteCount(); in setBitmap() local 179 if (!setNativeBitmap(rgbaBitmap, byteCount, bps)) { in setBitmap() 193 int byteCount = result.getByteCount(); in getBitmap() local 195 if (!getNativeBitmap(result, byteCount, bps)) { in getBitmap() 244 private native byte[] getNativeData(int byteCount); in getNativeData() argument 252 private native int[] getNativeInts(int byteCount); in getNativeInts() argument 254 private native float[] getNativeFloats(int byteCount); in getNativeFloats() argument
|
/frameworks/base/core/jni/ |
D | android_ddm_DdmHandleNativeHeap.cpp | 58 ssize_t byteCount; in ReadFile() local 59 while ((byteCount = TEMP_FAILURE_RETRY(read(fd, bytes, sizeof(bytes)))) > 0) { in ReadFile() 60 s.append(bytes, byteCount); in ReadFile()
|
/frameworks/base/core/java/android/os/ |
D | FileBridge.java | 182 public void write(byte[] buffer, int byteOffset, int byteCount) throws IOException { in write() argument 183 ArrayUtils.throwsIfOutOfBounds(buffer.length, byteOffset, byteCount); in write() 185 Memory.pokeInt(mTemp, 4, byteCount, ByteOrder.BIG_ENDIAN); in write() 187 IoBridge.write(mClient, buffer, byteOffset, byteCount); in write()
|
/frameworks/av/media/libaaudio/src/legacy/ |
D | AudioStreamLegacy.cpp | 107 int32_t byteCount = buffer.getFrameCount() * getBytesPerDeviceFrame(); in onMoreData() local 109 buffer.data(), byteCount); in onMoreData() 172 int32_t byteCount = buffer.getFrameCount() * getBytesPerDeviceFrame(); in onMoreData() local 174 buffer.data(), byteCount); in onMoreData()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | SmsMessageBodyTest.java | 427 int byteCount = length * 2; in fillData() local 428 if (byteCount > SmsConstants.MAX_USER_DATA_BYTES) { in fillData() 429 values[0] = (byteCount + SmsConstants.MAX_USER_DATA_BYTES_WITH_HEADER - 1) / in fillData() 432 byteCount) / 2; in fillData() 435 values[2] = (SmsConstants.MAX_USER_DATA_BYTES - byteCount) / 2; in fillData()
|
/frameworks/base/apct-tests/perftests/core/src/android/libcore/ |
D | ZipFilePerfTest.java | 92 int byteCount = (int) Math.min(writeBuffer.length, entrySize - i); in writeEntries() local 93 out.write(writeBuffer, 0, byteCount); in writeEntries()
|
D | ZipFileReadPerfTest.java | 81 int byteCount = (int) Math.min(writeBuffer.length, entrySize - i); in writeEntries() local 82 out.write(writeBuffer, 0, byteCount); in writeEntries()
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
D | SmsMessage.java | 1013 String getUserDataGSM8bit(int byteCount) { in getUserDataGSM8bit() argument 1016 ret = GsmAlphabet.gsm8BitUnpackedToString(mPdu, mCur, byteCount); in getUserDataGSM8bit() 1018 mCur += byteCount; in getUserDataGSM8bit() 1031 String getUserDataUCS2(int byteCount) { in getUserDataUCS2() argument 1035 ret = new String(mPdu, mCur, byteCount, "utf-16"); in getUserDataUCS2() 1041 mCur += byteCount; in getUserDataUCS2() 1052 String getUserDataKSC5601(int byteCount) { in getUserDataKSC5601() argument 1056 ret = new String(mPdu, mCur, byteCount, "KSC5601"); in getUserDataKSC5601() 1062 mCur += byteCount; in getUserDataKSC5601()
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLLogWrapper.java | 930 private ByteBuffer toByteBuffer(int byteCount, Buffer input) { in toByteBuffer() argument 932 boolean convertWholeBuffer = (byteCount < 0); in toByteBuffer() 937 byteCount = input2.limit() - position; in toByteBuffer() 939 result = ByteBuffer.allocate(byteCount).order(input2.order()); in toByteBuffer() 940 for (int i = 0; i < byteCount; i++) { in toByteBuffer() 948 byteCount = (input2.limit() - position) * 2; in toByteBuffer() 950 result = ByteBuffer.allocate(byteCount).order(input2.order()); in toByteBuffer() 952 for (int i = 0; i < byteCount / 2; i++) { in toByteBuffer() 960 byteCount = (input2.limit() - position)* 2; in toByteBuffer() 962 result = ByteBuffer.allocate(byteCount).order(input2.order()); in toByteBuffer() [all …]
|
/frameworks/av/media/img_utils/src/ |
D | TiffIfd.cpp | 312 uint32_t byteCount = stripByteCounts->getCount(); in setStripOffset() local 313 if (offsetsCount != byteCount) { in setStripOffset() 315 __FUNCTION__, offsetsCount, byteCount, mIfdId); in setStripOffset()
|
/frameworks/base/libs/hwui/jni/pdf/ |
D | PdfEditor.cpp | 69 static bool writeAllBytes(const int fd, const void* buffer, const size_t byteCount) { in writeAllBytes() argument 71 size_t remainingBytes = byteCount; in writeAllBytes()
|
/frameworks/rs/toolkit/test/ |
D | IntrinsicBlur.kt | 88 val intrinsicOutArray = ByteArray(bitmap.byteCount) in intrinsicBlur()
|
D | IntrinsicConvolve.kt | 78 val intrinsicOutArray = ByteArray(bitmap.byteCount) in intrinsicConvolve()
|
D | IntrinsicLut.kt | 95 val intrinsicOutArray = ByteArray(bitmap.byteCount) in intrinsicLut()
|
D | IntrinsicLut3d.kt | 95 val intrinsicOutArray = ByteArray(bitmap.byteCount) in intrinsicLut3d()
|
D | IntrinsicColorMatrix.kt | 122 val intrinsicOutArray = ByteArray(bitmap.byteCount) in intrinsicColorMatrix()
|
/frameworks/base/media/java/android/media/ |
D | ExifInterface.java | 4069 long byteCount = 0; in readImageFileDirectory() local 4080 byteCount = (long) numberOfComponents * IFD_FORMAT_BYTES_PER_FORMAT[dataFormat]; in readImageFileDirectory() 4081 if (byteCount < 0 || byteCount > Integer.MAX_VALUE) { in readImageFileDirectory() 4097 if (byteCount > 4) { in readImageFileDirectory() 4130 if (offset + byteCount <= dataInputStream.mLength) { in readImageFileDirectory() 4145 Log.d(TAG, "nextIfdType: " + nextIfdType + " byteCount: " + byteCount); in readImageFileDirectory() 4202 final byte[] bytes = new byte[(int) byteCount]; in readImageFileDirectory() 4936 public void seek(long byteCount) throws IOException { in seek() argument 4937 if (mPosition > byteCount) { in seek() 4943 byteCount -= mPosition; in seek() [all …]
|