/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
ByteArrayInput.java | 289 int byteCount = cursor - startPosition; 294 return Utf8Utils.utf8BytesToString(data, startPosition, byteCount);
|
/external/sonivox/arm-fm-22k/lib_src/ |
eas_imaadpcm.c | 126 pState->bytesLeft = pState->byteCount = (EAS_I32) pState->bytesLeftLoop; 321 if ((temp > pState->byteCount) && (pState->loopSamples != 0))
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_imaadpcm.c | 126 pState->bytesLeft = pState->byteCount = (EAS_I32) pState->bytesLeftLoop; 321 if ((temp > pState->byteCount) && (pState->loopSamples != 0))
|
/external/sonivox/arm-wt-22k/lib_src/ |
eas_imaadpcm.c | 126 pState->bytesLeft = pState->byteCount = (EAS_I32) pState->bytesLeftLoop; 321 if ((temp > pState->byteCount) && (pState->loopSamples != 0))
|
/libcore/crypto/src/main/java/org/conscrypt/ |
OpenSSLSocketImpl.java | 681 public int read(byte[] buf, int offset, int byteCount) throws IOException { 685 Arrays.checkOffsetAndCount(buf.length, offset, byteCount); 686 if (byteCount == 0) { 690 OpenSSLSocketImpl.this, buf, offset, byteCount, getSoTimeout()); 723 public void write(byte[] buf, int offset, int byteCount) throws IOException { 727 Arrays.checkOffsetAndCount(buf.length, offset, byteCount); 728 if (byteCount == 0) { 732 OpenSSLSocketImpl.this, buf, offset, byteCount, writeTimeoutMilliseconds); [all...] |
/libcore/dex/src/main/java/com/android/dex/ |
TableOfContents.java | 152 section.byteCount = end - section.off; 215 public int byteCount = 0;
|
/libcore/luni/src/main/native/ |
java_lang_Character.cpp | 53 int32_t byteCount = u_charName(codePoint, nameType, &buf[0], sizeof(buf), &status); 54 return (U_FAILURE(status) || byteCount == 0) ? NULL : env->NewStringUTF(buf);
|
/external/chromium_org/third_party/skia/src/utils/ |
SkSHA1.cpp | 24 SkSHA1::SkSHA1() : byteCount(0) { 34 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F); 58 this->byteCount += inputLength; 64 encode(bits, this->byteCount << 3); 67 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F);
|
/external/skia/src/utils/ |
SkSHA1.cpp | 24 SkSHA1::SkSHA1() : byteCount(0) { 34 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F); 58 this->byteCount += inputLength; 64 encode(bits, this->byteCount << 3); 67 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
tscoll.cpp | 381 int32_t i, byteCount; 382 const uint8_t *bytes = source.getByteArray(byteCount); 387 for (i = 0; i < byteCount; i += 1)
|
/external/icu4c/test/intltest/ |
tscoll.cpp | 385 int32_t i, byteCount; 386 const uint8_t *bytes = source.getByteArray(byteCount); 391 for (i = 0; i < byteCount; i += 1)
|
/frameworks/base/core/jni/ |
android_hardware_camera2_CameraMetadata.cpp | 256 jsize byteCount = entry.count * tagSize; 257 jbyteArray byteArray = env->NewByteArray(byteCount); 262 memcpy(arrayWriter.get(), entry.data.u8, byteCount);
|
/libcore/luni/src/main/java/java/nio/ |
FileChannelImpl.java | 132 private static long translateLockLength(long byteCount) { 134 return (byteCount == Long.MAX_VALUE) ? 0 : byteCount;
|
/dalvik/dx/src/com/android/dx/io/ |
DexIndexPrinter.java | 46 + " byteCount=" + Integer.toHexString(section.byteCount));
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
BitVector.h | 186 static size_t byteCount(size_t bitCount)
|
/external/chromium_org/third_party/freetype/src/cff/ |
cf2hints.h | 79 size_t byteCount;
|
/external/freetype/src/cff/ |
cf2hints.h | 79 size_t byteCount;
|
/external/chromium_org/third_party/skia/src/core/ |
SkMetaData.cpp | 107 void SkMetaData::setData(const char name[], const void* data, size_t byteCount) { 108 (void)this->set(name, data, sizeof(char), kData_Type, byteCount);
|
/external/skia/src/core/ |
SkMetaData.cpp | 107 void SkMetaData::setData(const char name[], const void* data, size_t byteCount) { 108 (void)this->set(name, data, sizeof(char), kData_Type, byteCount);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
SmsMessage.java | 714 * @param byteCount the number of bytes in the user data payload 717 String getUserDataUCS2(int byteCount) { 721 ret = new String(mPdu, mCur, byteCount, "utf-16"); 727 mCur += byteCount; 735 * @param byteCount the number of bytes in the user data payload 738 String getUserDataKSC5601(int byteCount) { 742 ret = new String(mPdu, mCur, byteCount, "KSC5601"); 748 mCur += byteCount; [all...] |
/frameworks/base/opengl/java/android/opengl/ |
GLLogWrapper.java | 930 private ByteBuffer toByteBuffer(int byteCount, Buffer input) { 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).order(input2.order()) [all...] |
/external/yaffs2/yaffs2/utils/ |
mkyaffs2image.c | 217 pt->t.byteCount = SWAP32(pt->t.byteCount); 236 t.byteCount = nBytes;
|
/libcore/luni/src/main/java/java/io/ |
ObjectInputStream.java | 534 @Override public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { 535 Arrays.checkOffsetAndCount(buffer.length, byteOffset, byteCount); 536 if (byteCount == 0) { 540 return primitiveData.read(buffer, byteOffset, byteCount); [all...] |
/development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/ |
ImageCache.java | 520 int byteCount = width * height * getBytesPerPixel(candidate.getConfig()); 521 return byteCount <= candidate.getAllocationByteCount();
|
/external/yaffs2/yaffs2/ |
yaffs_guts.h | 137 unsigned byteCount:10; 175 unsigned byteCount; /* Only valid for data chunks */
|