Home
last modified time | relevance | path

Searched refs:OTF_TAG (Results 1 – 5 of 5) sorted by relevance

/third_party/cups-filters/fontembed/
Dsfnt_subset.c197 {OTF_TAG('c','m','a','p'),otf_action_copy,otf,}, in otf_subset()
198 {OTF_TAG('c','v','t',' '),otf_action_copy,otf,}, in otf_subset()
199 {OTF_TAG('f','p','g','m'),otf_action_copy,otf,}, in otf_subset()
200 {OTF_TAG('g','l','y','f'),otf_action_replace,new_glyf,glyfSize}, in otf_subset()
201 {OTF_TAG('h','e','a','d'),otf_action_copy,otf,}, // _copy_head in otf_subset()
202 {OTF_TAG('h','h','e','a'),otf_action_copy,otf,}, in otf_subset()
203 {OTF_TAG('h','m','t','x'),otf_action_copy,otf,}, in otf_subset()
204 {OTF_TAG('l','o','c','a'),otf_action_replace,new_loca,locaSize}, in otf_subset()
205 {OTF_TAG('m','a','x','p'),otf_action_copy,otf,}, in otf_subset()
206 {OTF_TAG('n','a','m','e'),otf_action_copy,otf,}, in otf_subset()
[all …]
Dsfnt.c154 } else if (otf->version==OTF_TAG('O','T','T','O')) { // OTF(CFF) in otf_do_load()
156 } else if (otf->version==OTF_TAG('t','r','u','e')) { // (old mac) in otf_do_load()
157 } else if (otf->version==OTF_TAG('t','y','p','1')) { // sfnt wrapped type1 in otf_do_load()
191 if ( (otf->tables[iA].tag==OTF_TAG('C','F','F',' '))&& in otf_do_load()
196 } else if ( (otf->tables[iA].tag==OTF_TAG('g','l','y','p'))&& in otf_do_load()
209 char *head=otf_get_table(otf,OTF_TAG('h','e','a','d'),&len); in otf_do_load()
247 char *maxp=otf_get_table(otf,OTF_TAG('m','a','x','p'),&len); in otf_do_load()
320 if (version==OTF_TAG('t','t','c','f')) { in otf_load()
440 if (tag==OTF_TAG('h','e','a','d')) { // special case in otf_get_table()
459 iA=otf_find_table(otf,OTF_TAG('g','l','y','f')); in otf_load_glyf()
[all …]
Dembed_sfnt.c16 char *os2=otf_get_table(otf,OTF_TAG('O','S','/','2'),&len); in emb_otf_get_rights()
87 char *head=otf_get_table(otf,OTF_TAG('h','e','a','d'),&len); in emb_otf_get_pdf_fontdescr()
96 char *post=otf_get_table(otf,OTF_TAG('p','o','s','t'),&len); in emb_otf_get_pdf_fontdescr()
121 char *os2=otf_get_table(otf,OTF_TAG('O','S','/','2'),&len); in emb_otf_get_pdf_fontdescr()
185 char *hhea=otf_get_table(otf,OTF_TAG('h','h','e','a'),&len); in emb_otf_get_pdf_fontdescr()
517 char *head=otf_get_table(otf,OTF_TAG('h','e','a','d'),&rlen); in emb_otf_ps()
530 char *post=otf_get_table(otf,OTF_TAG('p','o','s','t'),&rlen); in emb_otf_ps()
616 {OTF_TAG('c','m','a','p'),otf_action_copy,otf,}, in emb_otf_ps()
617 {OTF_TAG('c','v','t',' '),otf_action_copy,otf,}, in emb_otf_ps()
618 {OTF_TAG('f','p','g','m'),otf_action_copy,otf,}, in emb_otf_ps()
[all …]
Dtest_analyze.c26 buf=otf_get_table(otf,OTF_TAG('p','o','s','t'),&len); in show_post()
58 buf=otf_get_table(otf,OTF_TAG('n','a','m','e'),&len); in show_name()
103 char *cmap=otf_get_table(otf,OTF_TAG('c','m','a','p'),&len); in show_cmap()
203 } else if (otf->version==OTF_TAG('O','T','T','O')) { in main()
205 } else if (otf->version==OTF_TAG('t','r','u','e')) { in main()
207 } else if (otf->version==OTF_TAG('t','y','p','1')) { in main()
Dsfnt.h44 #define OTF_TAG(a,b,c,d) (unsigned int)( ((a)<<24)|((b)<<16)|((c)<<8)|(d) ) macro