Searched refs:intype (Results 1 - 6 of 6) sorted by relevance
/third_party/mesa3d/src/util/indices/ |
H A D | u_unfilled_gen.py | 98 def vert( intype, outtype, v0 ): 99 if intype == GENERATE: 104 def line( intype, outtype, ptr, v0, v1 ): 105 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';') 106 print(' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';') 112 def do_tri( intype, outtype, ptr, v0, v1, v2 ): 113 line( intype, outtype, ptr, v0, v1 ) 114 line( intype, outtype, ptr + '+2', v1, v2 ) 115 line( intype, outtype, ptr + '+4', v2, v0 ) 117 def do_quad( intype, outtyp [all...] |
H A D | u_indices_gen.py | 113 def vert( intype, outtype, v0 ): 114 if intype == GENERATE: 119 def point( intype, outtype, ptr, v0 ): 120 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';') 122 def line( intype, outtype, ptr, v0, v1 ): 123 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';') 124 print(' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';') 126 def tri( intype, outtype, ptr, v0, v1, v2 ): 127 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';') 128 print(' (' + ptr + ')[1] = ' + vert( intype, outtyp [all...] |
/third_party/cups-filters/fontembed/ |
H A D | embed.c | 89 // determine intype in emb_new() 93 ret->intype=EMB_FMT_OTF; in emb_new() 95 ret->intype=EMB_FMT_TTF; in emb_new() 100 ret->intype=EMB_FMT_STDFONT; in emb_new() 106 if ( (ret->intype==EMB_FMT_CFF)&& in emb_new() 108 ?= || ( (ret->intype==EMB_FMT_OTF)&&(ret->sfnt->cffFont.is_cid()) ) // TODO? in emb_new() 114 if (ret->intype==EMB_FMT_STDFONT) { in emb_new() 115 ret->outtype=ret->intype; in emb_new() 122 } else if (ret->intype==EMB_FMT_T1) { in emb_new() 130 ret->outtype=ret->intype; in emb_new() [all...] |
H A D | embed_pdf.c | 175 if ( (emb->intype==EMB_FMT_TTF)||(emb->intype==EMB_FMT_OTF) ) { // TODO? use fontinfo from CFF when outtype==CFT, etc.? in emb_pdf_fontdescr() 196 if ( (emb->intype==EMB_FMT_TTF)||(emb->intype==EMB_FMT_OTF) ) { in emb_pdf_fontdescr() 339 if ( (emb->intype==EMB_FMT_TTF)||(emb->intype==EMB_FMT_OTF) ) { in emb_pdf_fontwidths()
|
H A D | embed.h | 48 EMB_FORMAT intype; member
|
/third_party/mesa3d/src/freedreno/rnn/ |
H A D | headergen2.c | 132 enum rnnttype intype = ti->type; in printtypeinfo() local 139 intype = RNN_TTYPE_FLOAT; in printtypeinfo() 145 ti->radixvalid || (intype == RNN_TTYPE_FLOAT)) { in printtypeinfo() 146 switch (intype) { in printtypeinfo() 167 if (bf && (intype == RNN_TTYPE_BOOLEAN)) { in printtypeinfo() 217 if (intype == RNN_TTYPE_ENUM) in printtypeinfo()
|
Completed in 3 milliseconds