Searched defs:new_count (Results 1 - 20 of 20) sorted by relevance

/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
H A Dallocate_shared.pass.cpp26 int new_count = 0; variable
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_remove_constants.c72 unsigned new_count; local
103 new_count = 0;
107 remap_table[new_count] = i;
108 inv_remap_table[i] = new_count;
110 if (i != new_count) {
114 constants[new_count] = constants[i];
117 new_count++;
121 /* is_identity ==> new_count == old_count
122 * !is_identity ==> new_count < old_count */
123 assert( is_identity || new_count <
[all...]
/external/ltp/testcases/kernel/containers/pidns/
H A Dpidns05.c155 int orig_count, new_count, status = 0, i; local
164 new_count = find_cinit_pids(pids_new);
167 if (orig_count - 2 != new_count)
170 for (i = 0; i < new_count; i++) {
177 orig_count - new_count);
/external/sfntly/cpp/src/sfntly/port/
H A Drefcount.h143 size_t new_count = AtomicIncrement(&ref_count_); local
145 return new_count;
/external/v8/src/interpreter/
H A Dbytecode-register.h113 const RegisterList Truncate(int new_count) { argument
114 DCHECK_GE(new_count, 0);
115 DCHECK_LT(new_count, register_count_);
116 return RegisterList(first_reg_index_, new_count);
H A Dinterpreter-assembler.cc549 Node* new_count = SmiAdd(call_count, SmiConstant(1)); local
551 return StoreFixedArrayElement(feedback_vector, call_count_slot, new_count,
/external/opencv/cv/src/
H A Dcvapprox.cpp527 int i = 0, j, count = src_contour->total, new_count; local
685 new_count = count = (*dst_contour)->total;
686 for( i = !is_closed; i < count - !is_closed && new_count > 2; i++ )
696 new_count--;
711 if( new_count < count )
712 cvSeqPopMulti( *dst_contour, 0, count - new_count );
731 int i = 0, j, count = src_contour->total, new_count; local
890 new_count = count = (*dst_contour)->total;
891 for( i = !is_closed; i < count - !is_closed && new_count > 2; i++ )
901 new_count
[all...]
/external/v8/src/compiler/
H A Dwasm-compiler.h384 Node** Realloc(Node** buffer, size_t old_count, size_t new_count) { argument
385 Node** buf = Buffer(new_count);
/external/v8/src/heap/
H A Dremembered-set.h131 int new_count = 0; local
133 new_count +=
138 if (direction == OLD_TO_OLD && new_count == 0) {
196 int new_count = slots->Iterate(callback, TypedSlotSet::KEEP_EMPTY_CHUNKS); local
197 if (new_count == 0) {
H A Dslot-set.h179 int new_count = 0; local
219 new_count += in_bucket_count;
222 return new_count;
426 int new_count = 0;
440 new_count++;
464 return new_count;
/external/e2fsprogs/lib/ext2fs/
H A Dblkmap64_rb.c492 __u64 new_start, new_count; local
513 new_count = (ext->start + ext->count) - new_start;
517 rb_insert_extent(new_start, new_count, bp);
/external/mesa3d/src/amd/vulkan/winsys/amdgpu/
H A Dradv_amdgpu_cs.c368 unsigned new_count = MAX2(1, cs->max_num_buffers * 2); local
369 cs->handles = realloc(cs->handles, new_count * sizeof(amdgpu_bo_handle));
370 cs->priorities = realloc(cs->priorities, new_count * sizeof(uint8_t));
371 cs->max_num_buffers = new_count;
/external/mesa3d/src/intel/vulkan/
H A Danv_allocator.c211 unsigned new_count = PFL_COUNT(current) + 1; local
212 void *new = PFL_PACK(new_ptr, new_count);
240 unsigned new_count = PFL_COUNT(current) + 1; local
241 void *new = PFL_PACK(elem, new_count);
/external/v8/src/
H A Dfeedback-vector.cc624 int new_count = count->value() + 1; local
625 SetFeedbackExtra(Smi::FromInt(new_count), SKIP_WRITE_BARRIER);
H A Dcode-stubs.cc1748 Node* new_count = assembler.SmiAdd(call_count, assembler.SmiConstant(1)); local
1750 assembler.StoreFixedArrayElement(vector, slot, new_count, SKIP_WRITE_BARRIER,
H A Dobjects.cc14815 int new_count = 0; local
14819 if (i != new_count) {
14820 copy(i, new_count);
14822 new_count++;
14825 set_count(new_count);
14826 for (int i = new_count; i < old_count; i++) {
14829 return new_count < old_count;
/external/libpng/contrib/libtests/
H A Dpngunknown.c1215 int count = display_rc(&d, strict), new_count; local
1224 new_count = display_rc(&d, strict);
1226 if (new_count == count)
/external/pcre/dist2/src/
H A Dpcre2_dfa_match.c344 if (new_count++ < wscount) \
353 if (new_count++ < wscount) \
386 int active_count, new_count, match_count; local
418 new_count = 0;
510 new_count = workspace[1];
512 memcpy(new_states, active_states, (size_t)new_count * sizeof(stateblock));
556 active_count = new_count;
557 new_count = 0;
2870 if (i + 1 >= active_count && new_count == 0)
2942 else if (i + 1 >= active_count && new_count
[all...]
/external/blktrace/
H A Dblkparse.c325 int new_count = cpu + 1; local
329 size = new_count * sizeof(struct per_cpu_info);
339 new_space = (new_count - ncpus) * sizeof(struct per_cpu_info);
342 pdi->ncpus = new_count;
345 for (new_count = 0; new_count < pdi->ncpus; new_count++) {
346 struct per_cpu_info *pci = &pdi->cpus[new_count];
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader.c6912 unsigned new_count = 0; local
6931 V_008DFC_SQ_EXP_PARAM + new_count, 0));
6932 shader->info.vs_output_param_offset[out] = new_count;
6933 new_count++;
6937 shader->info.nr_param_exports = new_count;

Completed in 626 milliseconds