Searched refs:advance (Results 1 - 25 of 68) sorted by relevance

123

/xsrc/external/mit/MesaGLUT/dist/src/glut/beos/
H A Dglutbitmap.h17 const GLfloat advance; member in struct:__anonfc4ce6130108
H A Dglut_bwidth.c28 return ch->advance;
52 length += ch->advance;
H A Dglut_bitmap.c48 ch->advance, 0, ch->bitmap);
/xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
H A Dglutbitmap.h19 const GLfloat advance; member in struct:__anon436ba2d50108
H A Dglut_bwidth.c28 return ch->advance;
52 length += ch->advance;
H A Dglut_bitmap.c48 ch->advance, 0, ch->bitmap);
H A Dcapturexfont.c30 int xoff, int yoff, int advance, int data)
35 printf(" a height or width of zero does not advance the raster position\n");
43 printf("%d,", advance);
53 printf("%d,", advance);
29 outputChar(int num,int width,int height,int xoff,int yoff,int advance,int data) argument
/xsrc/external/mit/glu/dist/src/libnurbs/internals/
H A Dtrimregion.h56 void advance( REAL, REAL, REAL );
75 TrimRegion::advance( REAL topVindex, REAL botVindex, REAL botVval ) function in class:TrimRegion
/xsrc/external/mit/freetype/dist/src/base/
H A Dftsynth.c62 /* we don't touch the advance width */
144 if ( slot->advance.x )
145 slot->advance.x += xstr;
147 if ( slot->advance.y )
148 slot->advance.y += ystr;
H A Dftglyph.c344 copy->advance = source->advance;
419 /* copy advance while converting 26.6 to 16.16 format */
420 if ( slot->advance.x >= 0x8000L * 64 ||
421 slot->advance.x <= -0x8000L * 64 )
423 FT_ERROR(( "FT_Get_Glyph: advance width too large\n" ));
427 if ( slot->advance.y >= 0x8000L * 64 ||
428 slot->advance.y <= -0x8000L * 64 )
430 FT_ERROR(( "FT_Get_Glyph: advance height too large\n" ));
435 glyph->advance
[all...]
H A Dftadvanc.c5 * Quick computation of advance widths (body).
56 /* at the moment, we can perform fast advance retrieval only in */
166 ? face->glyph->advance.y * factor
167 : face->glyph->advance.x * factor;
/xsrc/external/mit/freetype/dist/src/pfr/
H A Dpfrsbit.c412 FT_Long xpos, ypos, advance; local in function:pfr_load_bitmap_metrics
423 advance = 0;
492 advance = scaled_advance;
497 advance = PFR_NEXT_INT8( p ) * 256;
502 advance = PFR_NEXT_SHORT( p );
507 advance = PFR_NEXT_LONG( p );
518 *aadvance = advance;
656 FT_Long xpos = 0, ypos = 0, advance = 0; local in function:pfr_slot_load_bitmap
661 /* compute linear advance */
662 advance
[all...]
H A Dpfrobjs.c232 /* now compute maximum advance width */
244 if ( max < gchar->advance )
245 max = gchar->advance;
368 FT_Pos advance; local in function:pfr_slot_load
384 /* compute the advance vector */
388 advance = gchar->advance;
393 advance = FT_MulDiv( advance,
398 metrics->vertAdvance = advance;
[all...]
/xsrc/external/mit/freetype/dist/include/freetype/
H A Dftincrem.h104 * advance ::
105 * Horizontal component of glyph advance, in font units.
108 * Vertical component of glyph advance, in font units.
120 FT_Long advance; member in struct:FT_Incremental_MetricsRec_
H A Dftglyph.h96 * The root glyph structure contains a given glyph image plus its advance
109 * advance ::
110 * A 16.16 vector that gives the glyph's advance width.
117 FT_Vector advance; member in struct:FT_GlyphRec_
278 * Because `*aglyph->advance.x` and `*aglyph->advance.y` are 16.16
279 * fixed-point numbers, `slot->advance.x` and `slot->advance.y` (which
336 * The 2x2 transformation matrix is also applied to the glyph's advance
/xsrc/local/programs/ttf2wsfont/
H A Dmain.c41 int baseline, above = 0, below = 0, advance = 0; variable in typeref:typename:int
61 new_advance = (int)(face->glyph->advance.x >> 6);
64 printf("advance: %d\n", new_advance);
69 if (new_advance > advance) advance = new_advance;
113 printf("above: %d below: %d advance: %d\n", above, below, advance);
114 width = advance;
/xsrc/external/mit/freetype/dist/src/cid/
H A Dcidgload.c240 metrics.advance = FIXED_TO_INT( decoder->builder.advance.x );
241 metrics.advance_v = FIXED_TO_INT( decoder->builder.advance.y );
247 decoder->builder.advance.x = INT_TO_FIXED( metrics.advance );
248 decoder->builder.advance.y = INT_TO_FIXED( metrics.advance_v );
273 /********** the maximum advance width of the font. It *********/
315 /* the advance width */
324 *max_advance = FIXED_TO_INT( decoder.builder.advance.x );
420 /* advance widt
[all...]
/xsrc/external/mit/freetype/dist/src/type1/
H A Dt1gload.c147 metrics.advance = FIXED_TO_INT( decoder->builder.advance.x );
148 metrics.advance_v = FIXED_TO_INT( decoder->builder.advance.y );
154 decoder->builder.advance.x = INT_TO_FIXED( metrics.advance );
155 decoder->builder.advance.y = INT_TO_FIXED( metrics.advance_v );
201 /********** the maximum advance width of the font. It *********/
255 /* the advance width */
260 if ( glyph_index == 0 || decoder.builder.advance.x > *max_advance )
261 *max_advance = decoder.builder.advance
[all...]
/xsrc/external/mit/freetype/dist/src/cff/
H A Dcffgload.c122 /********** the maximum advance width of the font. It *********/
157 /* the advance width. */
184 *max_advance = decoder.builder.advance.x;
275 FT_UShort advance; local in function:cff_slot_load
306 /* compute linear advance widths */
311 &advance );
312 glyph->root.linearHoriAdvance = advance;
324 &advance );
325 glyph->root.linearVertAdvance = advance;
509 metrics.advance
[all...]
/xsrc/external/mit/freetype/dist/src/autofit/
H A Dafshaper.c546 FT_Long* advance,
563 if ( advance )
564 *advance = gpos[idx].x_advance;
648 FT_Long* advance,
657 if ( advance )
663 advance );
543 af_shaper_get_elem(AF_StyleMetrics metrics,void * buf_,unsigned int idx,FT_Long * advance,FT_Long * y_offset) argument
645 af_shaper_get_elem(AF_StyleMetrics metrics,void * buf_,unsigned int idx,FT_Long * advance,FT_Long * y_offset) argument
/xsrc/external/mit/freetype/dist/src/gxvalid/
H A Dgxvprop.c86 GXV_NAME_ENTER( "zero advance" );
98 if ( glyph->advance.x != (FT_Pos)0 ||
99 glyph->advance.y != (FT_Pos)0 )
101 GXV_TRACE(( " found non-zero advance in zero-advance glyph\n" ));
/xsrc/external/mit/freetype/dist/src/psaux/
H A Dt1decode.c268 FT_Vector left_bearing, advance; local in function:t1operator_seac
373 advance = decoder->builder.advance;
388 advance = decoder->builder.advance;
407 /* restore the left side bearing and advance width */
411 decoder->builder.advance = advance;
1232 builder->advance.x = top[1];
1233 builder->advance
[all...]
/xsrc/external/mit/freetype/dist/src/truetype/
H A Dttgload.c106 FT_TRACE5(( " advance width (font units): %d\n", *aw ));
145 FT_TRACE5(( " advance height (font units): %d\n", *ah ));
182 loader->advance = advance_width;
233 incr_metrics.advance = loader->advance;
243 advance_width = (FT_UShort)incr_metrics.advance;
250 incr_metrics.advance = loader->vadvance;
259 advance_height = (FT_UShort)incr_metrics.advance;
264 loader->advance = advance_width;
902 /* to change bearings or advance width
2312 FT_Pos advance; /* scaled vertical advance height */ local in function:compute_glyph_metrics
[all...]
/xsrc/external/mit/freetype/dist/include/freetype/internal/
H A Dtttypes.h162 * advance ::
163 * The advance width or height for the glyph.
170 FT_UShort advance; member in struct:TT_LongMetricsRec_
421 * The horizontal advance.
430 * The vertical advance.
471 * advance ::
472 * The advance width or height.
481 FT_Byte advance; member in struct:TT_SBit_Small_Metrics_
519 * horizontal advance - ( horiBearingX + width )
523 * vertical advance
1742 FT_Int advance; member in struct:TT_LoaderRec_
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/tgsi/
H A Dtgsi_text.c1046 uint advance; local in function:parse_instruction
1203 advance = tgsi_build_full_instruction(
1208 if (advance == 0)
1210 ctx->tokens_cur += advance;
1291 uint advance; local in function:parse_declaration
1622 advance = tgsi_build_full_declaration(
1628 if (advance == 0)
1630 ctx->tokens_cur += advance;
1638 uint advance; local in function:parse_immediate
1684 advance
1771 uint advance; local in function:parse_property
[all...]

Completed in 22 milliseconds

123