HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 876 - 900 of 3342) sorted by null

<<31323334353637383940>>

  /external/libvncserver/webclients/novnc/include/
rfb.js 77 bytes: 0,
76 tiles: 0, \/\/ HEXTILE property in class:RFB._FBU
    [all...]
  /external/pdfium/third_party/libtiff/
tif_dir.c 49 tmsize_t bytes = (tmsize_t)(nmemb * elem_size); local
50 if (elem_size && bytes / elem_size == nmemb)
51 *vpp = (void*) _TIFFmalloc(bytes);
53 _TIFFmemcpy(*vpp, vp, bytes);
    [all...]
  /external/piex/src/
piex.cc 635 const size_t bytes = BytesRequiredForIsRaw(); local
640 // Read required number of bytes into a vector.
641 std::vector<std::uint8_t> file_header(bytes);
653 const size_t bytes = BytesRequiredForIsRaw(); local
654 if (data == nullptr || bytes == 0) {
658 std::vector<std::uint8_t> file_header(bytes);
tiff_parser.cc 116 std::vector<std::uint8_t> bytes; local
117 if (!gps_directory.Get(kGpsTagAltitudeRef, &bytes) || bytes.empty() ||
122 preview_image_data->gps.altitude_ref = bytes[0] != 0;
268 length /= 4; // length in bytes divided by 4 gives number of IFDs.
  /external/protobuf/src/google/protobuf/io/
coded_stream.cc 81 GOOGLE_LOG(WARNING) << "The total number of bytes read was " << total_bytes_read_;
209 << " bytes). To increase the limit (or to disable these "
303 uint8 bytes[sizeof(*value)]; local
307 // Fast path: Enough bytes in the buffer to read directly.
312 if (!ReadRaw(bytes, sizeof(*value))) return false;
313 ptr = bytes;
320 uint8 bytes[sizeof(*value)]; local
324 // Fast path: Enough bytes in the buffer to read directly.
329 if (!ReadRaw(bytes, sizeof(*value))) return false;
330 ptr = bytes;
715 uint8 bytes[sizeof(value)]; local
730 uint8 bytes[sizeof(value)]; local
745 uint8 bytes[kMaxVarint32Bytes]; local
836 uint8 bytes[kMaxVarintBytes]; local
    [all...]
  /external/regex-re2/re2/testing/
re2_test.cc 1003 // Both should match in either mode, bytes or UTF-8
1110 int bytes = 15 * 1024; \/\/ enough to crash PCRE local
    [all...]
  /external/skia/src/gpu/
SkGr.cpp 76 const uint8_t* bytes = data->bytes(); local
77 if (data->size() > ETC_PKM_HEADER_SIZE && etc1_pkm_is_valid(bytes)) {
80 if (etc1_pkm_get_width(bytes) != (unsigned)expectedW ||
81 etc1_pkm_get_height(bytes) != (unsigned)expectedH)
86 *outStartOfDataToUpload = bytes + ETC_PKM_HEADER_SIZE;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/array/
PrimitiveArrayTest.java 32 private final byte[] bytes = new byte[] { 1, 2, 3 }; field in class:PrimitiveArrayTest
42 String testInput = "- " + pkg + ".ByteArr [ " + Arrays.toString(bytes) + " ]\n" + "- "
54 Assert.assertArrayEquals(bytes, ((ByteArr) wrappers.get(0)).getBytes());
157 ByteArr byteArr = new ByteArr(bytes);
  /external/squashfs-tools/squashfs-tools/
mksquashfs.h 83 long long bytes; member in struct:file_info
  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
MachODump.cpp 132 StringRef bytes = MachOObj->getData(Sections[i].Offset, local
136 OS << '"' << bytes.substr(addr, bytes.find('\0', addr)) << '"';
139 OS << "@\"" << bytes.substr(addr, bytes.find('\0', addr)) << '"';
412 StringRef Bytes = MachOObj->getData(Sections[SectIdx].Offset,
414 StringRefMemoryObject memoryObject(Bytes);
448 // Normal disassembly, print addresses, bytes and mnemonic form.
458 DumpBytes(StringRef(Bytes.data() + Index, Size));
476 Size = 1; // skip illegible bytes
    [all...]
  /external/syslinux/com32/lua/src/
syslinux.c 122 size_t bytes; local
125 bytes = 1; /* Just in case we have a zero-entry cmdline */
127 bytes += strlen(*arg) + 1;
130 p = cmdline = malloc(bytes);
  /external/syslinux/gpxe/src/arch/i386/interface/pxe/
pxe_call.c 395 uint8_t *bytes = data; local
399 sum += *bytes++;
  /external/tremolo/Tremolo/
ogg.h 152 long bytes; member in struct:__anon33993
192 extern int ogg_sync_wrote(ogg_sync_state *oy, long bytes);
  /external/v8/src/heap/
gc-tracer.cc 366 void GCTracer::AddIncrementalMarkingStep(double duration, size_t bytes) {
367 if (bytes > 0) {
368 incremental_marking_bytes_ += bytes;
697 uint64_t bytes = sum.first; local
700 double speed = bytes / durations;
713 void GCTracer::RecordIncrementalMarkingSpeed(size_t bytes, double duration) {
714 if (duration == 0 || bytes == 0) return;
715 double current_speed = bytes / duration;
777 size_t bytes = new_space_allocation_in_bytes_since_gc_; local
780 MakeBytesAndDuration(bytes, durations), time_ms)
785 size_t bytes = old_generation_allocation_in_bytes_since_gc_; local
    [all...]
  /external/vixl/src/
utils-vixl.h 415 uint8_t bytes[8]; local
418 bytes[i] = (static_cast<uint64_t>(value) & mask) >> (i * 8);
433 temp |= bytes[permute_table[block_bytes_log2 - 1][i]];
  /external/webrtc/webrtc/modules/pacing/
paced_sender.cc 54 bytes(length_in_bytes),
63 size_t bytes; member in struct:webrtc::paced_sender::Packet
111 bytes_ += packet.bytes;
124 bytes_ -= packet.bytes;
191 // Total number of bytes in the queue.
214 int64_t bytes = target_rate_kbps_ * delta_time_ms / 8; local
217 bytes_remaining_ = bytes_remaining_ + bytes;
220 bytes_remaining_ = bytes;
224 void UseBudget(size_t bytes) {
225 bytes_remaining_ = std::max(bytes_remaining_ - static_cast<int>(bytes),
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_named_pipe.c 89 static VOID WINAPI ctrl_iface_read_completed(DWORD err, DWORD bytes,
96 static VOID WINAPI global_iface_read_completed(DWORD err, DWORD bytes,
254 static VOID WINAPI ctrl_iface_write_completed(DWORD err, DWORD bytes,
259 "err=%d bytes=%d", dst, (int) err, (int) bytes);
346 static VOID WINAPI ctrl_iface_read_completed(DWORD err, DWORD bytes,
351 "bytes=%d", dst, (int) err, (int) bytes);
352 if (err == 0 && bytes > 0)
353 wpa_supplicant_ctrl_iface_rx(dst, bytes);
361 DWORD bytes; local
779 DWORD bytes; local
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_primary.cpp 524 int32_t bytes = snprintf(buffer, MAX_SYSFS_COMMAND_LENGTH, "%d\n", level); local
525 if (bytes < 0) {
531 ssize_t ret = Sys::pwrite_(fd, buffer, static_cast<size_t>(bytes), 0);
570 ssize_t bytes = snprintf(buffer, kWriteLength, "%d", enable); local
576 if (HWDevice::SysFsWrite(kAutoRefreshNode, buffer, bytes) <= 0) { // Returns bytes written
  /hardware/qcom/display/msm8998/sdm/libs/core/fb/
hw_primary.cpp 534 int32_t bytes = snprintf(buffer, kMaxSysfsCommandLength, "%d\n", level); local
535 if (bytes < 0) {
541 ssize_t ret = Sys::pwrite_(fd, buffer, static_cast<size_t>(bytes), 0);
580 ssize_t bytes = snprintf(buffer, kWriteLength, "%d", enable); local
586 if (HWDevice::SysFsWrite(kAutoRefreshNode, buffer, bytes) <= 0) { // Returns bytes written
  /libcore/benchmarks/src/benchmarks/regression/
SerializationBenchmark.java 28 private static byte[] bytes(Object o) throws Exception { method in class:SerializationBenchmark
96 byte[] bytes = bytes(object);
97 ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FileOutputStreamTest.java 40 private byte[] bytes; field in class:FileOutputStreamTest
45 bytes = new byte[10];
46 for (int i = 0; i < bytes.length; i++) {
47 bytes[i] = (byte) i;
203 assertTrue("Incorrect bytes written", new String(rbytes, 0, fileString
294 fos.write(bytes);
307 fos.write(bytes);
309 fos.write(bytes);
311 fos.write(bytes);
328 fos.write(bytes);
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ArrayTest.java 24 private static byte[] bytes; field in class:ArrayTest
35 bytes = new byte[] { (byte) 0xff };
46 try { Array.getBoolean(bytes, 0); fail(); } catch (IllegalArgumentException expected) {}
58 assertEquals(bytes[0], Array.getByte(bytes, 0));
70 try { Array.getChar(bytes, 0); fail(); } catch (IllegalArgumentException expected) {}
82 assertEquals((double) bytes[0], Array.getDouble(bytes, 0));
94 assertEquals((float) bytes[0], Array.getFloat(bytes, 0))
    [all...]
  /libcore/luni/src/test/java/libcore/util/
ZoneInfoTest.java 379 byte[] bytes = builder.build();
381 createZoneInfo(getName(), System.currentTimeMillis(), bytes); local
395 byte[] bytes = builder.build();
397 createZoneInfo(getName(), System.currentTimeMillis(), bytes); local
411 byte[] bytes = builder.build();
413 createZoneInfo(getName(), System.currentTimeMillis(), bytes); local
427 byte[] bytes = builder.build();
429 createZoneInfo(getName(), System.currentTimeMillis(), bytes); local
451 byte[] bytes = builder.build();
453 createZoneInfo(getName(), System.currentTimeMillis(), bytes); local
477 createZoneInfo(getName(), System.currentTimeMillis(), bytes); local
501 createZoneInfo(getName(), System.currentTimeMillis(), bytes); local
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
ProcessEnvironment.java 31 * These are unsorted, case-sensitive, null-terminated arrays of bytes
129 protected final byte[] bytes; field in class:ProcessEnvironment.ExternalData
131 protected ExternalData(String str, byte[] bytes) {
133 this.bytes = bytes;
137 return bytes;
157 protected Variable(String str, byte[] bytes) {
158 super(str, bytes);
174 public static Variable valueOf(byte[] bytes) {
175 return new Variable(new String(bytes), bytes)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
test_memory_resource.hpp 274 std::size_t bytes = (s + BlockSize - 1) & ~(BlockSize - 1); local
275 bytes += BlockSize;
276 assert(bytes % BlockSize == 0);
277 return bytes / BlockSize;

Completed in 2103 milliseconds

<<31323334353637383940>>