Searched defs:n_glyphs (Results 1 - 4 of 4) sorted by relevance

/external/pixman/test/
H A Dglyph-test.c224 int n_glyphs, i; local
242 n_glyphs = prng_rand_n (MAX_GLYPHS);
243 for (i = 0; i < n_glyphs; ++i)
246 for (i = 0; i < 4 * n_glyphs; ++i)
248 int g = prng_rand_n (n_glyphs);
285 cache, 4 * n_glyphs, glyphs);
299 cache, 4 * n_glyphs, glyphs);
304 for (i = 0; i < n_glyphs; ++i)
/external/pixman/pixman/
H A Dpixman-glyph.c58 int n_glyphs; member in struct:pixman_glyph_cache_t
135 cache->n_glyphs++;
152 cache->n_glyphs--;
181 cache->n_glyphs = 0;
194 cache->n_glyphs = 0;
223 cache->n_glyphs + cache->n_tombstones > N_GLYPHS_HIGH_WATER)
233 while (cache->n_glyphs > N_GLYPHS_LOW_WATER)
268 if (cache->n_glyphs >= HASH_SIZE)
321 int n_glyphs,
330 for (i = 0; i < n_glyphs;
320 pixman_glyph_get_extents(pixman_glyph_cache_t *cache, int n_glyphs, pixman_glyph_t *glyphs, pixman_box32_t *extents) argument
355 pixman_glyph_get_mask_format(pixman_glyph_cache_t *cache, int n_glyphs, const pixman_glyph_t *glyphs) argument
395 pixman_composite_glyphs_no_mask(pixman_op_t op, pixman_image_t *src, pixman_image_t *dest, int32_t src_x, int32_t src_y, int32_t dest_x, int32_t dest_y, pixman_glyph_cache_t *cache, int n_glyphs, const pixman_glyph_t *glyphs) argument
499 add_glyphs(pixman_glyph_cache_t *cache, pixman_image_t *dest, int off_x, int off_y, int n_glyphs, const pixman_glyph_t *glyphs) argument
634 pixman_composite_glyphs(pixman_op_t op, pixman_image_t *src, pixman_image_t *dest, pixman_format_code_t mask_format, int32_t src_x, int32_t src_y, int32_t mask_x, int32_t mask_y, int32_t dest_x, int32_t dest_y, int32_t width, int32_t height, pixman_glyph_cache_t *cache, int n_glyphs, const pixman_glyph_t *glyphs) argument
[all...]
/external/chromium_org/third_party/brotli/src/woff2/
H A Dwoff2_dec.cc323 bool ProcessBboxStream(Buffer* bbox_stream, unsigned int n_glyphs, argument
327 if (n_glyphs >= 65536 || loca_values.size() != n_glyphs + 1) {
330 // Safe because n_glyphs is bounded
331 unsigned int bitmap_length = ((n_glyphs + 31) >> 5) << 2;
335 for (unsigned int i = 0; i < n_glyphs; ++i) {
/external/chromium_org/third_party/ots/src/
H A Dwoff2.cc427 bool ProcessBboxStream(ots::Buffer* bbox_stream, unsigned int n_glyphs, argument
431 if (n_glyphs >= 65536 || loca_values.size() != n_glyphs + 1) {
434 // Safe because n_glyphs is bounded
435 unsigned int bitmap_length = ((n_glyphs + 31) >> 5) << 2;
439 for (unsigned int i = 0; i < n_glyphs; ++i) {

Completed in 923 milliseconds