Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/auxiliary/indices/
Du_unfilled_gen.py99 def vert( intype, outtype, v0 ): argument
101 return '(' + outtype + ')(' + v0 + ')'
103 return '(' + outtype + ')in[' + v0 + ']'
105 def line( intype, outtype, ptr, v0, v1 ): argument
106 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
107 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
113 def do_tri( intype, outtype, ptr, v0, v1, v2 ): argument
114 line( intype, outtype, ptr, v0, v1 )
115 line( intype, outtype, ptr + '+2', v1, v2 )
116 line( intype, outtype, ptr + '+4', v2, v0 )
[all …]
Du_indices_gen.py116 def vert( intype, outtype, v0 ): argument
118 return '(' + outtype + ')(' + v0 + ')'
120 return '(' + outtype + ')in[' + v0 + ']'
122 def point( intype, outtype, ptr, v0 ): argument
123 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
125 def line( intype, outtype, ptr, v0, v1 ): argument
126 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
127 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
129 def tri( intype, outtype, ptr, v0, v1, v2 ): argument
130 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
[all …]
/external/deqp/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()
/external/llvm/lib/Target/AArch64/
DAArch64InstrFormats.td5096 RegisterOperand outtype, RegisterOperand intype,
5099 : I<(outs outtype:$Rd), (ins intype:$Rn), asm,
5117 RegisterOperand outtype, RegisterOperand intype,
5120 : I<(outs outtype:$dst), (ins outtype:$Rd, intype:$Rn), asm,
5178 RegisterOperand outtype, RegisterOperand intype1,
5182 : I<(outs outtype:$Rd), (ins intype1:$Rn, intype2:$Rm), asm,
5204 RegisterOperand outtype, RegisterOperand intype1,
5208 : I<(outs outtype:$dst), (ins outtype:$Rd, intype1:$Rn, intype2:$Rm), asm,