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

1 2 3 4 5 6 7 8 91011>>

  /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:__anon7153
  /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/libweave/third_party/libuweave/src/
crypto_hmac.h 13 const uint8_t* bytes; member in struct:__anon16827
  /external/tlsdate/src/events/
save.c 25 ssize_t bytes; local
40 bytes = IGNORE_EINTR (write (fd, &t, sizeof (t)));
41 if (bytes == -1)
52 if (bytes != sizeof (t))
54 __func__, 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)
mbswidth.c 101 size_t bytes; local
104 bytes = mbrtowc (&wc, p, plimit - p, &mbstate);
106 if (bytes == (size_t) -1)
119 if (bytes == (size_t) -2)
132 if (bytes == 0)
134 bytes = 1;
158 p += 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
  /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/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/dhcpcd-6.8.2/compat/
getline.c 44 size_t bytes, newlen; local
54 bytes = 0;
58 if (*buf == NULL || bytes != 0 || *buflen < BUFSIZ) {
66 p = *buf + bytes;
70 bytes += strlen(p);
71 } while (bytes == 0 || *(*buf + (bytes - 1)) != '\n');
72 if (bytes == 0)
74 return bytes;
  /external/google-tv-pairing-protocol/cpp/src/polo/encoding/
hexadecimalencoder.cc 34 uint8_t* bytes; local
35 size_t length = polo::util::PoloUtil::HexStringToBytes(secret, bytes);
36 std::vector<uint8_t> decoded(bytes, bytes + length);
37 delete[] bytes;
  /external/libvpx/libvpx/
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
  /external/mesa3d/src/gallium/drivers/radeon/
loader.cpp 23 unsigned char * bytes; local
34 radeon_llvm_compile(wrap(mod), &bytes, &byte_count, TargetGPUName.c_str(), 1); local
  /external/valgrind/helgrind/tests/
tc16_byterace.c 7 char bytes[10]; variable
13 bytes[2*i + 0] ++; /* child accesses: 0 2 4 6 8 */
28 bytes accessed */
30 bytes[2*i + 1] ++; /* accesses: 1 3 5 7 9 */
32 /* Unprotected relative to child, but harmful; same bytes */
34 bytes[3*i + 1] ++; /* accesses: 1 4(race!) 7 */
  /external/webrtc/webrtc/base/
bufferqueue_unittest.cc 20 size_t bytes; local
26 EXPECT_FALSE(queue1.ReadFront(out, kSize, &bytes));
29 EXPECT_TRUE(queue1.WriteBack(in, kSize, &bytes));
30 EXPECT_EQ(kSize, bytes);
34 EXPECT_FALSE(queue1.WriteBack(in, kSize, &bytes));
38 EXPECT_TRUE(queue1.ReadFront(out, kSize, &bytes));
39 EXPECT_EQ(kSize, bytes);
43 EXPECT_FALSE(queue1.ReadFront(out, kSize, &bytes));
47 EXPECT_TRUE(queue1.WriteBack(in, kSize, &bytes));
48 EXPECT_EQ(kSize, bytes);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
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
  /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/boringssl/src/include/openssl/
rand.h 28 /* RAND_bytes writes |len| bytes of random data to |buf| and returns one. */
98 int (*bytes) (uint8_t *buf, size_t num); member in struct:rand_meth_st
  /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/curl/docs/examples/
sampleconv.c 48 size_t bytes = length; local
51 rc = platform_a2e(&tempptrin, &bytes, &tempptrout, &bytes);
63 size_t bytes = length; local
66 rc = platform_e2a(&tempptrin, &bytes, &tempptrout, &bytes);
78 size_t bytes = length; local
81 rc = platform_u2e(&tempptrin, &bytes, &tempptrout, &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++];

Completed in 1848 milliseconds

1 2 3 4 5 6 7 8 91011>>