HomeSort by relevance Sort by last modified time
    Searched full:num_bytes (Results 151 - 175 of 306) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/qemu/distrib/libpng-1.2.19/
png.c 90 /* Tells libpng that we have already handled the first "num_bytes" bytes
92 * stream we can set num_bytes = 8 so that libpng will not attempt to read
98 png_set_sig_bytes(png_structp png_ptr, int num_bytes)
102 if (num_bytes > 8)
105 png_ptr->sig_bytes = (png_byte)(num_bytes < 0 ? 0 : num_bytes);
159 png_uint_32 num_bytes; local
167 num_bytes = (png_uint_32)items * size;
170 ptr = (png_voidp)png_malloc((png_structp)png_ptr, num_bytes);
177 if (num_bytes > (png_uint_32)0x8000L
    [all...]
  /hardware/qcom/msm8x74/original-kernel-headers/media/
msm_cam_sensor.h 339 uint16_t num_bytes; member in struct:eeprom_get_t
344 uint16_t num_bytes; member in struct:eeprom_read_t
349 uint16_t num_bytes; member in struct:eeprom_write_t
  /art/runtime/gc/space/
large_object_space.cc 58 mirror::Object* LargeObjectMapSpace::Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated) {
59 MemMap* mem_map = MemMap::MapAnonymous("large object space allocation", NULL, num_bytes,
249 mirror::Object* FreeListSpace::Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated) {
251 size_t allocation_size = RoundUp(num_bytes + sizeof(AllocationHeader), kAlignment);
256 // Find the smallest chunk at least num_bytes in size.
space.h 157 // Allocate num_bytes without allowing growth. If the allocation
159 // actually allocated bytes which is >= num_bytes.
160 virtual mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated) = 0;
  /external/chromium_org/native_client_sdk/src/doc/devguide/coding/
url-loading.rst 233 void URLLoaderHandler::AppendDataBytes(const char* buffer, int32_t num_bytes) {
234 if (num_bytes <= 0)
236 num_bytes = std::min(READ_BUFFER_SIZE, num_bytes);
238 url_response_body_.end(), buffer, buffer + num_bytes);
  /external/chromium_org/v8/src/
v8utils.h 176 inline void CopyBytes(T* dst, const T* src, size_t num_bytes) {
178 ASSERT(Min(dst, const_cast<T*>(src)) + num_bytes <=
180 if (num_bytes == 0) return;
186 if (num_bytes < static_cast<size_t>(kBlockCopyLimit)) {
188 num_bytes--;
190 } while (num_bytes > 0);
192 OS::MemCopy(dst, src, num_bytes);
  /external/valgrind/main/VEX/priv/
guest_s390_helpers.c 331 s390x_dirtyhelper_CUxy(UChar *address, ULong data, ULong num_bytes)
335 vassert(num_bytes >= 1 && num_bytes <= 4);
337 /* Store the least significant NUM_BYTES bytes in DATA left to right
339 for (i = 1; i <= num_bytes; ++i) {
340 address[num_bytes - i] = data & 0xff;
358 | 0x0 | converted bytes | num_bytes | invalid_low_surrogate |
365 UInt b1, b2, b3, b4, num_bytes, invalid_low_surrogate = 0; local
371 num_bytes = 1;
373 num_bytes = 2
505 UInt num_bytes, invalid_character = 0; local
552 UInt num_bytes, invalid_character = 0; local
658 UInt num_bytes = 0, invalid_character = 0; local
    [all...]
  /external/chromium_org/net/disk_cache/v3/
backend_impl_v3.cc 241 if (data_->header.num_bytes > max_size_ && !read_only_ &&
352 static_cast<int>((data_->header.num_bytes / 1024) / use_time));
354 int avg_size = data_->header.num_bytes / GetEntryCount();
358 int large_ratio = large_entries_bytes * 100 / data_->header.num_bytes;
525 int current_size = data_->header.num_bytes / (1024 * 1024);
774 item.second = base::StringPrintf("%d", data_->header.num_bytes);
818 available += data_->header.num_bytes;
1119 data_->header.num_bytes += bytes;
1120 DCHECK_GE(data_->header.num_bytes, 0);
1124 data_->header.num_bytes -= bytes
    [all...]
  /external/chromium_org/base/
pickle.h 51 // num_bytes available. Otherwise, does nothing and returns false.
52 bool SkipBytes(int num_bytes) WARN_UNUSED_RESULT {
53 return !!GetReadPointerAndAdvance(num_bytes);
70 // Get read pointer for |num_bytes| and advance read pointer. This method
71 // checks num_bytes for negativity and wrapping.
72 const char* GetReadPointerAndAdvance(int num_bytes);
  /external/chromium_org/chrome/browser/chromeos/drive/
file_cache.cc 83 bool FileCache::FreeDiskSpaceIfNeededFor(int64 num_bytes) {
87 if (HasEnoughSpaceFor(num_bytes, cache_file_directory_))
91 DVLOG(1) << "Freeing up disk space for " << num_bytes;
118 return HasEnoughSpaceFor(num_bytes, cache_file_directory_);
483 bool FileCache::HasEnoughSpaceFor(int64 num_bytes,
493 return (free_space >= num_bytes);
  /external/chromium_org/components/sessions/
serialized_navigation_entry.cc 170 int num_bytes = str.size() * sizeof(char); local
171 if (*bytes_written + num_bytes < max_bytes) {
172 *bytes_written += num_bytes;
186 int num_bytes = str.size() * sizeof(char16); local
187 if (*bytes_written + num_bytes < max_bytes) {
188 *bytes_written += num_bytes;
  /external/chromium_org/mojo/system/
core_impl.cc 178 uint32_t num_bytes,
188 return dispatcher->WriteMessage(bytes, num_bytes, NULL, flags);
274 MojoResult rv = dispatcher->WriteMessage(bytes, num_bytes,
314 uint32_t* num_bytes,
331 return dispatcher->ReadMessage(bytes, num_bytes, NULL, num_handles, flags);
334 MojoResult rv = dispatcher->ReadMessage(bytes, num_bytes,
  /external/chromium_org/cloud_print/service/
service_state.cc 66 int num_bytes = 0; local
67 while (request->Read(buf.get(), kBufSize, &num_bytes)) {
68 data_.append(buf->data(), buf->data() + num_bytes);
  /external/chromium_org/mojo/public/bindings/sample/
sample_service_unittests.cc 194 static void DumpHex(const uint8_t* bytes, uint32_t num_bytes) {
195 for (uint32_t i = 0; i < num_bytes; ++i) {
238 message->data->header.num_bytes);
  /external/chromium_org/remoting/client/
audio_player_unittest.cc 62 // Check that the first |num_bytes| bytes are filled with audio data and
64 void CheckAudioFrameBytes(int num_bytes) {
67 for (; i < num_bytes; i++) {
  /external/chromium_org/third_party/libpng/
png.c 91 /* Tells libpng that we have already handled the first "num_bytes" bytes
93 * stream we can set num_bytes = 8 so that libpng will not attempt to read
99 png_set_sig_bytes(png_structp png_ptr, int num_bytes)
106 if (num_bytes > 8)
109 png_ptr->sig_bytes = (png_byte)(num_bytes < 0 ? 0 : num_bytes);
163 png_uint_32 num_bytes; local
172 num_bytes = (png_uint_32)items * size;
175 ptr = (png_voidp)png_malloc((png_structp)png_ptr, num_bytes);
182 if (num_bytes > (png_uint_32)0x8000L
    [all...]
  /external/valgrind/main/none/tests/s390x/
cu24.c 98 uint64_t num_bytes = dst_len - result.len1; local
101 if (num_bytes % 4 != 0)
104 for (i = 0; i < num_bytes / 4; i++) {
cu24_1.c 98 uint64_t num_bytes = dst_len - result.len1; local
101 if (num_bytes % 4 != 0)
104 for (i = 0; i < num_bytes / 4; i++) {
  /external/chromium/net/server/
http_server.h 66 void Shift(int num_bytes);
  /external/chromium_org/mojo/public/bindings/lib/
bindings_serialization.cc 42 const uint8_t* data_end = data_start + message.data->header.num_bytes;
  /external/chromium_org/mojo/public/system/
core.h 351 // with message data specified by |bytes| of size |num_bytes| and attached
354 // |num_bytes| must be zero. If there are no attached handles, |handles| may be
379 uint32_t num_bytes,
386 // discard the next message. |bytes|/|*num_bytes| indicate the buffer/buffer
391 // |num_bytes| and |num_handles| are optional "in-out" parameters. If non-null,
392 // on return |*num_bytes| and |*num_handles| will usually indicate the number
397 // If |bytes| is null, then |*num_bytes| must be zero, and similarly for
412 // message/attached handles (|bytes|/|*num_bytes| or
418 uint32_t* num_bytes,
  /external/harfbuzz_ng/util/
helper-cairo.cc 457 l->clusters[cluster].num_bytes = end - start;
463 l->clusters[cluster].num_bytes = l->utf8 + text_len - start;
472 l->clusters[cluster].num_bytes = end - start;
478 l->clusters[cluster].num_bytes = l->utf8 + text_len - start;
  /external/srec/srec/EventLog/include/
SR_EventLog.h 230 * @param num_bytes The number of bytes in the buffer.
232 ESR_ReturnCode(*audioWrite)(struct SR_EventLog_t* self, void* buffer, size_t num_bytes);
351 * @param num_bytes The number of bytes in the buffer.
353 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLogAudioWrite(SR_EventLog* self, void* buffer, size_t num_bytes);
SR_EventLogImpl.h 96 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_AudioWrite(SR_EventLog* self, void* buffer, size_t num_bytes);
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
inv_sysfs_utils.h 58 int inv_sysfs_read(char *filename, long num_bytes, char *data);

Completed in 1107 milliseconds

1 2 3 4 5 67 8 91011>>