HomeSort by relevance Sort by last modified time
    Searched refs:new_count (Results 1 - 25 of 37) sorted by null

1 2

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
make_shared.pass.cpp 21 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);
allocate_shared.pass.cpp 23 int new_count = 0; variable
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_remove_constants.c 71 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 < c->Program.Constants.Count)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_remove_constants.c 71 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 < c->Program.Constants.Count)
    [all...]
  /external/freetype/src/base/
ftutil.c 95 FT_Long new_count,
103 cur_count, new_count, block, &error );
104 if ( !error && new_count > cur_count )
106 ( new_count - cur_count ) * item_size );
117 FT_Long new_count,
128 if ( cur_count < 0 || new_count < 0 || item_size < 0 )
133 else if ( new_count == 0 || item_size == 0 )
138 else if ( new_count > FT_INT_MAX/item_size )
146 block = ft_mem_alloc( memory, new_count*item_size, &error );
152 FT_Long new_size = new_count*item_size
    [all...]
  /system/core/toolbox/
dynarray.c 20 int new_count = a->count + count; local
28 new_count = a->count + count;
30 while (new_cap < new_count) {
  /external/chromium_org/ui/base/
latency_info.cc 64 uint32 new_count = event_count + it->second.event_count; local
65 if (event_count > 0 && new_count != 0) {
70 new_count;
71 it->second.event_count = new_count;
  /external/chromium_org/third_party/freetype/src/base/
ftutil.c 95 FT_Long new_count,
102 cur_count, new_count, block, &error );
103 if ( !error && new_count > cur_count )
105 ( new_count - cur_count ) * item_size );
116 FT_Long new_count,
127 if ( cur_count < 0 || new_count < 0 || item_size < 0 )
132 else if ( new_count == 0 || item_size == 0 )
137 else if ( new_count > FT_INT_MAX/item_size )
145 block = ft_mem_alloc( memory, new_count*item_size, &error );
151 FT_Long new_size = new_count*item_size
    [all...]
  /external/chromium_org/chrome/browser/thumbnails/
render_widget_snapshot_taker.cc 178 int new_count = ++host_monitor_counts_[renderer]; local
179 if (new_count == 1) {
186 int new_count = --host_monitor_counts_[renderer]; local
187 if (new_count == 0) {
  /external/chromium/third_party/libevent/
poll.c 260 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/libevent/
poll.c 260 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;
  /art/runtime/mirror/
string.h 125 void SetCount(int32_t new_count) {
126 DCHECK_LE(0, new_count);
127 SetField32(OFFSET_OF_OBJECT_MEMBER(String, count_), new_count, false); local
  /external/sfntly/cpp/src/sfntly/port/
refcount.h 146 size_t new_count = AtomicIncrement(&ref_count_); local
148 return new_count;
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_texture.c 268 GLuint unit, new_count; local
301 new_count = MAX2(*num_textures, old_max);
302 assert(new_count <= max_units);
306 new_count,
  /external/mesa3d/src/mesa/state_tracker/
st_atom_texture.c 268 GLuint unit, new_count; local
301 new_count = MAX2(*num_textures, old_max);
302 assert(new_count <= max_units);
306 new_count,
  /external/opencv/cv/src/
cvapprox.cpp 527 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...]
  /frameworks/native/services/surfaceflinger/
EventThread.cpp 79 const int32_t new_count = (count == 0) ? -1 : count; local
80 if (connection->count != new_count) {
81 connection->count = new_count;
  /external/chromium_org/gpu/command_buffer/service/
gpu_scheduler.cc 290 int new_count = unscheduled_count_ + rescheduled_count_; local
297 rescheduled_count_ = new_count;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
thread_cache.h 187 void set_length_overages(size_t new_count) {
188 length_overages_ = new_count;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
thread_cache.h 182 void set_length_overages(size_t new_count) {
183 length_overages_ = new_count;
  /external/qemu/telephony/
gsm.c 283 gsm_rope_ensure( GsmRope rope, int new_count )
291 while (new_max < new_count) {
302 rope->max = new_count;
  /external/chromium_org/third_party/freetype/include/freetype/internal/
ftmemory.h 127 FT_Long new_count,
135 FT_Long new_count,
  /external/freetype/include/freetype/internal/
ftmemory.h 127 FT_Long new_count,
135 FT_Long new_count,
  /external/chromium_org/tools/stats_viewer/
stats_viewer.cs 458 int new_count = new_rate.GetCount(filter_pid);
461 int new_avg = new_count > 0 ? (new_time / new_count) : 0;
464 SetSubItem(SubItems[column_count_index], new_count);
  /external/chromium_org/v8/src/
preparser.cc 1052 unsigned new_count = 0; local
    [all...]

Completed in 1089 milliseconds

1 2