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

1 2

  /hardware/qcom/media/mm-video-legacy/vidc/vdec/src/
queue.c 47 int current_size; member in struct:Queue
56 q->current_size = 0;
63 while (q->current_size)
71 while (q->current_size)
89 if (q->current_size == 0)
99 q->current_size++;
109 if (q->current_size == 0)
115 if (q->current_size == 1)
125 q->current_size--;
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
queue.c 45 int current_size; member in struct:Queue
54 q->current_size = 0;
62 while (q->current_size) {
69 while (q->current_size) {
87 if (q->current_size == 0) {
94 q->current_size++;
104 if (q->current_size == 0)
110 if (q->current_size == 1) {
117 q->current_size--;
  /system/core/fastbootd/commands/
flash.c 98 int current_size = MIN(size - written, BUFFER_SIZE); local
100 if (gpt_mmap(&input, written + skip, current_size, data_fd)) {
101 D(ERR, "Error in writing data, unable to map data file %zd at %zd size %d", size, skip, current_size);
104 if (gpt_mmap(&output, written, current_size, partition_fd)) {
109 memcpy(output.ptr, input.ptr, current_size);
114 written += current_size;
boot.c 156 int current_size; local
182 current_size = (sizeof(struct atag_info) + sizeof(struct atag_initrd2)) / sizeof(unsigned);
185 .size = current_size,
196 new_atags_size += current_size;
197 natags_raw_buff += current_size;
202 current_size = sizeof(struct atag_info) + (1 + cmdl_length);
203 current_size = (current_size + sizeof(unsigned) - 1) / sizeof(unsigned);
206 .size = current_size,
216 new_atags_size += current_size;
    [all...]
  /external/chromium_org/content/renderer/
image_loading_helper.cc 75 uint32_t current_size = std::max(it->width(), it->height()); local
76 if (current_size < min_image_size) {
78 min_image_size = current_size;
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediarecorder.cc 81 size_t current_size; local
82 if (writer_->GetDumpSize(&current_size) &&
83 current_size + RtpDumpPacket::kHeaderLength + size <= max_size_) {
  /external/chromium_org/gpu/command_buffer/client/
fenced_allocator.cc 134 unsigned int current_size = 0; local
138 max_size = std::max(max_size, current_size);
139 current_size = 0;
142 current_size += block.size;
145 return std::max(max_size, current_size);
  /external/chromium_org/net/disk_cache/blockfile/
backend_worker_v3.cc 360 size_t current_size = index_->GetLength(); local
361 if (current_size < sizeof(Index)) {
390 if (current_size < GetIndexSize(data_->header.table_len) ||
416 scoped_ptr<char[]> buf(new char[current_size]);
417 return index_->Read(buf.get(), current_size, 0);
  /external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/
font_assembler.cc 160 int32_t current_size = loca_table->header_length(); local
161 if (previous_size != -1 && current_size != previous_size) {
164 previous_size = current_size;
  /external/oprofile/libdb/
odb.h 54 odb_node_nr_t current_size; /**< nr used node + 1, node 0 unused */ member in struct:__anon33034
139 * grow the hashtable in such way current_size is the index of the first free
158 ++data->descr->current_size;
  /external/sfntly/cpp/src/sample/subtly/
font_assembler.cc 160 int32_t current_size = loca_table->header_length(); local
161 if (previous_size != -1 && current_size != previous_size) {
164 previous_size = current_size;
  /external/chromium_org/base/memory/
shared_memory_posix.cc 222 const size_t current_size = stat.st_size; local
223 if (current_size != options.size) {
  /external/chromium_org/third_party/libwebp/utils/
bit_writer.c 213 const size_t current_size = bw->cur_ - bw->buf_; local
214 const uint64_t size_required_64b = (uint64_t)current_size + extra_size;
230 if (current_size > 0) {
231 memcpy(allocated_buf, bw->buf_, current_size);
235 bw->cur_ = bw->buf_ + current_size;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup.c 809 unsigned current_size = buffer->width0; local
814 if(setup->constants.stored_size != current_size ||
818 current_size) != 0) {
821 stored = lp_scene_alloc(scene, current_size);
829 current_size);
830 setup->constants.stored_size = current_size;
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_save.h 74 GLuint current_size; member in struct:vbo_save_vertex_list