Searched refs:bytes (Results 1 - 25 of 1679) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2005-07-26-UnionInitCrash.c3 union { char bytes[8]; double alignment; }EQ1 = {0,0,0,0,0,0,0,0}; member in union:__anon1695
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bytes/
H A DBytesResource.java1 package com.bumptech.glide.load.resource.bytes;
9 private final byte[] bytes; field in class:BytesResource
11 public BytesResource(byte[] bytes) { argument
12 if (bytes == null) {
15 this.bytes = bytes;
20 return bytes;
25 return bytes.length;
/external/skia/src/ports/
H A DSkDiscardableMemory_none.cpp11 SkDiscardableMemory* SkDiscardableMemory::Create(size_t bytes) { argument
12 return SkGetGlobalDiscardableMemoryPool()->create(bytes);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayByteInput.java21 private final byte[] bytes; field in class:ByteArrayByteInput
24 public ByteArrayByteInput(byte... bytes) { argument
25 this.bytes = bytes;
29 return bytes[position++];
/external/conscrypt/src/main/java/org/conscrypt/
H A DByteArray.java25 private final byte[] bytes; field in class:ByteArray
28 ByteArray(byte[] bytes) { argument
29 this.bytes = bytes;
30 this.hashCode = Arrays.hashCode(bytes);
44 return Arrays.equals(bytes, lhs.bytes);
/external/apache-http/android/src/com/android/internal/http/multipart/
H A DByteArrayPartSource.java50 private byte[] bytes; field in class:ByteArrayPartSource
55 * @param fileName the name of the file these bytes represent
56 * @param bytes the content of this part
58 public ByteArrayPartSource(String fileName, byte[] bytes) { argument
61 this.bytes = bytes;
69 return bytes.length;
83 return new ByteArrayInputStream(bytes);
/external/valgrind/memcheck/tests/
H A Dleak-0.stderr.exp1 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
H A Dleak-cases-summary.stderr.exp1 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
H A Derror_counts.stderr.exp7 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/protobuf/java/src/main/java/com/google/protobuf/
H A DLazyFieldLite.java47 private ByteString bytes; field in class:LazyFieldLite
53 public LazyFieldLite(ExtensionRegistryLite extensionRegistry, ByteString bytes) { argument
55 this.bytes = bytes;
68 return value == null && bytes == null;
72 bytes = null;
97 bytes = null;
107 if (bytes == null) {
108 this.bytes = value.bytes;
115 setByteString(ByteString bytes, ExtensionRegistryLite extensionRegistry) argument
[all...]
/external/google-tv-pairing-protocol/cpp/tests/polo/util/
H A Dpoloutiltest.cc22 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[
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/elfutils/src/libdw/
H A Ddwarf_next_cfi.c63 const uint8_t *bytes = data->d_buf + off; local
69 uint64_t length = read_4ubyte_unaligned_inc (&dw, bytes);
75 if (unlikely (limit - bytes < 8))
81 length = read_8ubyte_unaligned_inc (&dw, bytes);
83 if (unlikely ((uint64_t) (limit - bytes) < length)
93 limit = bytes + length;
95 const uint8_t *const cie_pointer_start = bytes;
97 entry->cie.CIE_id = read_8ubyte_unaligned_inc (&dw, bytes);
100 entry->cie.CIE_id = read_4ubyte_unaligned_inc (&dw, bytes);
125 uint8_t version = *bytes
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/export/
H A DReadListener.java37 public void readBytes(int bytes); argument
/external/openssh/
H A Dhash.c35 unsigned long long bytes = inlen; local
49 padded[119] = bytes >> 61;
50 padded[120] = bytes >> 53;
51 padded[121] = bytes >> 45;
52 padded[122] = bytes >> 37;
53 padded[123] = bytes >> 29;
54 padded[124] = bytes >> 21;
55 padded[125] = bytes >> 13;
56 padded[126] = bytes >> 5;
57 padded[127] = bytes <<
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DByteStringMicro.java36 * Immutable array of bytes.
42 private final byte[] bytes; field in class:ByteStringMicro
44 private ByteStringMicro(final byte[] bytes) { argument
45 this.bytes = bytes;
54 return bytes[index];
58 * Gets the number of bytes.
61 return bytes.length;
68 return bytes.length == 0;
80 * Copies the given bytes int
82 copyFrom(final byte[] bytes, final int offset, final int size) argument
92 copyFrom(final byte[] bytes) argument
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSProcessableByteArray.java19 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);
21 CMSProcessableByteArray( byte[] bytes) argument
27 CMSProcessableByteArray( ASN1ObjectIdentifier type, byte[] bytes) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DX9IntegerConverter.java26 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/libvncserver/examples/
H A Dcolourmaptest.c7 uint8_t bytes[256*3]; local
16 bytes[i*3+0]=255-i; /* red */
17 bytes[i*3+1]=0; /* green */
18 bytes[i*3+2]=i; /* blue */
20 bytes[128*3+0]=0xff;
21 bytes[128*3+1]=0;
22 bytes[128*3+2]=0;
23 server->colourMap.data.bytes=bytes;
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DUnknownFieldData.java49 final byte[] bytes; field in class:UnknownFieldData
51 UnknownFieldData(int tag, byte[] bytes) { argument
53 this.bytes = bytes;
59 size += bytes.length;
65 output.writeRawBytes(bytes);
78 return tag == other.tag && Arrays.equals(bytes, other.bytes);
85 result = 31 * result + Arrays.hashCode(bytes);
/external/skia/src/core/
H A DSkVarAlloc.h15 // Smallest block we'll allocate is 2**N bytes.
17 // Same as above, but first uses up to len bytes from storage.
22 // Returns contiguous bytes aligned at least for pointers. You may pass SK_MALLOC_THROW, etc.
23 char* alloc(size_t bytes, unsigned sk_malloc_flags) { argument
24 bytes = SkAlignPtr(bytes);
26 if (bytes > fRemaining) {
27 this->makeSpace(bytes, sk_malloc_flags);
29 SkASSERT(bytes <= fRemaining);
32 fByte += bytes;
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Integer.java14 byte[] bytes; field in class:ASN1Integer
75 bytes = BigInteger.valueOf(value).toByteArray();
81 bytes = value.toByteArray();
85 byte[] bytes)
87 this(bytes, true);
90 ASN1Integer(byte[] bytes, boolean clone) argument
92 this.bytes = (clone) ? Arrays.clone(bytes) : bytes;
97 return new BigInteger(bytes);
84 ASN1Integer( byte[] bytes) argument
[all...]
H A DDEREnumerated.java12 * @param bytes the value of this enumerated as an encoded BigInteger (signed).
15 DEREnumerated(byte[] bytes) argument
17 super(bytes);
H A DDERGeneralizedTime.java12 DERGeneralizedTime(byte[] bytes) argument
14 super(bytes);
H A DDERInteger.java14 * @param bytes a byte array containing the signed number.A copy is made of the byte array.
16 public DERInteger(byte[] bytes) argument
18 super(bytes, true);
/external/javassist/sample/hotswap/
H A DTest.java10 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);

Completed in 667 milliseconds

1234567891011>>