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

1 2

  /external/freetype/src/base/
ftutil.c 93 FT_Long item_size,
102 block = ft_mem_qrealloc( memory, item_size,
105 FT_MEM_ZERO( (char*)block + cur_count * item_size,
106 ( new_count - cur_count ) * item_size );
115 FT_Long item_size,
124 /* Note that we now accept `item_size == 0' as a valid parameter, in
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 )
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftutil.c 93 FT_Long item_size,
101 block = ft_mem_qrealloc( memory, item_size,
104 FT_MEM_ZERO( (char*)block + cur_count * item_size,
105 ( new_count - cur_count ) * item_size );
114 FT_Long item_size,
123 /* Note that we now accept `item_size == 0' as a valid parameter, in
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 )
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/internal/
ftmemory.h 125 FT_Long item_size,
133 FT_Long item_size,
177 #define FT_MEM_ALLOC_MULT( ptr, count, item_size ) \
178 FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, (item_size), \
187 #define FT_MEM_QALLOC_MULT( ptr, count, item_size ) \
188 FT_ASSIGNP_INNER( ptr, ft_mem_qrealloc( memory, (item_size), \
266 #define FT_ALLOC_MULT( ptr, count, item_size ) \
267 FT_MEM_SET_ERROR( FT_MEM_ALLOC_MULT( ptr, count, item_size ) )
279 #define FT_QALLOC_MULT( ptr, count, item_size ) \
280 FT_MEM_SET_ERROR( FT_MEM_QALLOC_MULT( ptr, count, item_size ) )
    [all...]
  /external/freetype/include/freetype/internal/
ftmemory.h 125 FT_Long item_size,
133 FT_Long item_size,
182 #define FT_MEM_ALLOC_MULT( ptr, count, item_size ) \
184 (FT_Long)(item_size), \
198 #define FT_MEM_QALLOC_MULT( ptr, count, item_size ) \
200 (FT_Long)(item_size), \
294 #define FT_ALLOC_MULT( ptr, count, item_size ) \
295 FT_MEM_SET_ERROR( FT_MEM_ALLOC_MULT( ptr, count, item_size ) )
307 #define FT_QALLOC_MULT( ptr, count, item_size ) \
308 FT_MEM_SET_ERROR( FT_MEM_QALLOC_MULT( ptr, count, item_size ) )
    [all...]
  /bionic/libc/include/
malloc.h 31 extern void* calloc(size_t item_count, size_t item_size) __mallocfunc __wur;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_slab.c 138 unsigned item_size,
142 item_size = align(item_size, sizeof(intptr_t));
146 pool->block_size = sizeof(struct util_slab_block) + item_size;
u_slab.h 75 unsigned item_size,
  /external/mesa3d/src/gallium/auxiliary/util/
u_slab.c 138 unsigned item_size,
142 item_size = align(item_size, sizeof(intptr_t));
146 pool->block_size = sizeof(struct util_slab_block) + item_size;
u_slab.h 75 unsigned item_size,
  /packages/inputmethods/PinyinIME/jni/include/
spellingtable.h 94 // item_size and spl_num return the item size and number of spelling.
95 // Because each spelling uses a '\0' as terminator, the returned item_size is
97 // init_table(). If the table is initialized to calculate score, item_size
98 // will be increased by 1, and current_spl_str[item_size - 1] stores an
102 const char* arrange(size_t *item_size, size_t *spl_num);
spellingtrie.h 171 bool construct(const char* spelling_arr, size_t item_size, size_t item_num,
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
cso_cache.h 146 unsigned cso_construct_key(void *item, int item_size);
cso_cache.c 78 unsigned cso_construct_key(void *item, int item_size)
80 return hash_key((item), item_size);
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_cache.h 146 unsigned cso_construct_key(void *item, int item_size);
cso_cache.c 78 unsigned cso_construct_key(void *item, int item_size)
80 return hash_key((item), item_size);
  /external/droiddriver/samples/testapp/src/com/google/android/apps/common/testing/ui/testapp/
LongListActivity.java 35 int[] to = new int[] {R.id.item_content, R.id.item_size};
  /external/harfbuzz/src/
harfbuzz-shape.h 177 * also keeps things easier for caller. item_size passed in
186 HB_GlyphBuffer *hb_glyph_buffer_new (size_t item_size);
  /packages/inputmethods/PinyinIME/jni/share/
spellingtable.cpp 217 const char* SpellingTable::arrange(size_t *item_size, size_t *spl_num) {
219 NULL == item_size || NULL == spl_num)
298 *item_size = spelling_size_;
spellingtrie.cpp 272 bool SpellingTrie::construct(const char* spelling_arr, size_t item_size,
287 spelling_buf_ = new char[item_size * item_num];
290 memcpy(spelling_buf_, spelling_arr, sizeof(char) * item_size * item_num);
293 spelling_size_ = item_size;
  /external/freetype/src/pfr/
pfrload.c 54 FT_UInt num_items, item_type, item_size; local
63 item_size = PFR_NEXT_BYTE( p );
66 PFR_CHECK( item_size );
77 error = extra->parser( p, p + item_size, item_data );
85 p += item_size;
  /external/chromium_org/chrome/utility/importer/
ie_importer_win.cc 183 uint32 item_size = 0; variable
184 if (!BinaryRead(&item_size, base_offset + kSizeOffset, blob) ||
185 base_offset + item_size <= base_offset || // checking overflow
186 base_offset + item_size > blob.size())
196 base_offset + kItemIDListOffset, item_size - kItemIDListOffset, blob);
205 base_offset += item_size;
  /external/qemu/block/
vvfat.c 76 unsigned int size,next,item_size; member in struct:array_t
79 static inline void array_init(array_t* array,unsigned int item_size)
84 array->item_size=item_size;
97 return array->pointer + index * array->item_size;
102 if((index + 1) * array->item_size > array->size) {
103 int new_size = (index + 32) * array->item_size;
128 if((array->next+count)*array->item_size>array->size) {
129 int increment=count*array->item_size;
135 memmove(array->pointer+(index+count)*array->item_size,
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bc-data.c 63 int item_size; member in struct:bytecode_data
159 return bc_data->item_size;
274 data->item_size = size;
  /external/chromium/chrome/browser/ui/views/download/
download_shelf_view.cc 344 gfx::Size item_size = (*download_views_.rbegin())->GetPreferredSize();
345 return item_size.width() < available_width;
  /external/chromium_org/chrome/browser/ui/views/download/
download_shelf_view.cc 359 gfx::Size item_size = (*download_views_.rbegin())->GetPreferredSize();
360 return item_size.width() < available_width;

Completed in 629 milliseconds

1 2