HomeSort by relevance Sort by last modified time
    Searched defs:elem_type (Results 1 - 18 of 18) sorted by null

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
fixed_mapping.hpp 62 typedef std::pair<Key,Value> elem_type; typedef in class:boost::unit_test::fixed_mapping
63 typedef std::vector<elem_type> map_type;
64 typedef typename std::vector<elem_type>::const_iterator iterator;
75 // bind( Compare(), bind(select1st<elem_type>(), _1), bind(identity<Key>(), _2) )
76 struct p1 : public std::binary_function<elem_type,Key,bool>
78 bool operator()( elem_type const& x, Key const& y ) const { return Compare()( x.first, y ); }
81 // bind( Compare(), bind(select1st<elem_type>(), _1), bind(select1st<elem_type>(), _2) )
82 struct p2 : public std::binary_function<elem_type,elem_type,bool
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_const.c 251 LLVMTypeRef elem_type; local
257 elem_type = lp_build_elem_type(gallivm, type);
260 elems[0] = LLVMConstInt(elem_type, util_float_to_half(1.0f), 0);
262 elems[0] = LLVMConstReal(elem_type, 1.0);
264 elems[0] = LLVMConstInt(elem_type, 1LL << (type.width/2), 0);
266 elems[0] = LLVMConstInt(elem_type, 1, 0);
268 elems[0] = LLVMConstInt(elem_type, (1LL << (type.width - 1)) - 1, 0);
272 LLVMTypeRef vec_type = LLVMVectorType(elem_type, type.length);
303 LLVMTypeRef elem_type = lp_build_elem_type(gallivm, type); local
307 elem = LLVMConstInt(elem_type, util_float_to_half((float)val), 0)
345 LLVMTypeRef elem_type = lp_build_int_elem_type(gallivm, type); local
368 LLVMTypeRef elem_type; local
400 LLVMTypeRef elem_type = LLVMIntTypeInContext(gallivm->context, type.width); local
    [all...]
lp_bld_intr.c 170 LLVMTypeRef elem_type = lp_build_elem_type(gallivm, intrin_type); local
171 a = LLVMBuildBitCast(builder, a, LLVMVectorType(elem_type, 1), "");
172 b = LLVMBuildBitCast(builder, b, LLVMVectorType(elem_type, 1), "");
lp_bld_logic.c 594 LLVMTypeRef elem_type = LLVMInt32TypeInContext(bld->gallivm->context); local
599 shuffles[j + i] = LLVMConstInt(elem_type,
lp_bld_type.c 64 LLVMTypeRef elem_type = lp_build_elem_type(gallivm, type); local
66 return elem_type;
68 return LLVMVectorType(elem_type, type.length);
79 lp_check_elem_type(struct lp_type type, LLVMTypeRef elem_type)
83 assert(elem_type);
84 if(!elem_type)
87 elem_kind = LLVMGetTypeKind(elem_type);
112 if(LLVMGetIntTypeWidth(elem_type) != type.width)
123 LLVMTypeRef elem_type; local
138 elem_type = LLVMGetElementType(vec_type)
169 LLVMTypeRef elem_type = lp_build_int_elem_type(gallivm, type); local
    [all...]
lp_bld_type.h 146 LLVMTypeRef elem_type; member in struct:lp_build_context
317 lp_check_elem_type(struct lp_type type, LLVMTypeRef elem_type);
lp_bld_swizzle.c 184 LLVMTypeRef elem_type = LLVMInt32TypeInContext(bld->gallivm->context); local
189 shuffles[j + i] = LLVMConstInt(elem_type, j + channel, 0);
lp_bld_sample_aos.c 741 LLVMTypeRef elem_type = LLVMInt32TypeInContext(bld->gallivm->context); local
790 index = LLVMConstInt(elem_type, j/2 + subindex, 0);
794 index = LLVMConstInt(elem_type, h16.type.length/2 + j/2 + subindex, 0);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_const.c 251 LLVMTypeRef elem_type; local
257 elem_type = lp_build_elem_type(gallivm, type);
260 elems[0] = LLVMConstInt(elem_type, util_float_to_half(1.0f), 0);
262 elems[0] = LLVMConstReal(elem_type, 1.0);
264 elems[0] = LLVMConstInt(elem_type, 1LL << (type.width/2), 0);
266 elems[0] = LLVMConstInt(elem_type, 1, 0);
268 elems[0] = LLVMConstInt(elem_type, (1LL << (type.width - 1)) - 1, 0);
272 LLVMTypeRef vec_type = LLVMVectorType(elem_type, type.length);
303 LLVMTypeRef elem_type = lp_build_elem_type(gallivm, type); local
307 elem = LLVMConstInt(elem_type, util_float_to_half((float)val), 0)
345 LLVMTypeRef elem_type = lp_build_int_elem_type(gallivm, type); local
368 LLVMTypeRef elem_type; local
400 LLVMTypeRef elem_type = LLVMIntTypeInContext(gallivm->context, type.width); local
    [all...]
lp_bld_intr.c 170 LLVMTypeRef elem_type = lp_build_elem_type(gallivm, intrin_type); local
171 a = LLVMBuildBitCast(builder, a, LLVMVectorType(elem_type, 1), "");
172 b = LLVMBuildBitCast(builder, b, LLVMVectorType(elem_type, 1), "");
lp_bld_logic.c 594 LLVMTypeRef elem_type = LLVMInt32TypeInContext(bld->gallivm->context); local
599 shuffles[j + i] = LLVMConstInt(elem_type,
lp_bld_type.c 64 LLVMTypeRef elem_type = lp_build_elem_type(gallivm, type); local
66 return elem_type;
68 return LLVMVectorType(elem_type, type.length);
79 lp_check_elem_type(struct lp_type type, LLVMTypeRef elem_type)
83 assert(elem_type);
84 if(!elem_type)
87 elem_kind = LLVMGetTypeKind(elem_type);
112 if(LLVMGetIntTypeWidth(elem_type) != type.width)
123 LLVMTypeRef elem_type; local
138 elem_type = LLVMGetElementType(vec_type)
169 LLVMTypeRef elem_type = lp_build_int_elem_type(gallivm, type); local
    [all...]
lp_bld_type.h 146 LLVMTypeRef elem_type; member in struct:lp_build_context
317 lp_check_elem_type(struct lp_type type, LLVMTypeRef elem_type);
lp_bld_swizzle.c 184 LLVMTypeRef elem_type = LLVMInt32TypeInContext(bld->gallivm->context); local
189 shuffles[j + i] = LLVMConstInt(elem_type, j + channel, 0);
lp_bld_sample_aos.c 741 LLVMTypeRef elem_type = LLVMInt32TypeInContext(bld->gallivm->context); local
790 index = LLVMConstInt(elem_type, j/2 + subindex, 0);
794 index = LLVMConstInt(elem_type, h16.type.length/2 + j/2 + subindex, 0);
    [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 1156 int elem_type = CV_MAT_TYPE(v->flags); local
2477 int elem_type = CV_MAT_TYPE(contour->flags); local
    [all...]
cxpersistence.cpp 1818 int elem_type = CV_NODE_NONE; local
3062 int elem_type = -1; local
3119 int elem_type = fmt_pairs[k*2+1]; local
3247 int elem_type = fmt_pairs[k*2+1]; local
3581 int rows, cols, elem_type; local
3668 int sizes[CV_MAX_DIM], dims, elem_type; local
3828 int* sizes = 0, dims, elem_type, cn; local
3980 int y, width, height, elem_type, coi, depth; local
    [all...]
  /art/compiler/llvm/
gbc_expander.cc 824 llvm::Type* elem_type = irb_.getJType(elem_jty); local
828 elem_type->getPointerTo());
    [all...]

Completed in 365 milliseconds