HomeSort by relevance Sort by last modified time
    Searched refs:bytes (Results 701 - 725 of 6645) sorted by null

<<21222324252627282930>>

  /prebuilts/go/linux-x86/src/bytes/
export_test.go 5 package bytes package
  /prebuilts/go/linux-x86/src/encoding/binary/
example_test.go 8 "bytes"
15 buf := new(bytes.Buffer)
21 fmt.Printf("% x", buf.Bytes())
26 buf := new(bytes.Buffer)
38 fmt.Printf("%x", buf.Bytes())
45 buf := bytes.NewReader(b)
  /prebuilts/go/linux-x86/test/bench/go1/
gzip_test.go 10 "bytes"
18 jsongunz = bytes.Repeat(jsonbytes, 10)
23 var buf bytes.Buffer
27 jsongz = buf.Bytes()
41 r, err := gz.NewReader(bytes.NewBuffer(jsongz))
  /system/update_engine/payload_consumer/
file_writer.cc 31 bool DirectFileWriter::Write(const void* bytes, size_t count) {
33 const char* char_bytes = reinterpret_cast<const char*>(bytes);
  /toolchain/binutils/binutils-2.25/bfd/
aout-cris.c 220 struct reloc_ext_external *bytes,
230 cache_ptr->address = (GET_SWORD (abfd, bytes->r_address));
233 r_index = (bytes->r_index[2] << 16)
234 | (bytes->r_index[1] << 8)
235 | bytes->r_index[0];
236 r_extern = (0 != (bytes->r_type[0] & RELOC_EXT_BITS_EXTERN_LITTLE));
237 r_type = ((bytes->r_type[0]) >> RELOC_EXT_BITS_TYPE_SH_LITTLE)
264 MOVE_ADDRESS (GET_SWORD (abfd, bytes->r_addend));
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/mips/
mixed-micromips.s 14 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
31 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
branch-misc-4.s 13 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
26 # Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
cortex-a8-fix-b-rel.s 6 @ expansion 32 bytes
19 @ expansion 128 bytes
cortex-a8-fix-b.s 6 @ expansion 32 bytes
19 @ expansion 128 bytes
cortex-a8-fix-bcc-rel.s 6 @ expansion 32 bytes
19 @ expansion 128 bytes
cortex-a8-fix-bcc.s 6 @ expansion 32 bytes
19 @ expansion 128 bytes
cortex-a8-fix-bl-rel.s 6 @ expansion 32 bytes
19 @ expansion 128 bytes
cortex-a8-fix-bl.s 6 @ expansion 32 bytes
19 @ expansion 128 bytes
cortex-a8-fix-blx-rel.s 6 @ expansion 32 bytes
19 @ expansion 128 bytes
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
multibss1.d 6 # hppa64 default script add 16 bytes at start of .data giving 0x500010 p_memsz
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-tic6x/
attr-wchar-01.d 11 Tag_ABI_wchar_t: 2 bytes
attr-wchar-02.d 11 Tag_ABI_wchar_t: 4 bytes
attr-wchar-10.d 11 Tag_ABI_wchar_t: 2 bytes
attr-wchar-11.d 11 Tag_ABI_wchar_t: 2 bytes
attr-wchar-20.d 11 Tag_ABI_wchar_t: 4 bytes
attr-wchar-22.d 11 Tag_ABI_wchar_t: 4 bytes
  /external/chromium-trace/catapult/tracing/tracing_examples/
string_convert.js 11 /* Array of bytes to base64 string decoding */
96 nPart > 251 && nPart < 254 && nIdx + 5 < nLen ? /* six bytes */
99 : nPart > 247 && nPart < 252 && nIdx + 4 < nLen ? /* five bytes */
101 : nPart > 239 && nPart < 248 && nIdx + 3 < nLen ? /* four bytes */
103 : nPart > 223 && nPart < 240 && nIdx + 2 < nLen ? /* three bytes */
105 : nPart > 191 && nPart < 224 && nIdx + 1 < nLen ? /* two bytes */
137 /* two bytes */
141 /* three bytes */
146 /* four bytes */
152 /* five bytes */
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
ByteSourceTest.java 61 private static final byte[] bytes = newPreFilledByteArray(10000); field in class:ByteSourceTest
67 source = new TestByteSource(bytes);
81 assertArrayEquals(bytes, out.toByteArray());
85 assertEquals(bytes.length, source.size());
89 assertEquals(bytes.length, new TestByteSource(bytes, SKIP_THROWS).size());
92 assertEquals(bytes.length, new TestByteSource(bytes, AVAILABLE_ALWAYS_ZERO).size());
98 assertEquals(bytes.length, source.copyTo(out));
101 assertArrayEquals(bytes, out.toByteArray())
    [all...]
  /external/icu/icu4c/source/common/
bytestriebuilder.cpp 29 * Note: This builder implementation stores (bytes, value) pairs with full copies
81 // If the stringOffset is negative, then the first two strings bytes contain
83 // (Compared with a stringLength field here, this saves 3 bytes per string for most strings.)
96 // Too long: We store the length in 1 or 2 bytes.
129 bytes(NULL), bytesCapacity(0), bytesLength(0) {
142 uprv_free(bytes);
195 newTrie=new BytesTrie(bytes, bytes+(bytesCapacity-bytesLength));
199 bytes=NULL; // The new trie now owns the array.
211 result.set(bytes+(bytesCapacity-bytesLength), bytesLength)
    [all...]
  /external/squashfs-tools/squashfs-tools/
unsquash-4.c 34 int bytes = SQUASHFS_FRAGMENT_BYTES(sBlk.s.fragments); local
47 fragment_table = malloc(bytes);
64 bytes & (SQUASHFS_METADATA_SIZE - 1);
101 int bytes = lookup_entry(inode_table_hash, start); local
102 char *block_ptr = inode_table + bytes + offset;
107 if(bytes == -1)
258 int bytes; local
291 bytes = lookup_entry(directory_table_hash, start);
293 if(bytes == -1)
297 bytes += (*i)->offset
357 int bytes = SQUASHFS_ID_BYTES(sBlk.s.no_ids); local
    [all...]

Completed in 273 milliseconds

<<21222324252627282930>>