Home
last modified time | relevance | path

Searched refs:elt_type (Results 1 – 15 of 15) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pt_vsplit_tmp.h26 #define CONCAT2(name, elt_type) name ## elt_type argument
27 #define CONCAT(name, elt_type) CONCAT2(name, elt_type) argument
/external/python/cpython2/Modules/_ctypes/libffi/src/mips/
Dffi.c873 ffi_type *elt_type = *elt_typep; in copy_struct_N32() local
879 o = ALIGN(offset, elt_type->alignment); in copy_struct_N32()
890 if (elt_type->type == FFI_TYPE_DOUBLE && !soft_float) in copy_struct_N32()
893 memcpy(tp, argp + arg_offset, elt_type->size); in copy_struct_N32()
895 offset += elt_type->size; in copy_struct_N32()
896 arg_offset += elt_type->size; in copy_struct_N32()
/external/tensorflow/tensorflow/compiler/mlir/tfrt/jit/
Dtf_cpurt_clustering.cc82 auto elt_type = tensor.getElementType(); in IsSupportedDataTypes() local
83 return elt_type.isF32() || elt_type.isInteger(1) || in IsSupportedDataTypes()
84 elt_type.isInteger(32) || elt_type.isInteger(64); in IsSupportedDataTypes()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/c/
Dc_api_unified_experimental_mlir.cc325 Type elt_type = getElementTypeOrSelf(type); in AddRef() local
326 if (elt_type.isa<mlir::TF::TensorFlowRefType>()) { in AddRef()
329 elt_type = TensorFlowRefType::get(elt_type); in AddRef()
331 *output_type = RankedTensorType::get(tensor_type.getShape(), elt_type); in AddRef()
333 *output_type = UnrankedTensorType::get(elt_type); in AddRef()
/external/libffi/src/mips/
Dffi.c915 ffi_type *elt_type = *elt_typep; in copy_struct_N32() local
921 o = FFI_ALIGN(offset, elt_type->alignment); in copy_struct_N32()
932 if (elt_type->type == FFI_TYPE_DOUBLE && !soft_float) in copy_struct_N32()
935 memcpy(tp, argp + arg_offset, elt_type->size); in copy_struct_N32()
937 offset += elt_type->size; in copy_struct_N32()
938 arg_offset += elt_type->size; in copy_struct_N32()
/external/tensorflow/tensorflow/python/framework/
Dpython_api_dispatcher_wrapper.cc129 m.def("MakeListChecker", [](std::shared_ptr<PyTypeChecker> elt_type) { in PYBIND11_MODULE() argument
131 std::make_shared<PyListChecker>(elt_type)); in PYBIND11_MODULE()
/external/tensorflow/tensorflow/compiler/mlir/tfrt/jit/transforms/
Dtf_jitrt_clustering.cc87 auto elt_type = tensor.getElementType(); in IsSupportedDataTypes() local
88 return elt_type.isF32() || elt_type.isInteger(1) || in IsSupportedDataTypes()
89 elt_type.isInteger(32) || elt_type.isInteger(64); in IsSupportedDataTypes()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/utils/
Dexport_utils.cc229 mlir::Type elt_type = attr.getValue(); in ConvertAttribute() local
230 if (auto shaped_type = elt_type.dyn_cast<mlir::ShapedType>()) { in ConvertAttribute()
231 elt_type = shaped_type.getElementType(); in ConvertAttribute()
234 ConvertAttribute(elt_type, remove_ref_type, &attr_val)); in ConvertAttribute()
Dconvert_tensor.cc120 Type elt_type; in ConvertTensor() local
121 TF_RETURN_IF_ERROR(ConvertDataType(input_dtype, *builder, &elt_type)); in ConvertTensor()
124 auto type = RankedTensorType::get(shape, elt_type); in ConvertTensor()
/external/tensorflow/tensorflow/core/ir/importexport/
Dconvert_attributes.cc180 Type elt_type = attr.getValue(); in ConvertAttribute() local
181 if (auto shaped_type = elt_type.dyn_cast<ShapedType>()) { in ConvertAttribute()
182 elt_type = shaped_type.getElementType(); in ConvertAttribute()
185 ConvertAttribute(elt_type, remove_ref_type, &attr_val)); in ConvertAttribute()
Dconvert_tensor.cc117 Type elt_type; in ConvertTensor() local
118 TF_RETURN_IF_ERROR(ConvertDataType(input_dtype, builder, &elt_type)); in ConvertTensor()
121 auto type = RankedTensorType::get(shape, elt_type); in ConvertTensor()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dliveness.cpp301 auto elt_type = arr_type->element_type(); in ComputeLiveness() local
302 auto str_type = elt_type->AsStruct(); in ComputeLiveness()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dliveness.cpp301 auto elt_type = arr_type->element_type(); in ComputeLiveness() local
302 auto str_type = elt_type->AsStruct(); in ComputeLiveness()
/external/tensorflow/tensorflow/python/util/
Ddispatch.py673 elt_type = make_type_checker(type_args[0])
674 return _api_dispatcher.MakeListChecker(elt_type)
/external/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi.cpp4423 const glsl_type *elt_type = ir->offset->type->fields.array; in visit() local
4426 offset[i].index += i * type_size(elt_type); in visit()
4427 offset[i].type = elt_type->base_type; in visit()
4428 offset[i].swizzle = swizzle_for_size(elt_type->vector_elements); in visit()