Home
last modified time | relevance | path

Searched refs:elt_type (Results 1 – 7 of 7) 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/tensorflow/c/
Dc_api_unified_experimental_mlir.cc324 Type elt_type = getElementTypeOrSelf(type); in AddRef() local
325 if (elt_type.isa<mlir::TF::TensorFlowRefType>()) { in AddRef()
328 elt_type = TensorFlowRefType::get(elt_type); in AddRef()
330 *output_type = RankedTensorType::get(tensor_type.getShape(), elt_type); in AddRef()
332 *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/compiler/mlir/tensorflow/utils/
Dexport_utils.cc218 mlir::Type elt_type = attr.getValue(); in ConvertAttribute() local
219 if (auto shaped_type = elt_type.dyn_cast<mlir::ShapedType>()) { in ConvertAttribute()
220 elt_type = shaped_type.getElementType(); in ConvertAttribute()
223 ConvertAttribute(elt_type, remove_ref_type, &attr_val)); in ConvertAttribute()
Dconvert_tensor.cc125 Type elt_type; in ConvertTensor() local
126 TF_RETURN_IF_ERROR(ConvertDataType(input_dtype, *builder, &elt_type)); in ConvertTensor()
129 auto type = RankedTensorType::get(shape, elt_type); in ConvertTensor()
/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()