Home
last modified time | relevance | path

Searched refs:outtype (Results 1 – 13 of 13) sorted by relevance

/third_party/mesa3d/src/util/indices/
Du_unfilled_gen.py98 def vert( intype, outtype, v0 ): argument
100 return '(' + outtype + ')(' + v0 + ')'
102 return '(' + outtype + ')in[' + v0 + ']'
104 def line( intype, outtype, ptr, v0, v1 ): argument
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 ): argument
113 line( intype, outtype, ptr, v0, v1 )
114 line( intype, outtype, ptr + '+2', v1, v2 )
115 line( intype, outtype, ptr + '+4', v2, v0 )
[all …]
Du_indices_gen.py113 def vert( intype, outtype, v0 ): argument
115 return '(' + outtype + ')(' + v0 + ')'
117 return '(' + outtype + ')in[' + v0 + ']'
119 def point( intype, outtype, ptr, v0 ): argument
120 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';')
122 def line( intype, outtype, ptr, v0, v1 ): argument
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 ): argument
127 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';')
[all …]
/third_party/cups-filters/fontembed/
Dembed.c115 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==EMB_FMT_T1) { in emb_embed()
189 } else if (emb->outtype==EMB_FMT_TTF) { // emb->outtype==EMB_OUTPUT_OTF is stupid (?) in emb_embed()
[all …]
Dtest_pdf.c122 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()
Dembed_pdf.c70 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()
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()
Dembed.h49 EMB_FORMAT outtype; member
/third_party/openssl/crypto/pem/
Dpem_local.h81 # define IMPLEMENT_PEM_provided_write_body_main(type, outtype) \ argument
82 ret = OSSL_ENCODER_to_##outtype(ctx, out); \
97 OUTTYPE, outtype, writename) \ argument
101 IMPLEMENT_PEM_provided_write_body_main(type, outtype); \
108 IMPLEMENT_PEM_provided_write_body_main(type, outtype); \
115 OUTTYPE, outtype, writename) \ argument
120 IMPLEMENT_PEM_provided_write_body_main(type, outtype); \
128 IMPLEMENT_PEM_provided_write_body_main(type, outtype); \
Dpem_pk8.c74 const char *outtype = isder ? "DER" : "PEM"; in do_pk8pkey() local
77 outtype, "PrivateKeyInfo", propq); in do_pk8pkey()
/third_party/openssl/test/
Ddtlsv1listentest.c245 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/vk-gl-cts/modules/gles3/functional/
Des3fPixelBufferObjectTests.cpp206 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()
/third_party/cups-filters/filter/
Dpdfutils.c305 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/mesa3d/src/panfrost/vulkan/
Dpanvk_vX_meta_copy.c364 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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64InstrFormats.td5963 RegisterOperand outtype, RegisterOperand intype,
5966 : I<(outs outtype:$Rd), (ins intype:$Rn), asm,
5984 RegisterOperand outtype, RegisterOperand intype,
5987 : I<(outs outtype:$dst), (ins outtype:$Rd, intype:$Rn), asm,
6045 RegisterOperand outtype, RegisterOperand intype1,
6049 : I<(outs outtype:$Rd), (ins intype1:$Rn, intype2:$Rm), asm,
6071 RegisterOperand outtype, RegisterOperand intype1,
6075 : I<(outs outtype:$dst), (ins outtype:$Rd, intype1:$Rn, intype2:$Rm), asm,