/third_party/mesa3d/src/util/indices/ |
H A D | u_unfilled_gen.py | 98 def vert( intype, outtype, v0 ): 100 return '(' + outtype + ')(' + v0 + ')' 102 return '(' + outtype + ')in[' + v0 + ']' 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, pt [all...] |
H A D | u_indices_gen.py | 113 def vert( intype, outtype, v0 ): 115 return '(' + outtype + ')(' + v0 + ')' 117 return '(' + outtype + ')in[' + v0 + ']' 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, v [all...] |
/third_party/cups-filters/fontembed/ |
H A D | embed.c | 113 // determine outtype in emb_new() 115 ret->outtype=ret->intype; in emb_new() 124 ret->outtype=EMB_FMT_T1; in emb_new() 127 ret->outtype=EMB_FMT_CFF; in emb_new() 130 ret->outtype=ret->intype; in emb_new() 132 if (ret->outtype==EMB_FMT_CFF) { in emb_new() 134 ret->outtype=EMB_FMT_OTF; in emb_new() 137 } else if (ret->outtype==EMB_FMT_OTF) { in emb_new() 141 ret->outtype=EMB_FMT_CFF; in emb_new() 188 if (emb->outtype in emb_embed() [all...] |
H A D | test_pdf.c | 122 if (emb->outtype==EMB_FMT_T1) { in main() 126 } else if (emb->outtype==EMB_FMT_TTF) { in main() 132 if (emb->outtype==EMB_FMT_TTF) { in main()
|
H A D | embed_pdf.c | 70 return emb_pdf_font_subtype[emb->outtype][emb_multibyte(emb)]; in emb_pdf_get_font_subtype() 78 return emb_pdf_fontfile_key[emb->outtype]; in emb_pdf_get_fontfile_key() 86 return emb_pdf_fontfile_subtype[emb->outtype][emb_multibyte(emb)]; in emb_pdf_get_fontfile_subtype() 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() 178 } else if (emb->outtype==EMB_FMT_STDFONT) { in emb_pdf_fontdescr() 545 if (emb->outtype==EMB_FMT_TTF) { // !=CidType0 in emb_pdf_simple_cidfont()
|
H A D | embed.h | 49 EMB_FORMAT outtype; member
|
/third_party/node/deps/openssl/openssl/crypto/pem/ |
H A D | pem_local.h | 81 # define IMPLEMENT_PEM_provided_write_body_main(type, outtype) \ 82 ret = OSSL_ENCODER_to_##outtype(ctx, out); \ 97 OUTTYPE, outtype, writename) \ 101 IMPLEMENT_PEM_provided_write_body_main(type, outtype); \ 108 IMPLEMENT_PEM_provided_write_body_main(type, outtype); \ 115 OUTTYPE, outtype, writename) \ 120 IMPLEMENT_PEM_provided_write_body_main(type, outtype); \ 128 IMPLEMENT_PEM_provided_write_body_main(type, outtype); \
|
H A D | pem_pk8.c | 74 const char *outtype = isder ? "DER" : "PEM"; in do_pk8pkey() local 77 outtype, "PrivateKeyInfo", propq); in do_pk8pkey()
|
/third_party/openssl/crypto/pem/ |
H A D | pem_local.h | 81 # define IMPLEMENT_PEM_provided_write_body_main(type, outtype) \ 82 ret = OSSL_ENCODER_to_##outtype(ctx, out); \ 97 OUTTYPE, outtype, writename) \ 101 IMPLEMENT_PEM_provided_write_body_main(type, outtype); \ 108 IMPLEMENT_PEM_provided_write_body_main(type, outtype); \ 115 OUTTYPE, outtype, writename) \ 120 IMPLEMENT_PEM_provided_write_body_main(type, outtype); \ 128 IMPLEMENT_PEM_provided_write_body_main(type, outtype); \
|
H A D | pem_pk8.c | 74 const char *outtype = isder ? "DER" : "PEM"; in do_pk8pkey() local 77 outtype, "PrivateKeyInfo", propq); in do_pk8pkey()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fPixelBufferObjectTests.cpp | 206 std::string outtype = ""; in init() local 209 outtype = "vec4"; in init() 215 outtype = "vec4"; in init() 219 outtype = "ivec4"; in init() 223 outtype = "uvec4"; in init() 227 outtype = "vec4"; in init() 257 fragmentShaderSource << "layout (location = 0) out mediump " << outtype << " o_color;\n" in init() 260 "\to_color = " << outtype << "(v_color);\n" in init() local
|
/third_party/cups-filters/filter/ |
H A D | pdfutils.c | 305 if (emb->outtype==EMB_FMT_STDFONT) { // std-14 font in pdfOut_write_font() 330 if (emb->outtype==EMB_FMT_TTF) { in pdfOut_write_font() 333 } else if (emb->outtype==EMB_FMT_T1) { // TODO in pdfOut_write_font() 354 if (emb->outtype==EMB_FMT_TTF) { in pdfOut_write_font()
|
/third_party/openssl/test/ |
H A D | dtlsv1listentest.c | 245 enum {GOOD, VERIFY, DROP} outtype; member 324 if (tp->outtype == VERIFY) { in dtls_listen_test() 329 if (!TEST_true((ret == 0 && tp->outtype == DROP) in dtls_listen_test() 330 || (ret == 1 && tp->outtype == GOOD))) in dtls_listen_test()
|
/third_party/mesa3d/src/panfrost/vulkan/ |
H A D | panvk_vX_meta_copy.c | 364 const struct glsl_type *outtype = NULL; in panvk_meta_copy_img2img_shader() local 384 outtype = glsl_vector_type(GLSL_TYPE_FLOAT, 2); in panvk_meta_copy_img2img_shader() 405 outtype = glsl_vector_type(GLSL_TYPE_FLOAT, 3); in panvk_meta_copy_img2img_shader() 422 outtype = glsl_vector_type(basetype, ndstcomps); in panvk_meta_copy_img2img_shader() 426 nir_variable_create(b.shader, nir_var_shader_out, outtype, "out"); in panvk_meta_copy_img2img_shader()
|