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

  /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);
303 LLVMTypeRef elem_type = lp_build_elem_type(gallivm, type); local
307 elem = LLVMConstInt(elem_type, util_float_to_half((float)val), 0);
309 elem = LLVMConstReal(elem_type, val)
345 LLVMTypeRef elem_type = lp_build_int_elem_type(gallivm, type); local
400 LLVMTypeRef elem_type = LLVMIntTypeInContext(gallivm->context, type.width); local
    [all...]
lp_bld_logic.c 463 LLVMTypeRef elem_type = LLVMInt32TypeInContext(bld->gallivm->context); local
468 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 151 LLVMTypeRef elem_type; member in struct:lp_build_context
352 lp_check_elem_type(struct lp_type type, LLVMTypeRef elem_type);
lp_bld_intr.c 323 LLVMTypeRef elem_type = lp_build_elem_type(gallivm, intrin_type); local
324 a = LLVMBuildBitCast(builder, a, LLVMVectorType(elem_type, 1), "");
325 b = LLVMBuildBitCast(builder, b, LLVMVectorType(elem_type, 1), "");
lp_bld_swizzle.c 178 LLVMTypeRef elem_type = LLVMInt32TypeInContext(bld->gallivm->context); local
183 shuffles[j + i] = LLVMConstInt(elem_type, j + channel, 0);
lp_bld_sample_aos.c 848 LLVMTypeRef elem_type = LLVMInt32TypeInContext(bld->gallivm->context); local
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
conv_op_helpers.cc 153 auto elem_type = filter_shape.element_type(); local
159 xla::Reduce(masked_expanded_filter, xla::Zero(builder, elem_type),
160 CreateScalarAddComputation(elem_type, builder),
  /external/flatbuffers/src/
reflection.cpp 254 auto elem_type = fielddef.type()->element(); local
255 if (elem_type != reflection::Obj && elem_type != reflection::String)
259 elem_type == reflection::Obj
  /external/deqp-deps/SPIRV-Tools/source/val/
validate_memory.cpp 48 auto elem_type = _.FindDef(type->word(2)); local
49 return std::find(allowed.begin(), allowed.end(), elem_type->opcode()) !=
173 Instruction* elem_type; local
183 elem_type = _.FindDef(elem_type_id);
184 return ContainsInvalidBool(_, elem_type, skip_builtin);
    [all...]
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
rx-scheduler.hpp 892 typedef std::pair<item_type, int64_t> elem_type; typedef in class:rxcpp::schedulers::detail::schedulable_queue
893 typedef std::vector<elem_type> container_type;
899 bool operator()(const elem_type& lhs, const elem_type& rhs) const {
910 elem_type,
938 q.push(elem_type(value, ordinal++));
942 q.push(elem_type(std::move(value), ordinal++));
  /external/swiftshader/third_party/SPIRV-Tools/source/val/
validate_memory.cpp 48 auto elem_type = _.FindDef(type->word(2)); local
49 return std::find(allowed.begin(), allowed.end(), elem_type->opcode()) !=
173 Instruction* elem_type; local
183 elem_type = _.FindDef(elem_type_id);
184 return ContainsInvalidBool(_, elem_type, skip_builtin);
    [all...]
  /external/mesa3d/src/amd/common/
ac_llvm_build.c 189 LLVMTypeRef elem_type = LLVMGetElementType(t); local
190 return LLVMVectorType(to_integer_type_scalar(ctx, elem_type),
219 LLVMTypeRef elem_type = LLVMGetElementType(t); local
220 return LLVMVectorType(to_float_type_scalar(ctx, elem_type),
277 LLVMTypeRef elem_type = type; local
290 elem_type = LLVMGetElementType(type);
294 switch (LLVMGetTypeKind(elem_type)) {
297 snprintf(buf, bufsize, "i%d", LLVMGetIntTypeWidth(elem_type));
    [all...]
  /external/mesa3d/src/compiler/spirv/
spirv_to_nir.c 172 const struct glsl_type *elem_type = local
177 val->elems[i] = vtn_undef_ssa_value(b, elem_type);
179 const struct glsl_type *elem_type = glsl_get_array_element(type); local
181 val->elems[i] = vtn_undef_ssa_value(b, elem_type);
184 const struct glsl_type *elem_type = glsl_get_struct_field(type, i); local
185 val->elems[i] = vtn_undef_ssa_value(b, elem_type);
252 const struct glsl_type *elem_type = glsl_get_array_element(val->type); local
255 elem_type);
263 const struct glsl_type *elem_type = local
266 elem_type);
    [all...]
  /external/mesa3d/src/compiler/glsl/
linker.cpp 1556 const glsl_type *elem_type = type->fields.structure[i].type; local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_fs.c 2289 LLVMTypeRef elem_type = lp_build_elem_type(gallivm, ls_type); local
    [all...]

Completed in 1867 milliseconds