HomeSort by relevance Sort by last modified time
    Searched full:bytes (Results 1 - 25 of 19111) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/s390x/
clc.stdout.exp 1 0 bytes:0
2 0 bytes:1
3 0 bytes:1
4 0 bytes:0
5 0 bytes:0
6 0 bytes:0
7 0 bytes:2
8 0 bytes:0
9 0 bytes:2
10 0 bytes:
    [all...]
trtt.stdout.exp 1 0 bytes translated
3 0 bytes translated
5 0 bytes translated
7 2 bytes translated
9 5 bytes translated
11 0 bytes translated
13 3 bytes translated
15 9 bytes translated
troo.stdout.exp 1 0 bytes translated
3 0 bytes translated
5 5 bytes translated
7 10 bytes translated
9 0 bytes translated
11 1 bytes translated
13 8 bytes translated
trot.stdout.exp 1 0 bytes translated
3 0 bytes translated
5 0 bytes translated
7 3 bytes translated
9 10 bytes translated
11 2 bytes translated
13 3 bytes translated
15 9 bytes translated
trto.stdout.exp 1 0 bytes translated
3 0 bytes translated
5 0 bytes translated
7 6 bytes translated
9 10 bytes translated
11 2 bytes translated
13 0 bytes translated
15 9 bytes translated
  /external/valgrind/main/memcheck/tests/
leak-0.stderr.exp 1 leaked: 0 bytes in 0 blocks
2 dubious: 0 bytes in 0 blocks
3 reachable: 0 bytes in 1 blocks
4 suppressed: 0 bytes in 0 blocks
leak-cases-summary.stderr.exp 1 leaked: 80 bytes in 5 blocks
2 dubious: 96 bytes in 6 blocks
3 reachable: 64 bytes in 4 blocks
4 suppressed: 0 bytes in 0 blocks
error_counts.stderr.exp 7 leaked: 0 bytes in 0 blocks
8 dubious: 0 bytes in 0 blocks
9 reachable: 0 bytes in 0 blocks
10 suppressed: 0 bytes in 0 blocks
14 leaked: 77 bytes in 1 blocks
15 dubious: 88 bytes in 1 blocks
16 reachable: 99 bytes in 1 blocks
17 suppressed: 0 bytes in 0 blocks
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bytes/
BytesResource.java 1 package com.bumptech.glide.load.resource.bytes;
6 private byte[] bytes; field in class:BytesResource
8 public BytesResource(byte[] bytes) {
9 this.bytes = bytes;
14 return bytes;
19 return bytes.length;
  /external/chromium_org/content/child/webcrypto/
crypto_data.cc 13 CryptoData::CryptoData(const unsigned char* bytes, unsigned int byte_length)
14 : bytes_(bytes), byte_length_(byte_length) {}
16 CryptoData::CryptoData(const std::vector<unsigned char>& bytes)
17 : bytes_(bytes.size() ? &bytes[0] : NULL), byte_length_(bytes.size()) {}
19 CryptoData::CryptoData(const std::string& bytes)
20 : bytes_(bytes.size() ? reinterpret_cast<const unsigned char*>(bytes.data())
22 byte_length_(bytes.size()) {
    [all...]
  /external/google-tv-pairing-protocol/cpp/tests/polo/util/
poloutiltest.cc 22 uint8_t bytes[4] = {0xAA, 0xBB, 0xCC, 0xDD}; local
23 std::string result = PoloUtil::BytesToHexString(bytes, 4);
28 uint8_t bytes[4] = {0x00, 0xBB, 0xCC, 0xDD}; local
29 std::string result = PoloUtil::BytesToHexString(bytes, 4);
34 uint8_t* bytes; local
35 size_t length = PoloUtil::HexStringToBytes(std::string("AABBCCDD"), bytes);
37 ASSERT_EQ(0xAA, bytes[0]);
38 ASSERT_EQ(0xBB, bytes[1]);
39 ASSERT_EQ(0xCC, bytes[2]);
40 ASSERT_EQ(0xDD, bytes[3])
45 uint8_t* bytes; local
55 uint8_t* bytes; local
65 uint8_t bytes[4] = {0xAA, 0xBB, 0xCC, 0xDD}; local
71 uint8_t bytes[4] = {0x00, 0xAA, 0xBB, 0x00}; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv8.txt 5 4 bytes - version (4)
8 (in bytes following the length field). Each set is 4-byte aligned with 0s at
17 4 bytes - offset of filename in source filename string table
18 {2 bytes - checksum type/length? (0x0110)
19 16 bytes - MD5 checksum of source file} OR
20 {2 bytes - no checksum (0)}
21 2 bytes - 0 (padding?)
24 4 bytes - start offset in section (SECREL to section start)
25 2 bytes - section index (SECTION to section start)
26 2 bytes - pad/align (0
    [all...]
  /external/valgrind/main/none/tests/x86-linux/
seg_override.stdout.exp 2 got 65536 bytes
  /packages/apps/OMA-DM/engine/dmlib/tool-src/db_wizard_tool/com/mot/dm/dbtool/
ByteArray.java 4 byte[] bytes = new byte[0]; field in class:ByteArray
16 byte[] newBytes = new byte[bytes.length + b.length];
17 for (int i = 0; i < bytes.length; i++) {
18 newBytes[count++] = bytes[i];
23 bytes = newBytes;
27 return bytes;
31 return bytes.length;
  /external/chromium_org/crypto/
random_unittest.cc 13 // Currently, that means the bytes cannot be all the same (e.g. all zeros).
14 bool IsTrivial(const std::string& bytes) {
15 for (size_t i = 0; i < bytes.size(); i++) {
16 if (bytes[i] != bytes[0]) {
24 std::string bytes(16, '\0');
25 crypto::RandBytes(WriteInto(&bytes, bytes.size()), bytes.size());
26 EXPECT_TRUE(!IsTrivial(bytes));
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSProcessableByteArray.java 19 private final byte[] bytes; field in class:CMSProcessableByteArray
22 byte[] bytes)
24 this(new ASN1ObjectIdentifier(CMSObjectIdentifiers.data.getId()), bytes);
29 byte[] bytes)
32 this.bytes = bytes;
37 return new ByteArrayInputStream(bytes);
43 zOut.write(bytes);
48 return Arrays.clone(bytes);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9IntegerConverter.java 26 byte[] bytes = s.toByteArray();
28 if (qLength < bytes.length)
32 System.arraycopy(bytes, bytes.length - tmp.length, tmp, 0, tmp.length);
36 else if (qLength > bytes.length)
40 System.arraycopy(bytes, 0, tmp, tmp.length - bytes.length, bytes.length);
45 return bytes;
  /external/javassist/sample/hotswap/
Test.java 10 byte[] bytes = new byte[(int)newfile.length()];
11 new FileInputStream(newfile).read(bytes);
14 hs.reload("HelloWorld", bytes);
18 bytes = new byte[(int)newfile.length()];
19 new FileInputStream(newfile).read(bytes);
22 hs.reload("HelloWorld", bytes);
  /external/kernel-headers/original/uapi/asm-x86/asm/
a.out.h 7 unsigned a_text; /* length of text, in bytes */
8 unsigned a_data; /* length of data, in bytes */
9 unsigned a_bss; /* length of uninitialized data area for file, in bytes */
10 unsigned a_syms; /* length of symbol table data in file, in bytes */
12 unsigned a_trsize; /* length of relocation info for text, in bytes */
13 unsigned a_drsize; /* length of relocation info for data, in bytes */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm/
a.out.h 7 unsigned a_text; /* length of text, in bytes */
8 unsigned a_data; /* length of data, in bytes */
9 unsigned a_bss; /* length of uninitialized data area for file, in bytes */
10 unsigned a_syms; /* length of symbol table data in file, in bytes */
12 unsigned a_trsize; /* length of relocation info for text, in bytes */
13 unsigned a_drsize; /* length of relocation info for data, in bytes */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/
a.out.h 7 unsigned a_text; /* length of text, in bytes */
8 unsigned a_data; /* length of data, in bytes */
9 unsigned a_bss; /* length of uninitialized data area for file, in bytes */
10 unsigned a_syms; /* length of symbol table data in file, in bytes */
12 unsigned a_trsize; /* length of relocation info for text, in bytes */
13 unsigned a_drsize; /* length of relocation info for data, in bytes */
  /external/guava/guava-tests/test/com/google/common/primitives/
BytesTest.java 32 * Unit test for {@link Bytes}.
48 assertEquals(((Byte) value).hashCode(), Bytes.hashCode(value));
53 assertFalse(Bytes.contains(EMPTY, (byte) 1));
54 assertFalse(Bytes.contains(ARRAY1, (byte) 2));
55 assertFalse(Bytes.contains(ARRAY234, (byte) 1));
56 assertTrue(Bytes.contains(new byte[] {(byte) -1}, (byte) -1));
57 assertTrue(Bytes.contains(ARRAY234, (byte) 2));
58 assertTrue(Bytes.contains(ARRAY234, (byte) 3));
59 assertTrue(Bytes.contains(ARRAY234, (byte) 4));
63 assertEquals(-1, Bytes.indexOf(EMPTY, (byte) 1))
    [all...]
  /development/tutorials/MoarRam/res/values/
strings.xml 8 <string name="add_32">Add 32 bytes</string>
9 <string name="free_32">Free 32 bytes</string>
10 <string name="add_2m">Add 2M bytes</string>
11 <string name="free_2m">Free 2M bytes</string>
12 <string name="add_variable">Add 17 or 71 bytes</string>
13 <string name="free_variable">Free 17 or 71 bytes</string>
14 <string name="_17byte">17 bytes</string>
15 <string name="_71byte">71 bytes</string>
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Enumerated.java 8 ASN1Enumerated(byte[] bytes)
10 super(bytes);
ASN1GeneralizedTime.java 8 ASN1GeneralizedTime(byte[] bytes)
10 super(bytes);

Completed in 2785 milliseconds

1 2 3 4 5 6 7 8 91011>>