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

12

/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
H A Dallocate_shared.pass.cpp23 int new_count = 0; variable
H A Dmake_shared.pass.cpp21 int new_count = 0; variable
25 ++new_count;
55 int nc = new_count;
60 assert(new_count == nc+1);
66 nc = new_count;
70 assert(new_count == nc+1);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_remove_constants.c71 unsigned new_count; local
102 new_count = 0;
106 remap_table[new_count] = i;
107 inv_remap_table[i] = new_count;
109 if (i != new_count) {
113 constants[new_count] = constants[i];
116 new_count++;
120 /* is_identity ==> new_count == old_count
121 * !is_identity ==> new_count < old_count */
122 assert( is_identity || new_count <
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_remove_constants.c71 unsigned new_count; local
102 new_count = 0;
106 remap_table[new_count] = i;
107 inv_remap_table[i] = new_count;
109 if (i != new_count) {
113 constants[new_count] = constants[i];
116 new_count++;
120 /* is_identity ==> new_count == old_count
121 * !is_identity ==> new_count < old_count */
122 assert( is_identity || new_count <
[all...]
/external/chromium_org/third_party/libevent/
H A Dpoll.c260 int new_count; local
262 new_count = 32;
264 new_count = pop->fd_count * 2;
265 while (new_count <= ev->ev_fd)
266 new_count *= 2;
268 realloc(pop->idxplus1_by_fd, new_count * sizeof(int));
275 0, sizeof(int)*(new_count - pop->fd_count));
276 pop->fd_count = new_count;
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Drefcount.h146 size_t new_count = AtomicIncrement(&ref_count_); local
148 return new_count;
/external/sfntly/cpp/src/sfntly/port/
H A Drefcount.h146 size_t new_count = AtomicIncrement(&ref_count_); local
148 return new_count;
/external/chromium_org/base/memory/
H A Dscoped_ptr_unittest.cc70 static int new_count() { return g_new_count; } function in class:__anon2356::OverloadedNewAndDelete
603 EXPECT_EQ(1, OverloadedNewAndDelete::new_count());
/external/chromium_org/gpu/command_buffer/service/
H A Dgpu_scheduler.cc290 int new_count = unscheduled_count_ + rescheduled_count_; local
297 rescheduled_count_ = new_count;
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_atom_texture.c268 GLuint unit, new_count; local
301 new_count = MAX2(*num_textures, old_max);
302 assert(new_count <= max_units);
306 new_count,
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dthread_cache.h182 void set_length_overages(size_t new_count) { argument
183 length_overages_ = new_count;
/external/chromium_org/ui/events/
H A Dlatency_info.cc263 uint32 new_count = event_count + it->second.event_count; local
264 if (event_count > 0 && new_count != 0) {
269 new_count;
270 it->second.event_count = new_count;
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_texture.c268 GLuint unit, new_count; local
301 new_count = MAX2(*num_textures, old_max);
302 assert(new_count <= max_units);
306 new_count,
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_path.cpp176 int new_count = m_PointCount + addPoints; local
177 if (!AllocPointCount(new_count)) {
180 m_PointCount = new_count;
457 int new_count = t_path.GetPointCount();
459 t_path.SetPoint(new_count, m_pPoints[mid - i].m_PointX, m_pPoints[mid - i].m_PointY, FXPT_MOVETO);
460 t_path.SetPoint(new_count + 1, m_pPoints[mid - i - 1].m_PointX, m_pPoints[mid - i - 1].m_PointY, FXPT_LINETO);
485 int new_count = NewPath.GetPointCount();
487 NewPath.SetPoint(new_count, m_pPoints[pre].m_PointX, m_pPoints[pre].m_PointY, FXPT_MOVETO);
488 NewPath.SetPoint(new_count + 1, m_pPoints[next].m_PointX, m_pPoints[next].m_PointY, FXPT_LINETO);
497 int new_count
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dthread_cache.h187 void set_length_overages(size_t new_count) { argument
188 length_overages_ = 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/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/chromium_org/third_party/cython/src/Cython/Utility/
H A DBuffer.c89 size_t new_count, enc_count; member in struct:__anon11733
235 ctx->new_count = 1;
588 if (ctx->new_count != 1) {
632 ctx->new_count = 1;
684 size_t i, struct_count = ctx->new_count;
686 ctx->new_count = 1;
720 ctx->fmt_offset += ctx->new_count;
721 ctx->new_count = 1;
742 ctx->enc_count += ctx->new_count;
743 ctx->new_count
[all...]
/external/libpng/contrib/libtests/
H A Dpngunknown.c1166 int count = display_rc(&d, strict), new_count; local
1175 new_count = display_rc(&d, strict);
1177 if (new_count == count)
/external/pcre/dist/
H A Dpcre_dfa_exec.c374 if (new_count++ < wscount) \
384 if (new_count++ < wscount) \
418 int active_count, new_count, match_count; local
454 new_count = 0;
546 new_count = workspace[1];
548 memcpy(new_states, active_states, new_count * sizeof(stateblock));
592 active_count = new_count;
593 new_count = 0;
2939 if (i + 1 >= active_count && new_count == 0)
3011 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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11_context.h1298 unsigned new_count, i; local
1305 for(new_count = 0, i = 0; i < count; ++i)
1317 new_count = i + 1;
1340 num_so_targets = new_count;
/external/chromium_org/v8/test/cctest/
H A Dtest-heap.cc3880 int new_count = AllocationSitesCount(heap); local
3881 CHECK_EQ(new_count, (count + 1));
/external/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp521 int new_count = Debugger::TestDebuggerRefCount(); local
523 if (new_count > old_count)
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11_context.h1298 unsigned new_count, i; local
1305 for(new_count = 0, i = 0; i < count; ++i)
1317 new_count = i + 1;
1340 num_so_targets = new_count;

Completed in 6740 milliseconds

12