HomeSort by relevance Sort by last modified time
    Searched full:num_bytes (Results 176 - 200 of 261) sorted by null

1 2 3 4 5 6 78 91011

  /external/chromium/net/server/
http_server.cc 205 void HttpServer::Connection::Shift(int num_bytes) {
206 recv_data_ = recv_data_.substr(num_bytes);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/llvm/
invocation.cpp 239 header.num_bytes = llvm_bitcode.size();
246 header.num_bytes, data));
  /external/mesa3d/src/gallium/state_trackers/clover/llvm/
invocation.cpp 239 header.num_bytes = llvm_bitcode.size();
246 header.num_bytes, data));
  /external/chromium/net/base/
upload_data_stream.h 43 void MarkConsumedAndFillBuffer(size_t num_bytes);
  /external/chromium/net/data/cache_tests/list_loop/
contents.txt 3 num_bytes: 52
  /external/chromium_org/media/audio/win/
audio_low_latency_input_win.cc 370 size_t num_bytes = num_frames_to_read * frame_size_; local
371 DCHECK_GE(capture_buffer_size, pos + num_bytes);
375 memset(&capture_buffer[pos], 0, num_bytes);
378 memcpy(&capture_buffer[pos], data_ptr, num_bytes);
  /external/chromium_org/net/data/cache_tests/list_loop/
contents.txt 3 num_bytes: 52
  /external/chromium_org/net/disk_cache/
disk_format.h 77 int32 num_bytes; // Total size of the stored data. member in struct:disk_cache::IndexHeader
eviction.cc 128 while ((header_->num_bytes > target_size || test_mode_) && next.get()) {
229 if (!FallingBehind(header_->num_bytes, max_size_) &&
347 while ((header_->num_bytes > target_size || test_mode_) &&
  /external/chromium_org/net/test/spawned_test_server/
spawner_communicator.h 104 virtual void OnReadCompleted(URLRequest* request, int num_bytes) OVERRIDE;
  /external/libyuv/files/include/libyuv/
mjpeg_decoder.h 148 long num_bytes); // NOLINT
  /external/srec/srec/EventLog/src/
EventLogImpl.c 689 ESR_ReturnCode SR_EventLog_AudioWrite(SR_EventLog* self, void* buffer, size_t num_bytes)
693 size_t size = num_bytes / impl->waveform_bytes_per_sample;
695 if (num_bytes > 0 && pfwrite(buffer, impl->waveform_bytes_per_sample, size, impl->waveformFile) != size)
706 impl->waveform_num_bytes += num_bytes;
  /external/chromium_org/chrome/test/pyautolib/
remote_inspector_client.py     [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
tcmalloc.cc 736 virtual void ReleaseToSystem(size_t num_bytes) {
738 if (num_bytes <= extra_bytes_released_) {
741 extra_bytes_released_ = extra_bytes_released_ - num_bytes;
744 num_bytes = num_bytes - extra_bytes_released_;
745 // num_bytes might be less than one page. If we pass zero to
748 Length num_pages = max<Length>(num_bytes >> kPageShift, 1);
751 if (bytes_released > num_bytes) {
752 extra_bytes_released_ = bytes_released - num_bytes;
754 // The PageHeap wasn't able to release num_bytes. Don't try t
    [all...]
  /external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
pnacl_shim.c     [all...]
  /external/chromium_org/native_client_sdk/src/examples/demo/drive/
drive.cc 146 size_t num_bytes = result; local
147 output->insert(output->end(), buffer_, buffer_ + num_bytes);
  /external/chromium_org/net/disk_cache/v3/
backend_worker.cc 426 if (data_->header.num_bytes < 0 ||
428 data_->header.num_bytes > max_size_ + kDefaultCacheSize)) {
disk_format_v3.h 64 int32 num_bytes; // Total size of the stored data. member in struct:disk_cache::IndexHeaderV3
  /external/libnfc-nci/src/adaptation/
libmain.c 52 NFC_API extern void *nfa_mem_co_alloc(UINT32 num_bytes)
54 return malloc(num_bytes);
  /external/libyuv/files/source/
mjpeg_decoder.cc 450 long num_bytes) { // NOLINT
451 cinfo->src->next_input_byte += num_bytes;
  /art/runtime/gc/
heap.h 131 mirror::Object* AllocObject(Thread* self, mirror::Class* klass, size_t num_bytes)
433 template <class T> mirror::Object* Allocate(Thread* self, T* space, size_t num_bytes, size_t* bytes_allocated)
439 mirror::Object* AllocateInternalWithGc(Thread* self, space::AllocSpace* space, size_t num_bytes,
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 113 void skip_input_data(j_decompress_ptr jd, long num_bytes);
570 void skip_input_data(j_decompress_ptr jd, long num_bytes)
573 src->decoder->skipBytes(num_bytes);
  /external/chromium_org/third_party/libXNVCtrl/
NVCtrl.c 525 req->num_bytes = size;
1083 req->num_bytes = inSize;
1096 outSize = rep.num_bytes;
    [all...]
  /external/valgrind/main/none/tests/s390x/
cu12.c 129 uint64_t num_bytes = dst_len - result.len1; local
132 if (num_bytes % 2 != 0)
135 for (i = 0; i < num_bytes / 2; i++) {
cu12_1.c 129 uint64_t num_bytes = dst_len - result.len1; local
132 if (num_bytes % 2 != 0)
135 for (i = 0; i < num_bytes / 2; i++) {

Completed in 807 milliseconds

1 2 3 4 5 6 78 91011