Searched refs:new_count (Results 1 - 9 of 9) sorted by relevance

/external/freetype/src/base/
H A Dftutil.c95 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_siz
[all...]
/external/chromium/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/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/qemu/telephony/
H A Dgsm.c283 gsm_rope_ensure( GsmRope rope, int new_count )
291 while (new_max < new_count) {
302 rope->max = new_count;
/external/freetype/include/freetype/internal/
H A Dftmemory.h127 FT_Long new_count,
135 FT_Long new_count,
/external/v8/src/
H A Dpreparser.cc1011 unsigned new_count = 0; local
1014 new_count++;
1017 return ParseMemberWithNewPrefixesExpression(new_count, ok);
1027 unsigned new_count, bool* ok) {
1076 if (new_count == 0) return result;
1079 new_count--;
1026 ParseMemberWithNewPrefixesExpression( unsigned new_count, bool* ok) argument
H A Dliveobjectlist.cc2416 int new_count = lol->obj_count_; local
2419 if (new_count == 0) {
2445 int diff = lol->capacity_ - new_count;
2449 Element* new_elements = NewArray<Element>(new_count);
2450 memcpy(new_elements, elements, new_count * sizeof(Element));
2454 lol->capacity_ = new_count;
2456 ASSERT(lol->obj_count_ == new_count);
H A Dpreparser.h556 Expression ParseMemberWithNewPrefixesExpression(unsigned new_count, bool* ok);
/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];

Completed in 212 milliseconds