HomeSort by relevance Sort by last modified time
    Searched full:bytes (Results 826 - 850 of 10215) sorted by null

<<31323334353637383940>>

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_mb_offset.h 71 x5 = x5 + x10; /* accumulate low bytes */
73 x4 = x4 + ((uint32)x10 >> 8); /* accumulate high bytes */
74 x5 = x5 + x11; /* accumulate low bytes */
76 x4 = x4 + ((uint32)x11 >> 8); /* accumulate high bytes */
97 x5 = x5 + x10; /* accumulate low bytes */
99 x4 = x4 + ((uint32)x10 >> 8); /* accumulate high bytes */
100 x5 = x5 + x11; /* accumulate low bytes */
102 x4 = x4 + ((uint32)x11 >> 8); /* accumulate high bytes */
105 x10 = x5 - (x4 << 8); /* extract low bytes */
106 x10 = x10 + x4; /* add with high bytes */
    [all...]
  /dalvik/vm/jdwp/
ExpandBuf.cpp 131 * Append two big-endian bytes.
141 * Append four big-endian bytes.
151 * Append eight big-endian bytes.
165 * they can be null-terminated (either they don't have null bytes or they
166 * have stored null bytes in a multi-byte encoding).
  /external/blktrace/
blkiomon.h 106 minmax_print(fp, "sizes read (bytes)", &p->size_r);
107 minmax_print(fp, "sizes write (bytes)", &p->size_w);
110 minmax_print(fp, "throughput read (bytes/msec)", &p->thrput_r);
111 minmax_print(fp, "throughput write (bytes/msec)", &p->thrput_w);
112 histlog2_print(fp, "sizes histogram (bytes)", p->size_hist, &size_hist);
  /external/chromium/android/net/
android_network_library_impl.cc 16 // Convert X509 chain to DER format bytes.
38 jbyte* bytes = env->GetByteArrayElements(byte_array, NULL); local
39 DCHECK(bytes);
40 size_t copied = cert_chain[i].copy(reinterpret_cast<char*>(bytes), len);
42 env->ReleaseByteArrayElements(byte_array, bytes, 0);
  /external/chromium/chrome/browser/safe_browsing/
bloom_filter.h 14 // n * 8 bytes of hash keys
15 // Remaining bytes are the filter data.
56 // hash request rate (in bytes).
60 // (in bytes).
99 int byte_size_; // size in bytes
  /external/chromium/net/base/
io_buffer.h 77 void DidConsume(int bytes);
79 // Returns the number of unconsumed bytes.
82 // Returns the number of consumed bytes.
85 // Seeks to an arbitrary point in the buffer. The notion of bytes consumed
87 void SetOffset(int bytes);
  /external/elfutils/lib/
sha1.h 59 initialization function update the context for the next LEN bytes
66 initialization function update the context for the next LEN bytes
72 /* Process the remaining bytes in the buffer and put result from CTX
73 in first 20 bytes following RESBUF. The result is always in little
82 /* Put result from CTX in first 20 bytes following RESBUF. The result is
  /external/freetype/src/cff/
cfftypes.h 51 /* off_size :: The size in bytes of object offsets in index. */
54 /* bytes. */
61 /* bytes :: If the index is loaded in memory, its bytes. */
73 FT_Byte* bytes; member in struct:CFF_IndexRec_
  /external/icu4c/common/
ucnv_cnv.c 48 const char *bytes, int32_t length,
56 /* write bytes */
59 *t++=*bytes++;
65 *t++=*bytes++;
79 *t++=(uint8_t)*bytes++;
  /external/mesa3d/src/glsl/glcpp/
glcpp.c 52 ssize_t bytes; local
63 bytes = read (fd, text + total_read, CHUNK);
64 if (bytes < 0) {
71 if (bytes == 0) {
75 total_read += bytes;
  /external/qemu/audio/
wavcapture.c 7 int bytes; member in struct:__anon10557
36 uint32_t datalen = wav->bytes;
59 wav->bytes += size;
74 monitor_printf(cur_mon, "Capturing audio(%d,%d,%d) to %s: %d bytes\n",
76 path ? path : "<not available>", wav->bytes);
  /external/qemu/distrib/sdl-1.2.12/src/video/gapi/
SDL_gapivideo.h 36 long cbxPitch; // number of bytes to move right one x pixel - can be negative.
37 long cbyPitch; // number of bytes to move down one y pixel - can be negative.
151 int dstLineStep; // in bytes
152 int dstPixelStep; // in bytes
153 int startOffset; // in bytes
  /external/regex-re2/util/
benchmark.cc 34 static int64 bytes; variable
40 bytes = x;
67 bytes = 0;
121 if(ns > 0 && bytes > 0)
122 snprintf(mb, sizeof mb, "\t%7.2f MB/s", ((double)bytes/1e6)/((double)ns/1e9));
  /external/skia/include/core/
SkWriter32.h 80 // write count bytes (must be a multiple of 4)
86 * Write size bytes from values. size must be a multiple of 4, though
127 // read from the stream, and write up to length bytes. Return the actual
128 // number of bytes written.
144 Block* newBlock(size_t bytes);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
CharEncodedValue.java 59 byte[] bytes = EncodedValueUtils.encodeUnsignedIntegralValue(value);
62 out.annotate(1, "value_type=" + ValueType.VALUE_CHAR.name() + ",value_arg=" + (bytes.length - 1));
65 out.annotate(bytes.length, "value: 0x" + Integer.toHexString(value) + " '" + c[0] + "'");
68 out.writeByte(ValueType.VALUE_CHAR.value | ((bytes.length - 1) << 5));
69 out.write(bytes);
DoubleEncodedValue.java 60 byte[] bytes = EncodedValueUtils.encodeRightZeroExtendedValue(Double.doubleToRawLongBits(value));
63 out.annotate(1, "value_type=" + ValueType.VALUE_DOUBLE.name() + ",value_arg=" + (bytes.length - 1));
64 out.annotate(bytes.length, "value: " + value);
67 out.writeByte(ValueType.VALUE_DOUBLE.value | ((bytes.length - 1) << 5));
68 out.write(bytes);
EnumEncodedValue.java 63 byte[] bytes = EncodedValueUtils.encodeUnsignedIntegralValue(value.getIndex());
66 out.annotate(1, "value_type=" + ValueType.VALUE_ENUM.name() + ",value_arg=" + (bytes.length - 1));
67 out.annotate(bytes.length, "value: " + value.getFieldString());
70 out.writeByte(ValueType.VALUE_ENUM.value | ((bytes.length - 1) << 5));
71 out.write(bytes);
FieldEncodedValue.java 63 byte[] bytes = EncodedValueUtils.encodeUnsignedIntegralValue(value.getIndex());
66 out.annotate(1, "value_type=" + ValueType.VALUE_FIELD.name() + ",value_arg=" + (bytes.length - 1));
67 out.annotate(bytes.length, "value: " + value.getFieldString());
70 out.writeByte(ValueType.VALUE_FIELD.value | ((bytes.length - 1) << 5));
71 out.write(bytes);
FloatEncodedValue.java 60 byte[] bytes = EncodedValueUtils.encodeRightZeroExtendedValue(((long)Float.floatToRawIntBits(value)) << 32);
63 out.annotate(1, "value_type=" + ValueType.VALUE_FLOAT.name() + ",value_arg=" + (bytes.length - 1));
64 out.annotate(bytes.length, "value: " + value);
67 out.writeByte(ValueType.VALUE_FLOAT.value | ((bytes.length - 1) << 5));
68 out.write(bytes);
IntEncodedValue.java 59 byte[] bytes = EncodedValueUtils.encodeSignedIntegralValue(value);
62 out.annotate(1, "value_type=" + ValueType.VALUE_INT.name() + ",value_arg=" + (bytes.length - 1));
63 out.annotate(bytes.length, "value: 0x" + Integer.toHexString(value) + " (" + value + ")");
66 out.writeByte(ValueType.VALUE_INT.value | ((bytes.length - 1) << 5));
67 out.write(bytes);
LongEncodedValue.java 59 byte[] bytes = EncodedValueUtils.encodeSignedIntegralValue(value);
62 out.annotate(1, "value_type=" + ValueType.VALUE_LONG.name() + ",value_arg=" + (bytes.length - 1));
63 out.annotate(bytes.length, "value: 0x" + Long.toHexString(value) + " (" + value + ")");
66 out.writeByte(ValueType.VALUE_LONG.value | ((bytes.length - 1) << 5));
67 out.write(bytes);
MethodEncodedValue.java 63 byte[] bytes = EncodedValueUtils.encodeUnsignedIntegralValue(value.getIndex());
66 out.annotate(1, "value_type=" + ValueType.VALUE_METHOD.name() + ",value_arg=" + (bytes.length - 1));
67 out.annotate(bytes.length, "value: " + value.getMethodString());
70 out.writeByte(ValueType.VALUE_METHOD.value | ((bytes.length - 1) << 5));
71 out.write(bytes);
ShortEncodedValue.java 59 byte[] bytes = EncodedValueUtils.encodeSignedIntegralValue(value);
62 out.annotate(1, "value_type=" + ValueType.VALUE_SHORT.name() + ",value_arg=" + (bytes.length - 1));
63 out.annotate(bytes.length, "value: 0x" + Integer.toHexString(value) + " (" + value + ")");
66 out.writeByte(ValueType.VALUE_SHORT.value | ((bytes.length - 1) << 5));
67 out.write(bytes);
StringEncodedValue.java 64 byte[] bytes = EncodedValueUtils.encodeUnsignedIntegralValue(value.getIndex());
67 out.annotate(1, "value_type=" + ValueType.VALUE_STRING.name() + ",value_arg=" + (bytes.length - 1));
68 out.annotate(bytes.length, "value: \"" + Utf8Utils.escapeString(value.getStringValue()) + "\"");
71 out.writeByte(ValueType.VALUE_STRING.value | ((bytes.length - 1) << 5));
72 out.write(bytes);
TypeEncodedValue.java 63 byte[] bytes = EncodedValueUtils.encodeUnsignedIntegralValue(value.getIndex());
66 out.annotate(1, "value_type=" + ValueType.VALUE_TYPE.name() + ",value_arg=" + (bytes.length - 1));
67 out.annotate(bytes.length, "value: " + value.getTypeDescriptor());
70 out.writeByte(ValueType.VALUE_TYPE.value | ((bytes.length - 1) << 5));
71 out.write(bytes);

Completed in 907 milliseconds

<<31323334353637383940>>