/external/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/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...] |
/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,
|
/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/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);
|
/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/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/llvm/test/Scripts/ |
coff-dump.py | 512 item_size = read_value(ent_size) 523 index += (Input.tell() - prev_loc) / item_size
|
/external/protobuf/src/google/protobuf/ |
wire_format_unittest.cc | 359 ASSERT_EQ(3, raw.item_size());
|