HomeSort by: relevance | last modified time | path
    Searched refs:type1 (Results 1 - 25 of 32) sorted by relevancy

1 2

  /xsrc/external/mit/freetype/dist/src/type1/
t1driver.c 65 FT_STRCPYN( buffer, face->type1.glyph_names[glyph_index], buffer_max );
78 for ( i = 0; i < face->type1.num_glyphs; i++ )
80 FT_String* gname = face->type1.glyph_names[i];
106 return (const char*) face->type1.font_name;
150 *afont_info = ((T1_Face)face)->type1.font_info;
160 *afont_extra = ((T1_Face)face)->type1.font_extra;
179 *afont_private = ((T1_Face)face)->type1.private_dict;
196 T1_Font type1 = &t1face->type1; local
202 retval = sizeof ( type1->font_type )
    [all...]
rules.mk 2 # FreeType 2 Type1 driver configuration rules
16 # Type1 driver directory
18 T1_DIR := $(SRC_DIR)/type1
29 # Type1 driver sources (i.e., C files)
38 # Type1 driver headers
45 # Type1 driver object(s)
51 T1_DRV_OBJ_S := $(OBJ_DIR)/type1.$O
53 # Type1 driver source file for single build
55 T1_DRV_SRC_S := $(T1_DIR)/type1.c
58 # Type1 driver - single objec
    [all...]
t1objs.c 106 &face->type1.private_dict, &globals );
203 T1_Font type1; local
210 type1 = &face->type1;
230 PS_FontInfo info = &type1->font_info;
241 FT_FREE( type1->charstrings_len );
242 FT_FREE( type1->charstrings );
243 FT_FREE( type1->glyph_names );
245 FT_FREE( type1->subrs );
246 FT_FREE( type1->subrs_len )
316 T1_Font type1 = &face->type1; local
    [all...]
module.mk 2 # FreeType 2 Type1 module definition
20 $(ECHO_DRIVER)type1 $(ECHO_DRIVER_DESC)Postscript font files with extension *.pfa or *.pfb$(ECHO_DRIVER_DONE)
t1gload.c 48 T1_Font type1 = &face->type1; local
65 decoder->font_matrix = type1->font_matrix;
66 decoder->font_offset = type1->font_offset;
81 char_string->pointer = type1->charstrings[glyph_index];
82 char_string->length = (FT_Int)type1->charstrings_len[glyph_index];
110 &face->type1.private_dict, &subfont );
218 T1_Font type1 = &face->type1; local
231 (FT_Byte**)type1->glyph_names
284 T1_Font type1 = &face->type1; local
359 T1_Font type1 = &face->type1; local
    [all...]
t1load.c 141 blend->font_infos[0] = &face->type1.font_info;
142 blend->privates [0] = &face->type1.private_dict;
143 blend->bboxes [0] = &face->type1.font_bbox;
1228 dummy_object = &face->type1.font_info;
1240 dummy_object = &face->type1.font_extra;
1246 dummy_object = &face->type1.private_dict;
1258 dummy_object = &face->type1.font_bbox;
1290 dummy_object = &face->type1;
1394 FT_Matrix* matrix = &face->type1.font_matrix;
1395 FT_Vector* offset = &face->type1.font_offset
2503 T1_Font type1 = &face->type1; local
    [all...]
t1afm.c 58 T1_Font type1 = (T1_Font)user_data; local
66 for ( n = 0; n < type1->num_glyphs; n++ )
68 char* gname = (char*)type1->glyph_names[n];
244 T1_Font t1_font = &face->type1;
  /xsrc/external/mit/freetype/dist/src/type42/
t42drivr.c 28 * 3) As for Type1 fonts, CDevProc is not supported.
65 FT_STRCPYN( buffer, face->type1.glyph_names[glyph_index], buffer_max );
78 for ( i = 0; i < face->type1.num_glyphs; i++ )
80 FT_String* gname = face->type1.glyph_names[i];
84 return (FT_UInt)ft_strtol( (const char *)face->type1.charstrings[i],
108 return (const char*)face->type1.font_name;
128 *afont_info = ((T42_Face)face)->type1.font_info;
138 *afont_extra = ((T42_Face)face)->type1.font_extra;
157 *afont_private = ((T42_Face)face)->type1.private_dict;
t42objs.c 36 T1_Font type1 = &face->type1; local
68 if ( type1->font_type != 42 )
71 type1->font_type ));
77 /* to the Type1 data */
78 type1->num_glyphs = loader.num_glyphs;
87 type1->charstrings_block = loader.charstrings.block;
88 type1->charstrings = loader.charstrings.elements;
89 type1->charstrings_len = loader.charstrings.lengths;
93 type1->glyph_names_block = loader.glyph_names.block
174 T1_Font type1 = &face->type1; local
408 T1_Font type1; local
    [all...]
t42types.h 35 T1_FontRec type1; member in struct:T42_FaceRec_
t42parse.c 248 FT_Matrix* matrix = &face->type1.font_matrix;
249 FT_Vector* offset = &face->type1.font_offset;
325 T1_Encoding encode = &face->type1.encoding;
496 face->type1.encoding_type = T1_ENCODING_TYPE_ARRAY;
506 face->type1.encoding_type = T1_ENCODING_TYPE_STANDARD;
510 face->type1.encoding_type = T1_ENCODING_TYPE_EXPERT;
514 face->type1.encoding_type = T1_ENCODING_TYPE_ISOLATIN1;
881 /* contrary to Type1, we disallow multiple CharStrings arrays */
1114 dummy_object = &face->type1.font_info;
1118 dummy_object = &face->type1.font_extra
    [all...]
  /xsrc/external/mit/freetype/dist/src/psaux/
t1cmap.c 29 /***** TYPE1 STANDARD (AND EXPERT) ENCODING CMAPS *****/
42 cmap->num_glyphs = (FT_UInt)face->type1.num_glyphs;
43 cmap->glyph_names = (const char* const*)face->type1.glyph_names;
184 /***** TYPE1 CUSTOM ENCODING CMAP *****/
195 T1_Encoding encoding = &face->type1.encoding;
284 /***** TYPE1 SYNTHETIC UNICODE ENCODING CMAP *****/
293 return face->type1.glyph_names[idx];
313 (FT_UInt)face->type1.num_glyphs,
psft.c 728 T1_Font type1 = &face->type1; local
744 glyph_data.pointer = type1->charstrings[glyph_index];
745 glyph_data.length = (FT_Int)type1->charstrings_len[glyph_index];
  /xsrc/external/mit/freetype/dist/builds/amiga/
smakefile 28 #define FT_USE_T1 // type1 font driver
30 #define FT_USE_T1CID // cid-keyed type1 font driver
67 OBJFONTD = cff.o type1.o type42.o type1cid.o\
221 # freetype library Type1 font driver
223 type1.o: $(CORE)type1/type1.c
233 # freetype library CID-keyed Type1 font driver
238 # freetype library CID-keyed Type1 font driver extensions
makefile.os4 28 #define FT_USE_T1 // type1 font driver
30 #define FT_USE_T1CID // cid-keyed type1 font driver
199 # FreeType2 library Type1 font driver
201 type1.ppc.o: FT:src/type1/type1.c
202 $(CC) -c $(CFLAGS) -o $@ /FT/src/type1/type1.c
211 # FreeType2 library CID-keyed Type1 font driver
288 FONTD = cff.ppc.o type1.ppc.o type42.ppc.o type1cid.ppc.o truetype.ppc.o
    [all...]
makefile 31 #define FT_USE_T1 // type1 font driver
33 #define FT_USE_T1CID // cid-keyed type1 font driver
196 # FreeType2 library Type1 font driver
198 type1.ppc.o: $(FTSRC)/type1/type1.c
208 # FreeType2 library CID-keyed Type1 font driver
284 FONTDPPC = cff.ppc.o type1.ppc.o type42.ppc.o type1cid.ppc.o truetype.ppc.o\
  /xsrc/external/mit/freetype/dist/include/freetype/internal/
t1types.h 5 * Basic Type1/Type2 type definitions and interface (specification
39 /*** REQUIRED TYPE1/TYPE2 TABLES DEFINITIONS ***/
205 T1_FontRec type1; member in struct:T1_FaceRec_
  /xsrc/external/mit/freetype/dist/
vms_make.com 197 define type1 [-.type1]
242 set default [-.type1]
925 $ write sys$output "... [.src.type1] directory"
926 $ create [.src.type1]descrip.mms
927 $ open/append out [.src.type1]descrip.mms
931 # FreeType 2 Type1 driver compilation rules for VMS
945 CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=([--.include],[--.src.type1])
947 OBJS=type1.obj
  /xsrc/external/mit/MesaLib/dist/src/util/
macros.h 70 # define __builtin_types_compatible_p(type1, type2) (1)
  /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
radv_formats.c 1527 enum dcc_channel_type type1, type2; local
1546 type1 = radv_get_dcc_channel_type(desc1);
1549 return type1 != dcc_channel_incompatible &&
1551 type1 == type2;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
svga_tgsi_insn.c 528 SVGA3dShaderRegType type0, type1; local
533 type1 = SVGA3dShaderGetRegType( src1.base.value );
536 type1 == SVGA3DREG_CONST &&
541 type1 == SVGA3DREG_INPUT &&
581 SVGA3dShaderRegType type0, type1, type2; local
586 type1 = SVGA3dShaderGetRegType( src1.base.value );
591 ((type1 == SVGA3DREG_CONST && src0.base.num != src1.base.num) ||
595 if (type1 == SVGA3DREG_CONST &&
601 ((type1 == SVGA3DREG_INPUT && src0.base.num != src1.base.num) ||
605 if (type1 == SVGA3DREG_INPUT &
654 SVGA3dShaderRegType type0, type1, type2, type3; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
svga_tgsi_insn.c 530 SVGA3dShaderRegType type0, type1; local
535 type1 = SVGA3dShaderGetRegType( src1.base.value );
538 type1 == SVGA3DREG_CONST &&
543 type1 == SVGA3DREG_INPUT &&
583 SVGA3dShaderRegType type0, type1, type2; local
588 type1 = SVGA3dShaderGetRegType( src1.base.value );
593 ((type1 == SVGA3DREG_CONST && src0.base.num != src1.base.num) ||
597 if (type1 == SVGA3DREG_CONST &&
603 ((type1 == SVGA3DREG_INPUT && src0.base.num != src1.base.num) ||
607 if (type1 == SVGA3DREG_INPUT &
656 SVGA3dShaderRegType type0, type1, type2, type3; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
radv_formats.c 2058 enum dcc_channel_type type1, type2; local
2077 radv_get_dcc_channel_type(desc1, &type1, &size1);
2080 if (type1 == dcc_channel_incompatible || type2 == dcc_channel_incompatible ||
2081 (type1 == dcc_channel_float) != (type2 == dcc_channel_float) || size1 != size2)
2084 if (type1 != type2)
  /xsrc/external/mit/libXt/dist/src/
Event.c 943 int type1, type2; /* Types of events to check for. */ member in struct:_CheckExposeInfo
997 info.type1 = Expose;
1001 info.type1 = event->type;
1165 * NOTE: The only valid types (info.type1 and info.type2) are Expose
1174 if ((info->type1 == event->type) || (info->type2 == event->type)) {
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
shader_query.cpp 1378 #define VALIDATE_TYPE_2(type1, type2)\
1379 if (res->Type != type1 && res->Type != type2)\

Completed in 20 milliseconds

1 2