/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...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/ |
allocate_shared.pass.cpp | 23 int new_count = 0; variable
|
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);
|
/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) {
|
/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/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/gpu/command_buffer/service/ |
gpu_scheduler.cc | 291 int new_count = unscheduled_count_ + rescheduled_count_; local 298 rescheduled_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;
|
/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/chromium_org/third_party/sfntly/cpp/src/sfntly/port/ |
refcount.h | 146 size_t new_count = AtomicIncrement(&ref_count_); local 148 return new_count;
|
/external/chromium_org/ui/events/ |
latency_info.cc | 180 uint32 new_count = event_count + it->second.event_count; local 181 if (event_count > 0 && new_count != 0) { 186 new_count; 187 it->second.event_count = 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/sfntly/cpp/src/sfntly/port/ |
refcount.h | 146 size_t new_count = AtomicIncrement(&ref_count_); local 148 return new_count;
|
/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/base/memory/ |
scoped_ptr_unittest.cc | 70 static int new_count() { return g_new_count; } function in class:__anon6251::OverloadedNewAndDelete 603 EXPECT_EQ(1, OverloadedNewAndDelete::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...] |
/external/chromium_org/v8/src/ |
preparser.cc | 1030 unsigned new_count = 0; local 1033 new_count++; 1036 return ParseMemberWithNewPrefixesExpression(new_count, ok); 1046 unsigned new_count, bool* ok) { [all...] |
/external/v8/src/ |
preparser.cc | 1011 unsigned new_count = 0; local 1014 new_count++; 1017 return ParseMemberWithNewPrefixesExpression(new_count, ok); 1027 unsigned new_count, bool* ok) { [all...] |
liveobjectlist.cc | 2416 int new_count = lol->obj_count_; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d11/ |
d3d11_context.h | 1298 unsigned new_count, i; local [all...] |
/external/chromium_org/v8/test/cctest/ |
test-heap.cc | 3599 int new_count = AllocationSitesCount(heap); local [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
d3d11_context.h | 1298 unsigned new_count, i; local [all...] |
/external/blktrace/ |
blkparse.c | 325 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]; [all...] |