HomeSort by relevance Sort by last modified time
    Searched defs:byteCount (Results 1 - 25 of 28) sorted by null

1 2

  /external/yaffs2/yaffs2/
yaffs_packedtags1.h 11 unsigned byteCount:10;
yaffs_packedtags2.h 13 unsigned byteCount;
yaffs_guts.h 137 unsigned byteCount:10;
175 unsigned byteCount; /* Only valid for data chunks */
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/digests/
GeneralDigest.java 16 private long byteCount;
38 byteCount = t.byteCount;
52 byteCount++;
80 byteCount += xBuf.length;
97 long bitLength = (byteCount << 3);
116 byteCount = 0;
  /libcore/luni/src/test/java/org/apache/harmony/luni/platform/
OSMemoryTest.java 27 int byteCount = 32;
28 int ptr = OSMemory.malloc(byteCount);
34 OSMemory.memset(ptr, (byte) 0, byteCount);
35 assertBytesEqual((byte) 0, ptr, byteCount);
37 OSMemory.memset(ptr, (byte) 1, byteCount);
38 assertBytesEqual((byte) 1, ptr, byteCount);
44 void assertBytesEqual(byte value, int ptr, int byteCount) {
45 for (int i = 0; i < byteCount; ++i) {
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERObjectIdentifier.java 190 int byteCount = (fieldValue.bitLength()+6)/7;
191 if (byteCount == 0)
198 byte[] tmp = new byte[byteCount];
199 for (int i = byteCount-1; i >= 0; i--)
204 tmp[byteCount-1] &= 0x7f;
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
combined_encode.cpp 285 Int byteCount = 0, byteCount1 = 0, bitCount = 0;
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, 0)
    [all...]
mp4lib_int.h 32 Int byteCount; /*how many bytes already encoded*/
  /libcore/luni/src/main/java/java/util/zip/
DeflaterInputStream.java 144 int byteCount = in.read(buf);
145 if (byteCount == -1) {
148 def.setInput(buf, 0, byteCount);
151 int byteCount = def.deflate(buf, 0, Math.min(buf.length, len - count));
152 if (byteCount == -1) {
155 System.arraycopy(buf, 0, b, off + count, byteCount);
156 count += byteCount;
  /libcore/luni/src/main/native/
java_net_InetAddress.cpp 237 size_t byteCount = chars.size();
238 LocalArray<INET6_ADDRSTRLEN> bytes(byteCount + 1);
243 if (ipString[0] == '[' && ipString[byteCount - 1] == ']' && strchr(ipString, ':') != NULL) {
244 memmove(ipString, ipString + 1, byteCount - 2);
245 ipString[byteCount - 2] = '\0';
java_util_zip_Inflater.cpp 84 ssize_t byteCount;
85 while ((byteCount = TEMP_FAILURE_RETRY(read(fd, dst, len))) > 0) {
86 dst += byteCount;
87 len -= byteCount;
88 totalByteCount += byteCount;
90 if (byteCount == -1) {
org_apache_harmony_xml_ExpatParser.cpp 1008 const char* bytes, size_t byteOffset, size_t byteCount, jboolean isFinal) {
1013 if (!XML_Parse(parser, bytes + byteOffset, byteCount, isFinal) && !env->ExceptionCheck()) {
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
RawImage.java 154 int byteCount = this.bpp >> 3; // bpp is in bits, we want bytes to match our array
160 this.data, (y * w + x) * byteCount,
161 rotated.data, ((w-x-1) * h + y) * byteCount,
162 byteCount);
  /external/chromium/third_party/icu/source/test/cintltst/
ucsdetst.c 71 int32_t byteCount = preflight(src, length, cnv);
73 char *bytes = NEW_ARRAY(char, byteCount + 1);
74 char *dest = bytes, *destLimit = bytes + byteCount + 1;
79 *byteLength = byteCount;
  /external/chromium/third_party/icu/source/test/intltest/
tscoll.cpp 379 int32_t i, byteCount;
380 const uint8_t *bytes = source.getByteArray(byteCount);
385 for (i = 0; i < byteCount; i += 1)
  /external/icu4c/test/cintltst/
ucsdetst.c 73 int32_t byteCount = preflight(src, length, cnv);
75 char *bytes = NEW_ARRAY(char, byteCount + 1);
76 char *dest = bytes, *destLimit = bytes + byteCount + 1;
81 *byteLength = byteCount;
  /external/icu4c/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)
  /frameworks/base/telephony/java/com/android/internal/telephony/
GsmAlphabet.java 239 int byteCount = ((septetCount * 7) + 7) / 8;
240 byte[] ret = new byte[byteCount + 1]; // Include space for one byte length prefix.
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTest.java 230 int byteCount = bytes.length() / 2;
231 byte[] array = new byte[byteCount];
232 for (int i = 0; i < byteCount; i++) {
  /external/sonivox/arm-fm-22k/lib_src/
eas_pcmdata.h 84 EAS_I32 byteCount; /* size of file */
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_pcmdata.h 84 EAS_I32 byteCount; /* size of file */
  /external/sonivox/arm-wt-22k/lib_src/
eas_pcmdata.h 84 EAS_I32 byteCount; /* size of file */
  /external/webkit/WebCore/platform/cf/
BinaryPropertyList.cpp 124 ObjectReference byteCount() const { return m_byteCount; }
489 , m_offsetTableStart(headerSize + m_plan.byteCount() + m_plan.objectReferenceCount() * m_objectReferenceSize)
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 288 long byteCount = fileSystem.read(fd.descriptor, bytes, 0, 1);
289 return byteCount == -1 ? -1 : bytes[0] & 0xff;
    [all...]
  /frameworks/base/core/java/android/webkit/
CookieManager.java 637 int byteCount = 0;
651 byteCount += cookie.domain.length()
669 Log.v(LOGTAG, count + " cookies used " + byteCount
    [all...]

Completed in 704 milliseconds

1 2