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

1 2 3

  /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...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
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_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_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...]
lp_bld_bitarit.c 59 res = LLVMBuildBitCast(builder, res, bld->vec_type, "");
85 res = LLVMBuildBitCast(builder, res, bld->vec_type, "");
113 res = LLVMBuildBitCast(builder, res, bld->vec_type, "");
143 res = LLVMBuildBitCast(builder, res, bld->vec_type, "");
164 res = LLVMBuildBitCast(builder, res, bld->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_gather.c 156 LLVMTypeRef vec_type = LLVMVectorType(LLVMTypeOf(values[0]), value_count); local
158 LLVMValueRef vec = LLVMGetUndef(vec_type);
lp_bld_swizzle.h 52 LLVMTypeRef vec_type,
lp_bld_swizzle.c 48 LLVMTypeRef vec_type,
53 if (LLVMGetTypeKind(vec_type) != LLVMVectorTypeKind) {
55 assert(vec_type == LLVMTypeOf(scalar));
59 const unsigned length = LLVMGetVectorSize(vec_type);
60 LLVMValueRef undef = LLVMGetUndef(vec_type);
63 assert(LLVMGetElementType(vec_type) == LLVMTypeOf(scalar));
94 return lp_build_broadcast(bld->gallivm, bld->vec_type, scalar);
lp_bld_tgsi_soa.c 647 res = LLVMConstBitCast(res, bld_base->uint_bld.vec_type);
649 res = LLVMConstBitCast(res, bld_base->int_bld.vec_type);
712 res = LLVMBuildBitCast(builder, res, bld_base->uint_bld.vec_type, "");
714 res = LLVMBuildBitCast(builder, res, bld_base->int_bld.vec_type, "");
767 LLVMTypeRef itype = LLVMPointerType(bld->bld_base.int_bld.vec_type, 0);
817 res = LLVMBuildBitCast(builder, res, bld_base->base.vec_type, "");
819 res = LLVMBuildBitCast(builder, res, bld_base->uint_bld.vec_type, "");
821 res = LLVMBuildBitCast(builder, res, bld_base->int_bld.vec_type, "");
1550 LLVMTypeRef vec_type = bld->bld_base.base.vec_type; local
2003 LLVMTypeRef vec_type = bld_base->base.vec_type; local
    [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, "");
  /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/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...]
filters.hpp 92 typedef typename TypeVec<float, VecTraits<elem_type>::cn>::vec_type work_type;
123 typedef typename TypeVec<float, VecTraits<elem_type>::cn>::vec_type work_type;
200 typedef typename TypeVec<float, VecTraits<elem_type>::cn>::vec_type work_type;
240 typedef typename TypeVec<float, VecTraits<elem_type>::cn>::vec_type work_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/detail/
color_detail.hpp 76 template <typename T> static __device__ __forceinline__ void setAlpha(typename TypeVec<T, 3>::vec_type& vec, T val)
80 template <typename T> static __device__ __forceinline__ void setAlpha(typename TypeVec<T, 4>::vec_type& vec, T val)
85 template <typename T> static __device__ __forceinline__ T getAlpha(const typename TypeVec<T, 3>::vec_type& vec)
90 template <typename T> static __device__ __forceinline__ T getAlpha(const typename TypeVec<T, 4>::vec_type& vec)
111 : unary_function<typename TypeVec<T, scn>::vec_type, typename TypeVec<T, dcn>::vec_type>
113 __device__ typename TypeVec<T, dcn>::vec_type operator()(const typename TypeVec<T, scn>::vec_type& src) const
115 typename TypeVec<T, dcn>::vec_type dst;
316 template <typename T, int dcn> struct Gray2RGB : unary_function<T, typename TypeVec<T, dcn>::vec_type>
    [all...]
  /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/cudafilters/src/cuda/
filter2d.cu 57 typedef typename TypeVec<float, VecTraits<D>::cn>::vec_type sum_t;
98 typedef typename TypeVec<float, VecTraits< type >::cn>::vec_type work_type; \
  /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/opencv3/modules/superres/src/cuda/
btv_l1_gpu.cu 129 typedef typename TypeVec<float, cn>::vec_type src_t;
224 typedef typename TypeVec<float, cn>::vec_type src_t;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_interp.c 198 LLVMPointerType(setup_bld->vec_type, 0), "");
203 LLVMPointerType(setup_bld->vec_type, 0), "");
214 LLVMPointerType(setup_bld->vec_type, 0), "");
404 LLVMPointerType(setup_bld->vec_type, 0), "");
409 LLVMPointerType(setup_bld->vec_type, 0), "");
420 LLVMPointerType(setup_bld->vec_type, 0), "");
  /external/opencv3/modules/cudawarping/src/cuda/
remap.cu 74 typedef typename TypeVec<float, VecTraits<T>::cn>::vec_type work_type;
95 typedef typename TypeVec<float, VecTraits<T>::cn>::vec_type work_type;
129 typedef typename TypeVec<float, VecTraits< type >::cn>::vec_type work_type; \

Completed in 579 milliseconds

1 2 3