/prebuilts/go/darwin-x86/src/bytes/ |
bytes_generic.go | 7 package bytes package
|
bytes_decl.go | 5 package bytes package 15 // are the same length and contain the same bytes.
|
export_test.go | 5 package bytes package
|
/prebuilts/go/linux-x86/src/bytes/ |
bytes_generic.go | 7 package bytes package
|
bytes_decl.go | 5 package bytes package 15 // are the same length and contain the same bytes.
|
export_test.go | 5 package bytes package
|
/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:__anon14673
|
/external/kmod/shared/ |
strbuf.h | 9 char *bytes; member in struct:strbuf
|
/external/libvncserver/examples/ |
colourmaptest.c | 7 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/syslinux/com32/lib/ |
fread.c | 11 size_t bytes = 0; local 27 bytes += rv; 31 return bytes;
|
fwrite.c | 11 size_t bytes = 0; local 27 bytes += rv; 31 return bytes;
|
inet.c | 35 const uint8_t *bytes = (const uint8_t *)&addr.s_addr; local 37 sprintf(buf, "%u.%u.%u.%u", bytes[0], bytes[1], bytes[2], bytes[3]);
|
vasprintf.c | 12 int bytes; local 17 bytes = vsnprintf(NULL, 0, format, ap1) + 1; 20 *bufp = p = malloc(bytes); 24 return vsnprintf(p, bytes, format, ap);
|
strlcat.c | 10 size_t bytes = 0; local 15 while (bytes < size && *q) { 17 bytes++; 21 if (bytes < size) 24 bytes++; 28 return bytes;
|
strlcpy.c | 10 size_t bytes = 0; local 16 if (bytes < size) 19 bytes++; 23 return bytes;
|
/system/core/libmemunreachable/ |
LineBuffer.cpp | 47 ssize_t bytes = TEMP_FAILURE_RETRY(read(fd_, buffer_ + bytes_, buffer_len_ - bytes_ - 1)); local 48 if (bytes <= 0) { 60 bytes_ += bytes;
|
/system/extras/memory_replay/ |
LineBuffer.cpp | 44 ssize_t bytes = TEMP_FAILURE_RETRY(read(fd_, buffer_ + bytes_, buffer_len_ - bytes_ - 1)); local 45 if (bytes <= 0) { 57 bytes_ += bytes;
|
/external/bison/lib/ |
calloc.c | 56 size_t bytes = n * s; local 57 if (bytes / s != n)
|
/external/libcups/filter/ |
gziptoany.c | 33 ssize_t bytes; /* Number of bytes read/written */ local 86 while ((bytes = cupsFileRead(fp, buffer, sizeof(buffer))) > 0) 87 if (write(1, buffer, (size_t)bytes) < bytes)
|
/external/webrtc/webrtc/modules/audio_processing/test/ |
protobuf_utils.cc | 15 size_t ReadMessageBytesFromFile(FILE* file, rtc::scoped_ptr<uint8_t[]>* bytes) { 27 bytes->reset(new uint8_t[size]); 28 return fread(bytes->get(), sizeof((*bytes)[0]), size, file); 33 rtc::scoped_ptr<uint8_t[]> bytes; local 34 size_t size = ReadMessageBytesFromFile(file, &bytes); 39 return msg->ParseFromArray(bytes.get(), size);
|
/bionic/tests/ |
uchar_test.cpp | 83 char bytes[MB_LEN_MAX]; local 84 EXPECT_EQ(1U, c16rtomb(bytes, L'\0', NULL)); 92 char bytes[MB_LEN_MAX]; local 94 memset(bytes, 0, sizeof(bytes)); 95 EXPECT_EQ(1U, c16rtomb(bytes, L'h', NULL)); 96 EXPECT_EQ('h', bytes[0]); 102 memset(bytes, 0, sizeof(bytes)); 103 EXPECT_EQ(1U, c16rtomb(bytes, L'h', NULL)) 123 char bytes[MB_LEN_MAX]; local 139 char bytes[MB_LEN_MAX]; local 281 char bytes[MB_LEN_MAX]; local [all...] |
/cts/tests/tests/media/libmediandkjni/ |
md5_utils.h | 12 * To compute the message digest of a chunk of bytes, declare an 14 * needed on buffers full of bytes, and then call MD5Final, which 36 UWORD32 bytes[2]; member in struct:MD5Context
|
/device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/ |
sha.c | 42 int bytes; local 57 while ((bytes = fread(data, 1, BUFFER_SIZE, inFile)) != 0) { 58 SHA256_Update(&shaContext, data, bytes);
|
/external/c-ares/ |
ares_writev.c | 32 size_t bytes = 0; local 45 if (iov[i].iov_len > INT_MAX - bytes) 50 bytes += iov[i].iov_len; 53 if (bytes == 0) 57 buffer = malloc(bytes); 72 result = swrite(s, buffer, bytes);
|
/external/conscrypt/common/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);
|