/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.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 */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/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.15-4.8/sysroot/usr/include/x86_64-linux-gnu/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/ |
X9IntegerConverter.java | 15 * Return the curve's field size in bytes. 18 * @return the field size in bytes (rounded up). 27 * Return the field element's field size in bytes. 30 * @return the field size in bytes (rounded up). 49 byte[] bytes = s.toByteArray(); 51 if (qLength < bytes.length) 55 System.arraycopy(bytes, bytes.length - tmp.length, tmp, 0, tmp.length); 59 else if (qLength > bytes.length) 63 System.arraycopy(bytes, 0, tmp, tmp.length - bytes.length, bytes.length) [all...] |
/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...] |
/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/ |
DERObjectIdentifier.java | 15 DERObjectIdentifier(byte[] bytes) 17 super(bytes);
|
/external/llvm/test/DebugInfo/PDB/DIA/ |
pdbdump-linenumbers.test | 4 ; LINE_NUMS: Line 5, Address: [0x000011a0 - 0x000011a5] (6 bytes) 5 ; LINE_NUMS: Line 6, Address: [0x000011a6 - 0x000011a6] (1 bytes) 7 ; LINE_NUMS: Line 6, Address: [0x00001060 - 0x00001066] (7 bytes) 8 ; LINE_NUMS: Line 72, Address: [0x000010d0 - 0x000010d1] (2 bytes) 9 ; LINE_NUMS: Line 73, Address: [0x000010d2 - 0x000010d5] (4 bytes) 10 ; LINE_NUMS: Line 28, Address: [0x00001170 - 0x0000117a] (11 bytes) 11 ; LINE_NUMS: Line 21, Address: [0x00001180 - 0x0000118a] (11 bytes) 12 ; LINE_NUMS: Line 20, Address: [0x00001190 - 0x0000119a] (11 bytes
|
/external/libnl/tests/ |
check-attr.c | 21 "Length of 1 bytes payload should be NLA_HDRLEN + 1"); 23 "Length of 2 bytes payload should be NLA_HDRLEN + 2"); 25 "Length of 3 bytes payload should be NLA_HDRLEN + 3"); 27 "Length of 4 bytes payload should be NLA_HDRLEN + 4"); 30 "Total size of 1 bytes payload should result in 8 bytes"); 32 "Total size of 2 bytes payload should result in 8 bytes"); 34 "Total size of 3 bytes payload should result in 8 bytes"); [all...] |
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/ |
input.go | 11 bytes []byte 15 return input{bytes: str} 24 in.bytes = str 29 in.bytes = nil 33 if in.bytes == nil { 36 return in.bytes[p] 40 if in.bytes == nil { 44 for ; p < max && in.bytes[p] < utf8.RuneSelf; p++ { 51 if in.bytes == nil { 55 for ; p < len(in.bytes) && !utf8.RuneStart(in.bytes[p]); p++ [all...] |
/prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/ |
input.go | 11 bytes []byte 15 return input{bytes: str} 24 in.bytes = str 29 in.bytes = nil 33 if in.bytes == nil { 36 return in.bytes[p] 40 if in.bytes == nil { 44 for ; p < max && in.bytes[p] < utf8.RuneSelf; p++ { 51 if in.bytes == nil { 55 for ; p < len(in.bytes) && !utf8.RuneStart(in.bytes[p]); p++ [all...] |
/external/syslinux/com32/lib/ |
asprintf.c | 13 int bytes; local 19 bytes = vsnprintf(NULL, 0, format, ap1) + 1; 22 *bufp = p = malloc(bytes); 26 rv = vsnprintf(p, bytes, format, ap);
|
/external/valgrind/memcheck/tests/ |
filter_allocs | 4 sed -e "s/in use at exit: [0-9,]* bytes in [0-9,]* blocks/in use at exit: ... bytes in ... blocks/" \ 5 -e "s/total heap usage: [0-9,]* allocs, [0-9,]* frees, [0-9,]* bytes allocated/total heap usage: ... allocs, ... frees, ... bytes allocated/"
|
/system/tpm/trunks/ |
interface.proto | 9 // The raw bytes of a TPM command. 10 optional bytes command = 1; 15 // The raw bytes of a TPM response. 16 optional bytes response = 1;
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
pad16.s | 1 * Padding 16 bytes, suitable for testing relocs together with the larger
|
pad4.s | 1 * Padding 16 bytes, suitable for testing relocs together with the larger
|
/prebuilts/go/darwin-x86/src/bytes/ |
example_test.go | 8 "bytes" 18 var b bytes.Buffer // A Buffer needs no initialization. 27 buf := bytes.NewBufferString("R29waGVycyBydWxlIQ==") 36 if bytes.Compare(a, b) < 0 { 39 if bytes.Compare(a, b) <= 0 { 42 if bytes.Compare(a, b) > 0 { 45 if bytes.Compare(a, b) >= 0 { 50 if bytes.Equal(a, b) { 53 if !bytes.Equal(a, b) { 64 return bytes.Compare(haystack[i], needle) >= [all...] |
/prebuilts/go/linux-x86/src/bytes/ |
example_test.go | 8 "bytes" 18 var b bytes.Buffer // A Buffer needs no initialization. 27 buf := bytes.NewBufferString("R29waGVycyBydWxlIQ==") 36 if bytes.Compare(a, b) < 0 { 39 if bytes.Compare(a, b) <= 0 { 42 if bytes.Compare(a, b) > 0 { 45 if bytes.Compare(a, b) >= 0 { 50 if bytes.Equal(a, b) { 53 if !bytes.Equal(a, b) { 64 return bytes.Compare(haystack[i], needle) >= [all...] |
/external/valgrind/exp-sgcheck/tests/ |
filter_add | 7 # Anonymise "before" distances (if greater than 9 bytes) 8 sed "s/Address 0x........ is [0-9][0-9]\+ bytes /Address 0x........ is ... bytes /"
|
/hardware/intel/img/psb_headers/DRM/cc54/inc/ |
wv_fkp.h | 22 #define KEYBOX_DEVID_SIZE (32) // 32 bytes 23 #define KEYBOX_DEVKEY_SIZE (16) // 16 bytes 24 #define KEYBOX_KEYDATA_SIZE (72) // 72 bytes 25 #define KEYBOX_MAGIC_SIZE (4) // 4 bytes 26 #define KEYBOX_CRC_SIZE (4) // 4 bytes 37 uint32_t key_data_size; // default 72 bytes 38 uint32_t device_id_sizee; // default 32 bytes 46 uint8_t device_id[KEYBOX_DEVID_SIZE]; // 32 bytes 47 uint8_t device_key[KEYBOX_DEVKEY_SIZE]; // 16 bytes 48 uint8_t key_data[KEYBOX_KEYDATA_SIZE]; // 72 bytes [all...] |
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/ |
R$id.class | |
/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/webrtc/webrtc/base/ |
stream_unittest.cc | 78 size_t bytes; local 82 EXPECT_EQ(stream->Read(buffer, kBufSize, &bytes, NULL), SR_SUCCESS); 83 EXPECT_EQ(bytes, kBufSize); 85 EXPECT_TRUE(stream->GetPosition(&bytes)); 86 EXPECT_EQ(13U, bytes); 90 EXPECT_EQ(stream->Read(buffer, kBufSize, &bytes, NULL), SR_SUCCESS); 91 EXPECT_EQ(bytes, kBufSize); 93 EXPECT_TRUE(stream->GetPosition(&bytes)); 94 EXPECT_EQ(20U, bytes); 103 size_t bytes; local [all...] |
/external/skia/src/opts/ |
SkChecksum_opts.h | 31 static uint32_t hash_fn(const void* vdata, size_t bytes, uint32_t seed) { 36 if (bytes >= 24) { 38 // to hash 8 bytes per step. Both 3 and independent are important: 43 size_t steps = bytes/24; 50 bytes %= 24; 54 SkASSERT(bytes < 24); 55 if (bytes >= 16) { 57 bytes -= 8; 61 SkASSERT(bytes < 16); 62 if (bytes & 8) [all...] |