HomeSort by relevance Sort by last modified time
    Searched defs:current_size (Results 1 - 25 of 42) 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--;
  /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/base/
shared_memory_posix.cc 143 const uint32 current_size = stat.st_size; local
144 if (current_size != size) {
  /external/chromium_org/gpu/command_buffer/client/
fenced_allocator.cc 132 unsigned int current_size = 0; local
136 max_size = std::max(max_size, current_size);
137 current_size = 0;
140 current_size += block.size;
143 return std::max(max_size, current_size);
  /external/chromium_org/net/disk_cache/v3/
backend_worker.cc 387 size_t current_size = index_->GetLength(); local
388 if (current_size < sizeof(Index)) {
417 if (current_size < GetIndexSize(data_->header.table_len) ||
443 scoped_ptr<char[]> buf(new char[current_size]);
444 return index_->Read(buf.get(), current_size, 0);
  /external/chromium_org/third_party/libwebp/utils/
bit_writer.c 202 const size_t current_size = VP8LBitWriterNumBytes(bw); local
203 const uint64_t size_required_64b = (uint64_t)current_size + extra_size;
219 memcpy(allocated_buf, bw->buf_, current_size);
223 memset(allocated_buf + current_size, 0, allocated_size - current_size);
  /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:__anon24366
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/webp/src/utils/
bit_writer.c 202 const size_t current_size = VP8LBitWriterNumBytes(bw); local
203 const uint64_t size_required_64b = (uint64_t)current_size + extra_size;
219 memcpy(allocated_buf, bw->buf_, current_size);
223 memset(allocated_buf + current_size, 0, allocated_size - current_size);
  /external/chromium_org/base/memory/
shared_memory_posix.cc 217 const size_t current_size = stat.st_size; local
218 if (current_size != options.size) {
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
display_options_handler.cc 216 gfx::Size current_size = display_info.bounds_in_native().size(); local
232 resolution_info->SetBoolean("selected", (resolution == 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
  /external/mesa3d/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/mesa3d/src/mesa/vbo/
vbo_save.h 74 GLuint current_size; member in struct:vbo_save_vertex_list
  /external/chromium_org/base/metrics/
histogram.cc 430 double current_size = GetBucketSize(current, i); local
432 WriteAsciiBucketGraph(current_size, max_size, output);
443 double current_size = GetBucketSize(samples.GetCountAtIndex(i), i); local
444 if (current_size > max)
445 max = current_size;
  /external/chromium_org/content/browser/fileapi/
copy_or_move_operation_delegate_unittest.cc 691 int64 current_size = 0; local
696 EXPECT_GE(records[j].size, current_size);
697 current_size = records[j].size;
  /external/chromium_org/third_party/libwebp/dec/
idec.c 171 const size_t current_size = MemDataSize(mem) + new_mem_start; local
172 const uint64_t new_size = (uint64_t)current_size + data_size;
177 memcpy(new_buf, old_base, current_size);
182 mem->end_ = current_size;
  /external/webp/src/dec/
idec.c 171 const size_t current_size = MemDataSize(mem) + new_mem_start; local
172 const uint64_t new_size = (uint64_t)current_size + data_size;
177 memcpy(new_buf, old_base, current_size);
182 mem->end_ = current_size;
  /ndk/sources/host-tools/make-3.81/
alloca.c 315 long current_size; /* Current stack segment size. This member in struct:stk_stat
372 + status.current_size
  /ndk/sources/host-tools/sed-4.2.1/lib/
alloca.c 303 long current_size; /* Current stack segment size. This member in struct:stk_stat
360 + status.current_size
  /external/chromium/base/metrics/
histogram.cc 201 double current_size = GetBucketSize(current, i); local
203 WriteAsciiBucketGraph(current_size, max_size, output);
604 double current_size = GetBucketSize(snapshot.counts(i), i); local
605 if (current_size > max)
606 max = current_size;
647 void Histogram::WriteAsciiBucketGraph(double current_size, double max_size,
650 int x_count = static_cast<int>(k_line_length * (current_size / max_size)
    [all...]

Completed in 1997 milliseconds

1 2