HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 1 - 25 of 1206) 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:__anon18192
  /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/chromium_org/printing/
image_mac.cc 24 size_t bytes = row_length_ * size_.height(); local
25 DCHECK(bytes);
27 data_.resize(bytes);
  /external/chromium/chrome/common/
guid_unittest.cc 13 uint64 bytes[] = { 0, 0 }; local
14 std::string clientid = guid::RandomDataToGUIDString(bytes);
19 uint64 bytes[] = { 0x0123456789ABCDEFULL, 0xFEDCBA9876543210ULL }; local
20 std::string clientid = guid::RandomDataToGUIDString(bytes);
  /external/chromium_org/base/
guid_unittest.cc 13 uint64 bytes[] = { 0, 0 }; local
14 std::string clientid = base::RandomDataToGUIDString(bytes);
19 uint64 bytes[] = { 0x0123456789ABCDEFULL, 0xFEDCBA9876543210ULL }; local
20 std::string clientid = base::RandomDataToGUIDString(bytes);
  /external/chromium_org/cc/resources/
resource.cc 10 size_t Resource::bytes() const { function in class:cc::Resource
  /external/chromium_org/gpu/ipc/
gpu_command_buffer_traits.cc 49 const char* bytes = NULL; local
50 if (!m->ReadBytes(iter, &bytes, sizeof(p->name)))
52 DCHECK(bytes);
53 memcpy(p->name, bytes, sizeof(p->name));
  /external/chromium_org/skia/ext/
bitmap_platform_device.h 31 int64_t bytes = (int64_t)width * height * bytesPerPixel; local
32 return bytes > SKIA_EXT_RASTER_DEVICE_ALLOCATION_MAX;
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Uniform.cpp 18 int bytes = gl::UniformInternalSize(type) * elementCount(); local
19 data = new unsigned char[bytes];
20 memset(data, 0, bytes);
  /external/chromium_org/third_party/mesa/src/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/chromium_org/ui/base/text/
bytes_formatting_unittest.cc 13 int64 bytes; member in struct:ui::__anon16651
29 EXPECT_EQ(cases[i].expected, GetByteDisplayUnits(cases[i].bytes));
34 int64 bytes; member in struct:ui::__anon16652
41 // sense (zero or bytes).
43 // the display of file sizes or bytes consistently around three
73 FormatBytesWithUnits(cases[i].bytes, cases[i].units, false));
75 FormatBytesWithUnits(cases[i].bytes, cases[i].units, true));
  /external/dhcpcd/compat/
getline.c 44 size_t bytes, newlen; local
54 bytes = 0;
58 if (*buf == NULL || bytes != 0) {
66 p = *buf + bytes;
70 bytes += strlen(p);
71 } while (bytes == 0 || *(*buf + (bytes - 1)) != '\n');
72 if (bytes == 0)
74 return bytes;
  /external/elfutils/libdw/
dwarf_nextcu.c 87 char *bytes = (char *) dwarf->sectiondata[IDX_debug_info]->d_buf + off; local
110 4. A 1-byte unsigned integer representing the size in bytes of
114 uint64_t length = read_4ubyte_unaligned_inc (dwarf, bytes);
138 length = read_8ubyte_unaligned_inc (dwarf, bytes);
142 read_2ubyte_unaligned_inc (dwarf, bytes);
148 abbrev_offset = read_4ubyte_unaligned_inc (dwarf, bytes);
150 abbrev_offset = read_8ubyte_unaligned_inc (dwarf, bytes);
155 uint8_t address_size = *bytes++;
165 *header_sizep = (bytes
  /external/flac/libFLAC/include/private/
md5.h 15 * To compute the message digest of a chunk of bytes, declare an
17 * needed on buffers full of bytes, and then call MD5Final, which
34 FLAC__uint32 bytes[2]; member in struct:__anon20135
  /external/libffi/src/
prep_cif.c 91 unsigned bytes = 0; local
123 bytes = STACK_ARG_SIZE(sizeof(void*));
143 bytes += sizeof(void*);
148 if (((*ptr)->alignment - 1) & bytes)
149 bytes = ALIGN(bytes, (*ptr)->alignment);
151 bytes += STACK_ARG_SIZE((*ptr)->size);
156 cif->bytes = 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
32 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/protobuf/java/src/main/java/com/google/protobuf/nano/
UnknownFieldData.java 41 final byte[] bytes; field in class:UnknownFieldData
43 UnknownFieldData(int tag, byte[] bytes) {
45 this.bytes = bytes;
  /external/valgrind/main/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 */
  /libcore/crypto/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);
42 return Arrays.equals(bytes, lhs.bytes);
  /libcore/luni/src/main/java/java/io/
OutputStreamWriter.java 30 * the target input stream is converted into bytes by either a default or a
33 * of bytes to be written to target stream and converts these into characters as
44 private ByteBuffer bytes = ByteBuffer.allocate(8192); field in class:OutputStreamWriter
52 * the non-null target stream to write converted bytes to.
65 * the target stream to write converted bytes to.
95 * the target stream to write converted bytes to.
113 * the target stream to write converted bytes to.
143 bytes = null;
149 * Flushes this writer. This implementation ensures that all buffered bytes
150 * are written to the target stream. After writing the bytes, the targe
    [all...]
  /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/chromium/base/memory/
ref_counted_memory.cc 30 RefCountedBytes* bytes = new RefCountedBytes; local
31 bytes->data.swap(*to_destroy);
32 return bytes;
  /external/chromium_org/content/child/npapi/
plugin_stream_win.cc 26 DWORD bytes; local
28 if (!WriteFile(temp_file_handle_, buf, length, &bytes, 0))
31 return static_cast<size_t>(bytes);

Completed in 1168 milliseconds

1 2 3 4 5 6 7 8 91011>>