/external/clang/test/CodeGen/ |
2005-07-26-UnionInitCrash.c | 3 union { char bytes[8]; double alignment; }EQ1 = {0,0,0,0,0,0,0,0}; member in union:__anon8606
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/array/ |
ByteArr.java | 22 private byte[] bytes; field in class:ByteArr 27 public ByteArr(byte[] bytes) { 28 this.bytes = bytes; 32 return Arrays.toString(bytes); 36 return bytes; 39 public void setBytes(byte[] bytes) { 40 this.bytes = bytes;
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bytes/ |
BytesResource.java | 1 package com.bumptech.glide.load.resource.bytes; 9 private final byte[] bytes; field in class:BytesResource 11 public BytesResource(byte[] bytes) { 12 if (bytes == null) { 13 throw new NullPointerException("Bytes must not be null"); 15 this.bytes = bytes; 20 return bytes; 25 return bytes.length;
|
/external/skia/src/ports/ |
SkDiscardableMemory_none.cpp | 12 SkDiscardableMemory* SkDiscardableMemory::Create(size_t bytes) { 13 return SkGetGlobalDiscardableMemoryPool()->create(bytes);
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
ByteArrayByteInput.java | 21 private final byte[] bytes; field in class:ByteArrayByteInput 24 public ByteArrayByteInput(byte... bytes) { 25 this.bytes = bytes; 29 return bytes[position++];
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfVersion.cpp | 49 isImfMagic (const char bytes[4]) 51 return bytes[0] == ((MAGIC >> 0) & 0x00ff) && 52 bytes[1] == ((MAGIC >> 8) & 0x00ff) && 53 bytes[2] == ((MAGIC >> 16) & 0x00ff) && 54 bytes[3] == ((MAGIC >> 24) & 0x00ff);
|
/libcore/dex/src/main/java/com/android/dex/util/ |
ByteArrayByteInput.java | 21 private final byte[] bytes; field in class:ByteArrayByteInput 24 public ByteArrayByteInput(byte... bytes) { 25 this.bytes = bytes; 29 return bytes[position++];
|
/external/libchrome/crypto/ |
random_unittest.cc | 15 // Currently, that means the bytes cannot be all the same (e.g. all zeros). 16 bool IsTrivial(const std::string& bytes) { 17 for (size_t i = 0; i < bytes.size(); i++) { 18 if (bytes[i] != bytes[0]) { 26 std::string bytes(16, '\0'); 27 crypto::RandBytes(base::WriteInto(&bytes, bytes.size()), bytes.size()); 28 EXPECT_TRUE(!IsTrivial(bytes)); [all...] |
random.cc | 13 void RandBytes(void *bytes, size_t length) { 17 base::RandBytes(bytes, length);
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/ |
AudioSample.java | 23 public final byte[] bytes; field in class:AudioSample 25 public AudioSample(int sampleRate, int channelCount, byte[] bytes) { 28 this.bytes = bytes;
|
/external/conscrypt/src/main/java/org/conscrypt/ |
ByteArray.java | 25 private final byte[] bytes; field in class:ByteArray 28 ByteArray(byte[] bytes) { 29 this.bytes = bytes; 30 this.hashCode = Arrays.hashCode(bytes); 44 return Arrays.equals(bytes, lhs.bytes);
|
/external/skia/src/core/ |
SkVarAlloc.h | 15 // 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. 23 char* alloc(size_t bytes) { 24 bytes = SkAlignPtr(bytes); 26 if (bytes > fRemaining) { 27 this->makeSpace(bytes); 29 SkASSERT(bytes <= fRemaining); 32 fByte += bytes; [all...] |
/external/tpm2/ |
TPMB.h | 14 #define TPM2B_TYPE(name, bytes) \ 18 BYTE buffer[(bytes)]; \ 27 #define TPM2B_BYTE_VALUE(bytes) TPM2B_TYPE(bytes##_BYTE_VALUE, bytes)
|
/external/apache-http/android/src/com/android/internal/http/multipart/ |
ByteArrayPartSource.java | 50 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) { 61 this.bytes = bytes; 69 return bytes.length; 83 return new ByteArrayInputStream(bytes);
|
/external/libchrome/base/ |
guid_posix.cc | 35 std::string RandomDataToGUIDString(const uint64_t bytes[2]) { 37 static_cast<unsigned int>(bytes[0] >> 32), 38 static_cast<unsigned int>((bytes[0] >> 16) & 0x0000ffff), 39 static_cast<unsigned int>(bytes[0] & 0x0000ffff), 40 static_cast<unsigned int>(bytes[1] >> 48), 41 bytes[1] & 0x0000ffffffffffffULL);
|
/external/libweave/third_party/chromium/base/ |
guid_posix.cc | 35 std::string RandomDataToGUIDString(const uint64_t bytes[2]) { 37 static_cast<unsigned int>(bytes[0] >> 32), 38 static_cast<unsigned int>((bytes[0] >> 16) & 0x0000ffff), 39 static_cast<unsigned int>(bytes[0] & 0x0000ffff), 40 static_cast<unsigned int>(bytes[1] >> 48), 41 bytes[1] & 0x0000ffffffffffffULL);
|
/external/valgrind/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
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
new11.cpp | 8 void *operator new[](size_t bytes) throw (std::bad_alloc) { 11 return operator new (bytes);
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
new11.cpp | 8 void *operator new[](size_t bytes) throw (std::bad_alloc) { 11 return operator new (bytes);
|
/prebuilts/go/darwin-x86/src/net/http/ |
range_test.go | 19 {"bytes=", 0, nil}, 20 {"bytes=7", 10, nil}, 21 {"bytes= 7 ", 10, nil}, 22 {"bytes=1-", 0, nil}, 23 {"bytes=5-4", 10, nil}, 24 {"bytes=0-2,5-4", 10, nil}, 25 {"bytes=2-5,4-3", 10, nil}, 26 {"bytes=--5,4--3", 10, nil}, 27 {"bytes=A-", 10, nil}, 28 {"bytes=A- ", 10, nil} [all...] |
/prebuilts/go/linux-x86/src/net/http/ |
range_test.go | 19 {"bytes=", 0, nil}, 20 {"bytes=7", 10, nil}, 21 {"bytes= 7 ", 10, nil}, 22 {"bytes=1-", 0, nil}, 23 {"bytes=5-4", 10, nil}, 24 {"bytes=0-2,5-4", 10, nil}, 25 {"bytes=2-5,4-3", 10, nil}, 26 {"bytes=--5,4--3", 10, nil}, 27 {"bytes=A-", 10, nil}, 28 {"bytes=A- ", 10, nil} [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
LazyFieldLite.java | 47 private ByteString bytes; field in class:LazyFieldLite 53 public LazyFieldLite(ExtensionRegistryLite extensionRegistry, ByteString bytes) { 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; [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/elfutils/libdw/ |
dwarf_next_cfi.c | 62 const uint8_t *bytes = data->d_buf + off; local 68 uint64_t length = read_4ubyte_unaligned_inc (&dw, bytes); 74 if (unlikely (limit - bytes < 8)) 80 length = read_8ubyte_unaligned_inc (&dw, bytes); 82 if (unlikely ((uint64_t) (limit - bytes) < length) 92 limit = bytes + length; 94 const uint8_t *const cie_pointer_start = bytes; 96 entry->cie.CIE_id = read_8ubyte_unaligned_inc (&dw, bytes); 99 entry->cie.CIE_id = read_4ubyte_unaligned_inc (&dw, bytes); 124 uint8_t version = *bytes++ [all...] |