/external/chromium_org/third_party/leveldatabase/src/doc/ |
log_format.txt | 12 A record never starts within the last six bytes of a block (since it 13 won't fit). Any leftover bytes here form the trailer, which must 14 consist entirely of zero bytes and must be skipped by readers. 16 Aside: if exactly seven bytes are left in the current block, and a new 18 (which contains zero bytes of user data) to fill up the trailing seven 19 bytes of the block and then emit all of the user data in subsequent 48 block. This will leave six bytes free in the third block, which will
|
/external/chromium_org/third_party/libwebp/webp/ |
mux_types.h | 59 const uint8_t* bytes; member in struct:WebPData 74 free((void*)webp_data->bytes); 84 if (src->bytes != NULL && src->size != 0) { 85 dst->bytes = (uint8_t*)malloc(src->size); 86 if (dst->bytes == NULL) return 0; 87 memcpy((void*)dst->bytes, src->bytes, src->size);
|
/external/chromium_org/third_party/opus/src/silk/ |
API.h | 56 /* Get size in bytes of the Silk encoder state */ 59 opus_int *encSizeBytes /* O Number of bytes in SILK encoder state */ 81 opus_int32 *nBytesOut, /* I/O Number of bytes in payload (input: Max bytes) */ 90 /* Get size in bytes of the Silk decoder state */ 93 opus_int *decSizeBytes /* O Number of bytes in SILK decoder state */ 122 const opus_int nBytesIn, /* I Number of input bytes */
|
/external/chromium_org/third_party/skia/include/core/ |
SkGraphics.h | 36 * Return the max number of bytes that should be used by the font cache. 43 * Specify the max number of bytes that should be used by the font cache. 49 static size_t SetFontCacheLimit(size_t bytes); 52 * Return the number of bytes currently used by the font cache. 97 * Return the max number of bytes that should be used by the thread-local 110 * Specify the max number of bytes that should be used by the thread-local 114 static void SetTLSFontCacheLimit(size_t bytes);
|
/external/chromium_org/third_party/skia/src/opts/ |
memset.arm.S | 12 * code which was specified as a count of bytes. More verbose comments 41 * to the number of bytes desired. */ 65 * the number of bytes desired. */ 82 /* (Optionally) write any unaligned leading bytes. 83 * (0-28 bytes, length in r3) */ 100 /* (Optionally) store any remaining trailing bytes. 101 * (0-30 bytes, length in r2) */
|
/external/elfutils/lib/ |
md5.c | 47 /* This array contains the bytes used to pad the buffer to the next 67 /* Put result from CTX in first 16 bytes following RESBUF. The result 85 /* Process the remaining bytes in the internal buffer and the usual 95 /* Take yet unprocessed bytes into account. */ 96 md5_uint32 bytes = ctx->buflen; local 99 /* Now count remaining bytes. */ 100 ctx->total[0] += bytes; 101 if (ctx->total[0] < bytes) 104 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes [all...] |
/external/kernel-headers/original/linux/ |
if_arcnet.h | 63 uint8_t payload[0]; /* space remaining in packet (504 bytes)*/ 74 uint8_t payload[0]; /* 507 bytes */ 87 uint8_t payload[0]; /* 493 bytes */ 98 uint8_t raw[0]; /* 507 bytes */ 105 * Now, in the real arcnet hardware, the third and fourth bytes are the 114 offset[2]; /* offset bytes (some weird semantics) */ 133 uint8_t raw[0]; /* 508 bytes */
|
/external/libmtp/src/ |
util.c | 40 * This dumps out a number of bytes to a textual, hexadecimal 44 * @param buf a pointer to the buffer containing the bytes to 46 * @param n the number of bytes to dump from this buffer 61 * This dumps out a number of bytes to a textual, hexadecimal 63 * for each line of bytes. It will also print the memory address 67 * @param buf a pointer to the buffer containing the bytes to 69 * @param n the number of bytes to dump from this buffer
|
/external/skia/include/core/ |
SkGraphics.h | 36 * Return the max number of bytes that should be used by the font cache. 43 * Specify the max number of bytes that should be used by the font cache. 49 static size_t SetFontCacheLimit(size_t bytes); 52 * Return the number of bytes currently used by the font cache. 97 * Return the max number of bytes that should be used by the thread-local 110 * Specify the max number of bytes that should be used by the thread-local 114 static void SetTLSFontCacheLimit(size_t bytes);
|
/external/skia/src/opts/ |
memset.arm.S | 12 * code which was specified as a count of bytes. More verbose comments 41 * to the number of bytes desired. */ 65 * the number of bytes desired. */ 82 /* (Optionally) write any unaligned leading bytes. 83 * (0-28 bytes, length in r3) */ 100 /* (Optionally) store any remaining trailing bytes. 101 * (0-30 bytes, length in r2) */
|
/external/webp/include/webp/ |
mux_types.h | 59 const uint8_t* bytes; member in struct:WebPData 74 free((void*)webp_data->bytes); 84 if (src->bytes != NULL && src->size != 0) { 85 dst->bytes = (uint8_t*)malloc(src->size); 86 if (dst->bytes == NULL) return 0; 87 memcpy((void*)dst->bytes, src->bytes, src->size);
|
/frameworks/base/core/java/android/util/ |
Base64InputStream.java | 103 long bytes = Math.min(n, outputEnd-outputStart); local 104 outputStart += bytes; 105 return bytes; 126 int bytes = Math.min(len, outputEnd-outputStart); local 127 System.arraycopy(coder.output, outputStart, b, off, bytes); 128 outputStart += bytes; 129 return bytes;
|
/libcore/luni/src/main/java/java/util/zip/ |
CheckedInputStream.java | 71 * Reads up to {@code byteCount} bytes of data from the underlying input stream, storing it 73 * updated with the bytes read. 74 * Returns the number of bytes actually read or {@code -1} if arrived at the 97 * Skip up to {@code byteCount} bytes of data on the underlying input 98 * stream. Any skipped bytes are added to the running checksum value. 100 * @param byteCount the number of bytes to skip. 102 * @return the number of bytes skipped.
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLEngineResult.java | 66 * There were not enough bytes available in the source buffer to 102 * the number of bytes retrieved from the source buffer(s). 104 * the number of bytes transferred to the destination buffer(s). 149 * Returns the number of bytes retrieved from the source buffer(s). 151 * @return the number of bytes retrieved from the source buffer(s). 158 * Returns the number of bytes transferred to the destination buffer(s). 160 * @return the number of bytes transferred to the destination buffer(s).
|
/libcore/luni/src/test/java/libcore/java/text/ |
OldCollationKeyTest.java | 32 byte[] bytes = key1.toByteArray(); 33 assertTrue("Not enough bytes", bytes.length >= 3); 46 * System.out.println(Integer.toHexString(order)); } for (int i=0; i<bytes.length; 47 * i+=2) { System.out.print(Integer.toHexString(bytes[i]) + 48 * Integer.toHexString(bytes[i+1]) + " "); } System.out.println(); 52 // bytes = collator.getCollationKey("1234567").toByteArray();
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
if_arcnet.h | 63 uint8_t payload[0]; /* space remaining in packet (504 bytes)*/ 74 uint8_t payload[0]; /* 507 bytes */ 87 uint8_t payload[0]; /* 493 bytes */ 98 uint8_t raw[0]; /* 507 bytes */ 105 * Now, in the real arcnet hardware, the third and fourth bytes are the 114 offset[2]; /* offset bytes (some weird semantics) */ 133 uint8_t raw[0]; /* 508 bytes */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_arcnet.h | 63 uint8_t payload[0]; /* space remaining in packet (504 bytes)*/ 74 uint8_t payload[0]; /* 507 bytes */ 87 uint8_t payload[0]; /* 493 bytes */ 98 uint8_t raw[0]; /* 507 bytes */ 105 * Now, in the real arcnet hardware, the third and fourth bytes are the 114 offset[2]; /* offset bytes (some weird semantics) */ 133 uint8_t raw[0]; /* 508 bytes */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_arcnet.h | 63 uint8_t payload[0]; /* space remaining in packet (504 bytes)*/ 74 uint8_t payload[0]; /* 507 bytes */ 87 uint8_t payload[0]; /* 493 bytes */ 98 uint8_t raw[0]; /* 507 bytes */ 105 * Now, in the real arcnet hardware, the third and fourth bytes are the 114 offset[2]; /* offset bytes (some weird semantics) */ 133 uint8_t raw[0]; /* 508 bytes */
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.test.performance_3.6.0.v20091014.jar | |
/external/apache-http/src/org/apache/http/impl/io/ |
ContentLengthInputStream.java | 40 * Stream that cuts off after a specified number of bytes. 75 * The maximum number of bytes that can be read from the stream. Subsequent 95 * @param contentLength The maximum number of bytes that can be read from 156 * @param len The number of bytes to attempt to read. 157 * @return The number of bytes read, or -1 if the end of content has been 181 * Read more bytes from the stream. 183 * @return The number of bytes read into the buffer. 192 * Skips and discards a number of bytes from the input stream. 193 * @param n The number of bytes to skip. 194 * @return The actual number of bytes skipped. <= 0 if no byte [all...] |
/external/chromium_org/tools/memory_watcher/ |
preamble_patcher_with_stub.cc | 43 // NOTE: Stoyan suggests we can write 8 or even 10 bytes atomically using 48 // to have its eip in the middle of the bytes you change while you change 62 int relative_offset; // Windows guarantees int is 4 bytes 75 // bytes for our jmp instruction, so let's find the minimum number of 76 // instructions to get 5 bytes. 84 "in the first 5 bytes."); 99 // Inv: cbPreamble is the number of bytes (at least 5) that we need to take 100 // from the preamble to have whole instructions that are 5 bytes or more 113 // preamble bytes we moved into the stub) and copy it into our preamble-stub. 132 // original function by first executing the first cbPreamble bytes of th [all...] |
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/linux/ |
ml_stored_data.c | 59 MPL_LOGE("Could not allocate buffer of %d bytes - " 67 MPL_LOGE("bytes read (%d) don't match file size (%d)\n", 73 MPL_LOGI("Bytes read = %d", *bytesRead); 101 MPL_LOGE("bytes written (%d) don't match requested length (%d)\n", 106 MPL_LOGI("Bytes written = %d", bytesWritten); 123 * size is 2777 bytes (header and checksum included). 130 * A pointer to an array of bytes to be parsed. 143 MPL_LOGE("Calibration data type 0 must be %d bytes long (got %d)\n", 162 * Test and its size is 36 bytes (header and checksum included). 169 * A pointer to an array of bytes to be parsed [all...] |
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/ |
ml_stored_data.c | 63 MPL_LOGE("Could not allocate buffer of %d bytes - " 71 MPL_LOGE("bytes read (%d) don't match file size (%d)\n", 77 MPL_LOGI("Bytes read = %d", *bytesRead); 105 MPL_LOGE("bytes written (%d) don't match requested length (%d)\n", 110 MPL_LOGI("Bytes written = %d", bytesWritten); 127 * size is 2777 bytes (header and checksum included). 134 * A pointer to an array of bytes to be parsed. 147 MPL_LOGE("Calibration data type 0 must be %d bytes long (got %d)\n", 166 * Test and its size is 36 bytes (header and checksum included). 173 * A pointer to an array of bytes to be parsed [all...] |
/libcore/luni/src/main/native/ |
java_nio_charset_Charsets.cpp | 32 * We could avoid this by keeping the UTF-8 bytes on the native heap until we're done and only 110 ScopedByteArrayRO bytes(env, javaBytes); 111 if (bytes.get() == NULL) { 119 const jbyte* src = &bytes[offset]; 129 ScopedByteArrayRO bytes(env, javaBytes); 130 if (bytes.get() == NULL) { 138 const jbyte* src = &bytes[offset]; 146 * Translates the given characters to US-ASCII or ISO-8859-1 bytes, using the fact that 157 ScopedByteArrayRW bytes(env, javaBytes); 158 if (bytes.get() == NULL) [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
ThresholdingOutputStream.java | 24 * An output stream which triggers an event when a specified number of bytes of
55 * The number of bytes written to the output stream.
73 * @param threshold The number of bytes at which to trigger an event.
100 * Writes <code>b.length</code> bytes from the specified byte array to this
103 * @param b The array of bytes to be written.
116 * Writes <code>len</code> bytes from the specified byte array starting at
121 * @param len The number of bytes to write.
134 * Flushes this output stream and forces any buffered output bytes to be
169 * Returns the threshold, in bytes, at which an event will be triggered.
171 * @return The threshold point, in bytes. [all...] |