gf_ceil            97 include/gpac/maths.h Fixed gf_ceil(Fixed a);
gf_ceil           714 src/compositor/font_engine.c 	tw = FIX2INT( gf_ceil(gf_mulfix(scale, bounds.width)) );
gf_ceil           720 src/compositor/font_engine.c 	th = FIX2INT( gf_ceil(gf_mulfix(scale, bounds.height)) );
gf_ceil           178 src/compositor/mpeg4_layer_3d.c 	w = (u32) FIX2INT(gf_ceil(width));
gf_ceil           179 src/compositor/mpeg4_layer_3d.c 	h = (u32) FIX2INT(gf_ceil(height));
gf_ceil           245 src/compositor/svg_font.c 	font->em_size = atts.units_per_em ? FIX2INT( gf_ceil(atts.units_per_em->value) ) : 1000;
gf_ceil           250 src/compositor/svg_font.c 	font->ascent = atts.ascent ? FIX2INT( gf_ceil(atts.ascent->value) ) : 0;
gf_ceil           252 src/compositor/svg_font.c 	font->descent = atts.descent ? FIX2INT( gf_ceil(atts.descent->value) ) : 0;
gf_ceil           253 src/compositor/svg_font.c 	font->baseline = atts.alphabetic ? FIX2INT( gf_ceil(atts.alphabetic->value) ) : 0;
gf_ceil           314 src/compositor/svg_font.c 	font->max_advance_h = atts.horiz_adv_x ? FIX2INT( gf_ceil(atts.horiz_adv_x->value) ) : 0;
gf_ceil           397 src/compositor/svg_font.c 	if (atts.horiz_adv_x) st->glyph.horiz_advance = FIX2INT( gf_ceil(atts.horiz_adv_x->value) );
gf_ceil           401 src/compositor/svg_font.c 		st->glyph.width = FIX2INT( gf_ceil(rc.width) );
gf_ceil           402 src/compositor/svg_font.c 		st->glyph.height = FIX2INT( gf_ceil(rc.height) );
gf_ceil           971 src/utils/math.c 	rc.y = FIX2INT(gf_ceil(r->y));
gf_ceil           972 src/utils/math.c 	rc.width = FIX2INT(gf_ceil(r->x + r->width)) - rc.x;