OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:available_sizes
(Results
1 - 17
of
17
) sorted by relevancy
/xsrc/external/mit/fonttosfnt/dist/
read.c
201
else if(face->
available_sizes
[0].width ==
202
face->
available_sizes
[0].height)
206
face->
available_sizes
[0].height);
211
face->
available_sizes
[0].width,
212
face->
available_sizes
[0].height);
304
font->pxMetrics.height = face->
available_sizes
[0].height;
317
(int)((face->
available_sizes
[i].x_ppem + 32) >> 6),
318
(int)((face->
available_sizes
[i].y_ppem + 32) >> 6));
321
(face->
available_sizes
[i].x_ppem + 32) >> 6,
322
(face->
available_sizes
[i].y_ppem + 32) >> 6)
[
all
...]
/xsrc/external/mit/freetype/dist/src/pfr/
pfrobjs.c
63
FT_FREE( pfrface->
available_sizes
);
197
pfrface->
available_sizes
= NULL;
216
if ( FT_NEW_ARRAY( pfrface->
available_sizes
, count ) )
219
size = pfrface->
available_sizes
;
/xsrc/external/mit/libXft/dist/src/
xftfreetype.c
180
#define X_SIZE(face,i) ((face)->
available_sizes
[i].x_ppem)
181
#define Y_SIZE(face,i) ((face)->
available_sizes
[i].y_ppem)
223
if (FT_Set_Char_Size (face, face->
available_sizes
[best].x_ppem,
224
face->
available_sizes
[best].y_ppem, 0, 0) != 0
226
FT_Set_Char_Size (face, face->
available_sizes
[best].width << 6,
227
face->
available_sizes
[best].height << 6,
/xsrc/external/mit/freetype/dist/src/bdf/
bdfdrivr.c
342
FT_FREE( bdfface->
available_sizes
);
445
if ( FT_NEW_ARRAY( bdfface->
available_sizes
, 1 ) )
449
FT_Bitmap_Size* bsize = bdfface->
available_sizes
;
751
FT_Bitmap_Size* bsize = face->
available_sizes
;
/xsrc/external/mit/freetype/dist/src/winfonts/
winfnt.c
706
FT_FREE( fntface->
available_sizes
);
796
if ( FT_NEW_ARRAY( root->
available_sizes
, 1 ) )
802
FT_Bitmap_Size* bsize = root->
available_sizes
;
955
FT_Bitmap_Size* bsize = size->face->
available_sizes
;
/xsrc/external/mit/freetype/dist/src/pcf/
pcfdrivr.c
228
FT_FREE( pcfface->
available_sizes
);
433
FT_Bitmap_Size* bsize = size->face->
available_sizes
;
pcfread.c
1569
if ( FT_NEW_ARRAY( root->
available_sizes
, 1 ) )
1573
FT_Bitmap_Size* bsize = root->
available_sizes
;
/xsrc/external/mit/freetype/dist/src/cid/
cidobjs.c
431
cidface->
available_sizes
= NULL;
/xsrc/external/mit/freetype/dist/src/sfnt/
sfobjs.c
1206
/* to avoid invalid strike data in the `
available_sizes
' field */
1207
/* of `FT_Face', we map `
available_sizes
' indices to strike */
1209
if ( FT_NEW_ARRAY( root->
available_sizes
, count ) ||
1216
FT_Bitmap_Size* bsize = root->
available_sizes
+ bsize_idx;
1455
FT_FREE( face->root.
available_sizes
);
/xsrc/external/mit/freetype/dist/src/type1/
t1objs.c
467
root->
available_sizes
= NULL;
/xsrc/external/mit/mkfontscale/dist/
mkfontscale.c
711
int w = face->
available_sizes
[i].width;
712
int h = face->
available_sizes
[i].height;
/xsrc/external/mit/libXfont/dist/src/FreeType/
ftfuncs.c
372
x = face->
available_sizes
[i].width;
373
y = face->
available_sizes
[i].height;
385
*x_return = face->
available_sizes
[j].width;
386
*y_return = face->
available_sizes
[j].height;
494
FT_Bitmap_Size* sz = &face->face->
available_sizes
[nn];
975
if ( strike_index != 0xFFFFU && ft_face->
available_sizes
!= NULL )
978
FT_Bitmap_Size* sz = &ft_face->
available_sizes
[strike_index];
/xsrc/external/mit/libXfont2/dist/src/FreeType/
ftfuncs.c
374
x = face->
available_sizes
[i].width;
375
y = face->
available_sizes
[i].height;
387
*x_return = face->
available_sizes
[j].width;
388
*y_return = face->
available_sizes
[j].height;
496
FT_Bitmap_Size* sz = &face->face->
available_sizes
[nn];
977
if ( strike_index != 0xFFFFU && ft_face->
available_sizes
!= NULL )
980
FT_Bitmap_Size* sz = &ft_face->
available_sizes
[strike_index];
/xsrc/external/mit/freetype/dist/include/freetype/
freetype.h
324
* used for the `
available_sizes
` field of @FT_Face.
934
*
available_sizes
::
1042
FT_Bitmap_Size*
available_sizes
;
member in struct:FT_FaceRec_
1105
* and `
available_sizes
` fields of @FT_FaceRec.
1316
* embedded bitmaps. See the `
available_sizes
` field of the @FT_FaceRec
2477
* The index of the bitmap strike in the `
available_sizes
` field of
/xsrc/external/mit/freetype/dist/src/type42/
t42objs.c
284
root->
available_sizes
= NULL;
/xsrc/external/mit/fontconfig/dist/src/
fcfreetype.c
1077
return (double) face->
available_sizes
[i].y_ppem / 64.0;
2550
if (abs (face->
available_sizes
[i].height - 16) <
2551
abs (face->
available_sizes
[strike_index].height - 16))
/xsrc/external/mit/freetype/dist/src/base/
ftobjs.c
2619
FT_Bitmap_Size* bsize = face->
available_sizes
+ i;
2971
FT_Bitmap_Size* bsize = face->
available_sizes
+ i;
3065
bsize = face->
available_sizes
+ strike_index;
Completed in 28 milliseconds
Indexes created Wed Aug 19 00:25:20 UTC 2026