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

1 2

  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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...]
  /external/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
  /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/chromium_org/third_party/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...]
  /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/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/pdfium/core/src/fxge/ge/
fx_ge_path.cpp 176 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 = NewPath.GetPointCount();
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Utility/
Buffer.c 89 size_t new_count, enc_count; member in struct:__anon16358
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 = 1
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
trace_impl.h 101 const uint32_t new_count) const;
106 const uint32_t new_count) const;
  /external/pdfium/core/include/thirdparties/freetype/freetype/internal/
ftmemory.h 127 FT_Long new_count,
135 FT_Long new_count,
157 FT_Long new_count,
165 FT_Long new_count,
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
ftmemory.h 127 FT_Long new_count,
135 FT_Long new_count,
157 FT_Long new_count,
165 FT_Long new_count,
  /art/runtime/mirror/
string.h 140 void SetCount(int32_t new_count) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
143 DCHECK_LE(0, new_count);
144 SetField32<false, false>(OFFSET_OF_OBJECT_MEMBER(String, count_), new_count); local
  /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/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/ui/events/
latency_info.cc 263 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/
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/freetype/include/freetype/internal/
ftmemory.h 127 FT_Long new_count,
135 FT_Long new_count,
  /external/freetype/include/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/gpu/command_buffer/service/
gpu_scheduler.cc 290 int new_count = unscheduled_count_ + rescheduled_count_; local
297 rescheduled_count_ = new_count;

Completed in 2771 milliseconds

1 2