HomeSort by relevance Sort by last modified time
    Searched defs:vec_type (Results 1 - 25 of 26) sorted by null

1 2

  /external/mesa3d/src/glsl/builtins/tools/
texture_builtins.py 11 def vec_type(g, size): function
64 return_type = vec_type("i", get_txs_dim(sampler_type))
73 print "\n (declare (in) " + vec_type("i" if tex_inst == "txf" else "", coord_dim + extra_dim) + " P)",
79 grad_type = vec_type("", sampler_dim)
84 print "\n (declare (const_in) " + vec_type("i", sampler_dim) + " offset)",
  /external/opencv3/modules/core/include/opencv2/core/
traits.hpp 112 typedef value_type vec_type; typedef in class:cv::DataType
127 typedef value_type vec_type; typedef in class:cv::DataType
142 typedef value_type vec_type; typedef in class:cv::DataType
157 typedef value_type vec_type; typedef in class:cv::DataType
172 typedef value_type vec_type; typedef in class:cv::DataType
187 typedef value_type vec_type; typedef in class:cv::DataType
202 typedef value_type vec_type; typedef in class:cv::DataType
217 typedef value_type vec_type; typedef in class:cv::DataType
232 typedef value_type vec_type; typedef in class:cv::DataType
247 typedef value_type vec_type; typedef in class:cv::DataType
    [all...]
cvstd.inl.hpp 71 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
affine.hpp 162 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
matx.hpp 237 typedef value_type vec_type; typedef in class:cv::DataType
395 typedef value_type vec_type; typedef in class:cv::DataType
    [all...]
types.hpp 105 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
197 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
264 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
324 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
425 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
501 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
557 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
613 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
716 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
759 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
881 typedef Vec<channel_type, channels> vec_type; typedef in class:cv::DataType
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_gather.c 156 LLVMTypeRef vec_type = LLVMVectorType(LLVMTypeOf(values[0]), value_count); local
158 LLVMValueRef vec = LLVMGetUndef(vec_type);
lp_bld_const.c 227 LLVMTypeRef vec_type = lp_build_vec_type(gallivm, type); local
228 return LLVMGetUndef(vec_type);
242 LLVMTypeRef vec_type = lp_build_vec_type(gallivm, type); local
243 return LLVMConstNull(vec_type);
272 LLVMTypeRef vec_type = LLVMVectorType(elem_type, type.length); local
273 LLVMValueRef vec = LLVMConstAllOnes(vec_type);
lp_bld_logic.c 120 LLVMTypeRef vec_type = lp_build_vec_type(gallivm, type); local
164 vec_type,
190 LLVMTypeRef vec_type = lp_build_vec_type(gallivm, type); local
229 res = lp_build_intrinsic(builder, pcmpeq, vec_type, args, 2);
231 res = lp_build_intrinsic(builder, pcmpgt, vec_type, args, 2);
233 res = LLVMConstNull(vec_type);
426 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); local
427 res = LLVMBuildBitCast(builder, res, vec_type, "");
530 if (arg_type != bld->vec_type) {
542 if (arg_type != bld->vec_type) {
    [all...]
lp_bld_type.c 121 lp_check_vec_type(struct lp_type type, LLVMTypeRef vec_type)
125 assert(vec_type);
126 if(!vec_type)
130 return lp_check_elem_type(type, vec_type);
132 if(LLVMGetTypeKind(vec_type) != LLVMVectorTypeKind)
135 if(LLVMGetVectorSize(vec_type) != type.length)
138 elem_type = LLVMGetElementType(vec_type);
147 LLVMTypeRef vec_type; local
153 vec_type = LLVMTypeOf(val);
155 return lp_check_vec_type(type, vec_type);
    [all...]
lp_bld_type.h 149 LLVMTypeRef vec_type; member in struct:lp_build_context
321 lp_check_vec_type(struct lp_type type, LLVMTypeRef vec_type);
lp_bld_tgsi_aos.c 408 LLVMTypeRef vec_type = lp_build_vec_type(bld->bld_base.base.gallivm, bld->bld_base.base.type); local
421 vec_type, array_size, "");
423 bld->temps[idx] = lp_build_alloca(gallivm, vec_type, "");
428 bld->outputs[idx] = lp_build_alloca(gallivm, vec_type, "");
433 bld->addr[idx] = lp_build_alloca(gallivm, vec_type, "");
438 bld->preds[idx] = lp_build_alloca(gallivm, vec_type, "");
lp_bld_conv.c 281 LLVMTypeRef vec_type = lp_build_vec_type(gallivm, dst_type); local
304 res = LLVMBuildSIToFP(builder, src, vec_type, "");
336 res = LLVMBuildBitCast(builder, res, vec_type, "");
lp_bld_arit.c 1098 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); local
1112 a = LLVMBuildBitCast(builder, a, vec_type, "");
1119 return lp_build_intrinsic_unary(builder, "llvm.x86.ssse3.pabs.b.128", vec_type, a);
1121 return lp_build_intrinsic_unary(builder, "llvm.x86.ssse3.pabs.w.128", vec_type, a);
1174 LLVMTypeRef vec_type; local
1222 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); local
1255 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); local
1305 LLVMTypeRef vec_type; local
1395 LLVMTypeRef vec_type; local
1448 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); local
1478 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); local
1506 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); local
1534 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); local
1637 LLVMTypeRef vec_type = bld->vec_type; local
1685 LLVMTypeRef vec_type = bld->vec_type; local
1741 LLVMTypeRef vec_type = bld->vec_type; local
1840 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); local
2610 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); local
2788 LLVMTypeRef vec_type = lp_build_vec_type(bld->gallivm, type); local
    [all...]
  /external/mesa3d/src/glsl/
lower_instructions.cpp 161 const struct glsl_type *vec_type; local
163 vec_type = glsl_type::get_instance(GLSL_TYPE_FLOAT,
168 op1 = new(ir) ir_expression(ir_unop_i2f, vec_type, ir->operands[1], NULL);
170 op1 = new(ir) ir_expression(ir_unop_u2f, vec_type, ir->operands[1], NULL);
174 vec_type = glsl_type::get_instance(GLSL_TYPE_FLOAT,
179 op0 = new(ir) ir_expression(ir_unop_i2f, vec_type, ir->operands[0], NULL);
181 op0 = new(ir) ir_expression(ir_unop_u2f, vec_type, ir->operands[0], NULL);
183 vec_type = glsl_type::get_instance(GLSL_TYPE_FLOAT,
187 op0 = new(ir) ir_expression(ir_binop_mul, vec_type, op0, op1);
glsl_types.cpp 697 const struct glsl_type *vec_type, *array_type; local
702 vec_type = get_instance(GLSL_TYPE_FLOAT, c, 1);
703 array_type = glsl_type::get_array_instance(vec_type, r);
705 vec_type = get_instance(GLSL_TYPE_FLOAT, r, 1);
706 array_type = glsl_type::get_array_instance(vec_type, c);
782 const struct glsl_type *vec_type; local
794 vec_type = get_instance(GLSL_TYPE_FLOAT,
798 vec_type = get_instance(GLSL_TYPE_FLOAT,
802 const glsl_type *array_type = glsl_type::get_array_instance(vec_type,
  /external/opencv3/modules/cudev/include/opencv2/cudev/util/
vec_traits.hpp 197 typedef value_type vec_type; typedef in class:cv::DataType
213 typedef value_type vec_type; \
265 typedef value_type vec_type; typedef in class:cv::DataType
281 typedef value_type vec_type; typedef in class:cv::DataType
297 typedef value_type vec_type; typedef in class:cv::DataType
313 typedef value_type vec_type; typedef in class:cv::DataType
  /external/opencv3/modules/core/include/opencv2/core/cuda/
vec_traits.hpp 132 template<> struct TypeVec<type, 1> { typedef type vec_type; }; \
133 template<> struct TypeVec<type ## 1, 1> { typedef type ## 1 vec_type; }; \
134 template<> struct TypeVec<type, 2> { typedef type ## 2 vec_type; }; \
135 template<> struct TypeVec<type ## 2, 2> { typedef type ## 2 vec_type; }; \
136 template<> struct TypeVec<type, 3> { typedef type ## 3 vec_type; }; \
137 template<> struct TypeVec<type ## 3, 3> { typedef type ## 3 vec_type; }; \
138 template<> struct TypeVec<type, 4> { typedef type ## 4 vec_type; }; \
139 template<> struct TypeVec<type ## 4, 4> { typedef type ## 4 vec_type; }; \
140 template<> struct TypeVec<type, 8> { typedef type ## 8 vec_type; }; \
141 template<> struct TypeVec<type ## 8, 8> { typedef type ## 8 vec_type; };
154 template<> struct TypeVec<schar, 1> { typedef schar vec_type; }; typedef in struct:cv::cuda::device::TypeVec
155 template<> struct TypeVec<schar, 2> { typedef char2 vec_type; }; typedef in struct:cv::cuda::device::TypeVec
156 template<> struct TypeVec<schar, 3> { typedef char3 vec_type; }; typedef in struct:cv::cuda::device::TypeVec
157 template<> struct TypeVec<schar, 4> { typedef char4 vec_type; }; typedef in struct:cv::cuda::device::TypeVec
158 template<> struct TypeVec<schar, 8> { typedef char8 vec_type; }; typedef in struct:cv::cuda::device::TypeVec
160 template<> struct TypeVec<bool, 1> { typedef uchar vec_type; }; typedef in struct:cv::cuda::device::TypeVec
161 template<> struct TypeVec<bool, 2> { typedef uchar2 vec_type; }; typedef in struct:cv::cuda::device::TypeVec
162 template<> struct TypeVec<bool, 3> { typedef uchar3 vec_type; }; typedef in struct:cv::cuda::device::TypeVec
163 template<> struct TypeVec<bool, 4> { typedef uchar4 vec_type; }; typedef in struct:cv::cuda::device::TypeVec
164 template<> struct TypeVec<bool, 8> { typedef uchar8 vec_type; }; typedef in struct:cv::cuda::device::TypeVec
    [all...]
  /external/vulkan-validation-layers/libs/glm/detail/
_swizzle.hpp 89 typedef VecType vec_type; typedef in struct:glm::detail::_swizzle_base2
175 typedef VecType vec_type; typedef in struct:glm::detail::_swizzle_base2
294 GLM_FUNC_QUALIFIER typename _GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const _GLM_SWIZZLE_TYPE1& a, const typename S0::vec_type& b, const T& c)\
329 //_GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, abs);
330 //_GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, acos);
331 //_GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, acosh);
332 //_GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, all);
333 //_GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, any);
336 //_GLM_SWIZZLE_FUNCTION_2_ARGS(vec_type, cross);
337 //_GLM_SWIZZLE_FUNCTION_2_ARGS(vec_type, step);
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
vector_test.cpp 132 typedef vector<char> vec_type; typedef
134 vec_type v1; // Empty vector of characters.
142 vec_type v2(v1.begin(), v1.end());
  /ndk/tests/device/test-stlport/unit/
vector_test.cpp 132 typedef vector<char> vec_type; typedef
134 vec_type v1; // Empty vector of characters.
142 vec_type v2(v1.begin(), v1.end());
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_blend.c 161 LLVMTypeRef vec_type; local
174 vec_type = lp_build_vec_type(gallivm, type);
176 args[3] = args[2] = args[1] = args[0] = LLVMPointerType(vec_type, 0);
lp_state_fs.c 236 LLVMTypeRef vec_type; local
289 vec_type = lp_build_vec_type(gallivm, type);
298 color[cbuf][chan] = lp_build_alloca(gallivm, vec_type, "color");
358 alpha_ref_value = lp_build_broadcast(gallivm, vec_type, alpha_ref_value);
460 LLVMTypeRef vec_type; local
517 vec_type = lp_build_vec_type(gallivm, type);
597 alpha_ref_value = lp_build_broadcast(gallivm, vec_type, alpha_ref_value);
707 LLVMTypeRef vec_type; local
720 vec_type = lp_build_vec_type(gallivm, type);
724 LLVMPointerType(vec_type, 0), "")
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_visitor.cpp 867 const glsl_type *vec_type = local
869 dst = fs_reg(this, glsl_type::get_array_instance(vec_type, 2));
    [all...]
brw_vec4_visitor.cpp 1562 const struct glsl_type *vec_type; local
    [all...]

Completed in 534 milliseconds

1 2