/third_party/mesa3d/src/gallium/auxiliary/indices/ |
D | u_unfilled_gen.py | 98 def vert( intype, outtype, v0 ): argument 99 if intype == GENERATE: 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 ) 117 def do_quad( intype, outtype, ptr, v0, v1, v2, v3 ): argument [all …]
|
D | u_indices_gen.py | 112 def vert( intype, outtype, v0 ): argument 113 if intype == GENERATE: 118 def point( intype, outtype, ptr, v0 ): argument 119 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';') 121 def line( intype, outtype, ptr, v0, v1 ): argument 122 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';') 123 print(' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';') 125 def tri( intype, outtype, ptr, v0, v1, v2 ): argument 126 print(' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';') 127 print(' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';') [all …]
|
/third_party/mesa3d/src/freedreno/rnn/ |
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()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/sdp/ |
D | gstsdpmessage.c | 123 #define DEFINE_ARRAY_INSERT(method, field, intype, dup_method, type) \ argument 124 GstSDPResult gst_sdp_message_insert_##method (GstSDPMessage *msg, gint idx, intype val) { \ 136 #define DEFINE_ARRAY_REPLACE(method, field, intype, free_method, dup_method, type) \ argument 137 GstSDPResult gst_sdp_message_replace_##method (GstSDPMessage *msg, guint idx, intype val) { \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64InstrFormats.td | 5963 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,
|