HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 626 - 650 of 2455) sorted by null

<<21222324252627282930>>

  /dalvik/dx/src/com/android/dx/util/
ByteArrayAnnotatedOutput.java 63 * {@code >= 8 (if used);} the number of bytes of hex output to use
121 * may be larger than the number of bytes written
134 * bytes at the end).
259 public void write(ByteArray bytes) {
260 int blen = bytes.size();
271 bytes.getBytes(data, writeAt);
276 public void write(byte[] bytes, int offset, int length) {
282 if (((offset | length | end) < 0) || (bytesEnd > bytes.length)) {
283 throw new IndexOutOfBoundsException("bytes.length " +
284 bytes.length + "; "
    [all...]
  /external/aac/libAACdec/src/
aacdecoder.cpp 217 \size Size of the buffer pointed on by buffer in bytes
241 \size Pointer to a buffer receiving the length of the requested anc data element in bytes
486 int bytes = (*count) >> 3; local
573 bytes--;
578 while (bytes > 0) {
580 bytes--;
586 *count = bytes<<3;
670 { /* Skip the remaining extension bytes */
    [all...]
  /external/blktrace/btreplay/
btrecord.c 66 * @bytes: Number of bytes transferred
72 __u32 bytes; member in struct:io_spec
275 .nbytes = spec->bytes,
514 spec->bytes = t.bytes;
521 spec->bytes = be32_to_cpu(t.bytes);
550 (long long unsigned)spec->bytes / 512LLU,
  /external/boringssl/src/crypto/rsa/
rsa.c 332 /* len is the number of bytes of |bytes| which are valid. */
334 /* bytes contains the DER bytes. */
335 uint8_t bytes[19]; member in struct:pkcs1_sig_prefix
406 const uint8_t* prefix = sig_prefix->bytes;
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_modulegraph.py 15 bytes
17 bytes = str variable
48 self.assertTrue(isinstance(b, bytes))
162 self.assertIsInstance(content, bytes)
    [all...]
  /external/clang/test/Analysis/
bstring.c 471 char *bytes = malloc(sizeof(char) * (length + 1)); local
472 memcpy(bytes, input, length);
473 char x = bytes[0]; // no warning
474 free(bytes);
  /external/dbus/dbus/
dbus-sysdeps-util-unix.c 255 int bytes; local
274 bytes = _dbus_string_get_length (&pid);
275 if (_dbus_pipe_write (print_pid_pipe, &pid, 0, bytes, error) != bytes)
281 "Printing message bus PID: did not write enough bytes\n");
dbus-sysdeps-util-win.c 192 int bytes; local
210 bytes = _dbus_string_get_length (&pid);
211 if (_dbus_pipe_write (print_pid_pipe, &pid, 0, bytes, error) != bytes)
217 "Printing message bus PID: did not write enough bytes\n");
    [all...]
dbus-transport.c 1018 _dbus_verbose (" %d unused bytes sent to message loader\n",
1033 const DBusString *bytes; local
1044 &bytes);
1047 if (!_dbus_string_copy (bytes, 0, buffer, _dbus_string_get_length (buffer)))
1050 _dbus_verbose (" %d unused bytes sent to message loader\n",
1068 _dbus_verbose ("Not enough memory to transfer unused bytes from auth conversation\n");
    [all...]
  /external/deqp/framework/delibs/dethread/
deThreadTest.c 50 deUint8 bytes[16]; member in struct:ThreadData3_s
58 for (ndx = 0; ndx < (int)DE_LENGTH_OF_ARRAY(data->bytes); ndx++)
59 DE_TEST_ASSERT(data->bytes[ndx] == 0);
61 for (ndx = 0; ndx < (int)DE_LENGTH_OF_ARRAY(data->bytes); ndx++)
62 data->bytes[ndx] = 0xff;
132 for (ndx = 0; ndx < (int)DE_LENGTH_OF_ARRAY(data.bytes); ndx++)
133 DE_TEST_ASSERT(data.bytes[ndx] == 0xff);
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArrayAnnotatedOutput.java 60 * {@code >= 8 (if used);} the number of bytes of hex output to use
118 * may be larger than the number of bytes written
131 * bytes at the end).
256 public void write(ByteArray bytes) {
257 int blen = bytes.size();
268 bytes.getBytes(data, writeAt);
273 public void write(byte[] bytes, int offset, int length) {
279 if (((offset | length | end) < 0) || (bytesEnd > bytes.length)) {
280 throw new IndexOutOfBoundsException("bytes.length " +
281 bytes.length + "; "
    [all...]
  /external/dhcpcd-6.8.2/
dhcp-common.c 433 size_t bytes; local
436 bytes = 0;
451 bytes += 2;
478 bytes += 2;
492 bytes += 4;
502 bytes++;
522 return (ssize_t)bytes;
580 ssize_t bytes = 0, sl; local
672 bytes++;
718 bytes += len
    [all...]
  /external/e2fsprogs/lib/ext2fs/
icount.c 230 size_t bytes; local
257 bytes = (size_t) (icount->size * sizeof(struct ext2_icount_el));
259 printf("Icount allocated %u entries, %d bytes.\n",
260 icount->size, bytes);
266 memset(icount->list, 0, bytes);
  /external/elfutils/libasm/
libasmP.h 106 /* Currently used number of bytes in the block. */
109 /* Number of bytes allocated. */
123 char bytes[flexarr_size]; member in struct:AsmScn::FillPattern
262 /* Ensure there are at least LEN bytes available in the output buffer
  /external/flac/libFLAC/
bitreader.c 50 /* also, some sections currently only have fast versions for 4 or 8 bytes per word */
54 /* SWAP_BE_WORD_TO_HOST swaps bytes in a uint32_t (which is always big-endian) if necessary to match host byte order */
67 * But to be practical it should be at least 1K bytes.
79 /* any incomplete word at the tail will be left-justified, and bytes from the read callback are added on the right */
83 unsigned bytes; /* # of bytes in incomplete word at buffer[words] */ member in struct:FLAC__BitReader
124 size_t bytes; local
130 end = br->words + (br->bytes? 1:0);
140 bytes = (br->capacity - br->words) * FLAC__BYTES_PER_WORD - br->bytes;
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
DoublesTest.java 327 List<Byte> bytes = Arrays.asList((byte) 0, (byte) 1, (byte) 2); local
334 assertTrue(Arrays.equals(array, Doubles.toArray(bytes)));
FloatsTest.java 317 List<Byte> bytes = Arrays.asList((byte) 0, (byte) 1, (byte) 2); local
324 assertTrue(Arrays.equals(array, Floats.toArray(bytes)));
IntsTest.java 307 List<Byte> bytes = Arrays.asList((byte) 0, (byte) 1, (byte) 2); local
314 assertTrue(Arrays.equals(array, Ints.toArray(bytes)));
ShortsTest.java 315 List<Byte> bytes = Arrays.asList((byte) 0, (byte) 1, (byte) 2); local
322 assertTrue(Arrays.equals(array, Shorts.toArray(bytes)));
  /external/harfbuzz_ng/util/
options.cc 649 unsigned int bytes = strlen (buf); local
650 if (bytes && buf[bytes - 1] == '\n') {
651 bytes--;
652 g_string_append_len (gs, buf, bytes);
655 g_string_append_len (gs, buf, bytes);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UBiDiProps.java 40 ByteBuffer bytes=ICUBinary.getData(DATA_FILE_NAME); local
41 readData(bytes);
44 private void readData(ByteBuffer bytes) throws IOException {
46 ICUBinary.readHeader(bytes, FMT, new IsAcceptable());
50 count=bytes.getInt();
58 indexes[i]=bytes.getInt();
62 trie=Trie2_16.createFromSerialized(bytes);
66 throw new IOException(DATA_FILE_NAME+": not enough bytes for the trie");
68 // skip padding after trie bytes
69 ICUBinary.skipBytes(bytes, expectedTrieLength-trieLength)
    [all...]
  /external/icu/icu4c/source/common/
ucnvbocu.cpp 49 * C0 control codes and space are encoded with their US-ASCII bytes.
63 /* number of lead bytes */
70 /* number of trail bytes */
79 /* number of lead bytes for positive and negative 2/3/4-byte sequences */
144 * but are also used as trail bytes in difference encoding
153 * External byte values that are illegal as trail bytes are mapped to -1.
220 /** Is a diff value encodable in two bytes? */
268 * Encode a difference -0x10ffff..0x10ffff in 1..4 bytes
298 /* two bytes */
308 /* three bytes */
948 uint8_t *bytes; local
1170 uint8_t *bytes; local
    [all...]
  /external/icu/icu4c/source/samples/ucnv/
convsamp.cpp 169 len will contain the number of bytes in target[] which were
188 'len' returns the number of OUTPUT bytes resulting from the
263 The 'buffersize' is in bytes of input.
266 expected for a given number of input bytes.
272 UChars as the input buffer has bytes.
276 chars as bytes are needed.
316 printf("input bytes %d / min chars %d = %d UChars\n",
325 // Convert bytes to unicode
418 fprintf(stderr, " Couldn't allocate %d bytes for freq counter\n", sizeof(CharFreqInfo)*charCount);
433 printf("input bytes %d / min chars %d = %d UChars\n"
615 char bytes[100]; local
709 char bytes[100]; local
    [all...]
  /external/icu/icu4c/source/tools/makeconv/
gencnvex.c 35 const uint8_t *bytes, int32_t length);
107 const uint8_t *bytes, int32_t length) {
281 /* return the number of bytes that should have been written */
416 uint8_t *bytes; local
426 bytes=UCM_GET_BYTES(table, m);
427 low=bytes[unitIndex];
433 bytes=UCM_GET_BYTES(table, m);
434 high=bytes[unitIndex];
473 bytes=UCM_GET_BYTES(table, m);
474 high=bytes[unitIndex]
634 uint8_t *bytes, *resultBytes; local
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
pkg_genc.c 116 /* hardware, so we use .balign 16 which always means 16 bytes. */
161 /* 16 bytes alignment. */
171 /* 16 bytes alignment for sun-x86. */
213 /* align 16 bytes */
405 " const char *bytes; \n"
432 " uint8_t bytes[%ld]; \n"
654 char bytes[2048]; member in union:__anon13124
706 length=T_FileStream_read(in, buffer.bytes, sizeof(buffer.bytes));
751 pHeader=(const IMAGE_FILE_HEADER *)buffer.bytes;
    [all...]

Completed in 561 milliseconds

<<21222324252627282930>>