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

1 2

  /external/swiftshader/third_party/subzero/crosstest/
test_vector_ops_main.cpp 30 typedef typename VectorOps<T>::ElementTy ElementTy;
36 // since ElementTy isn't necessarily the type that the value is stored
39 Incr[I] = (ElementTy)I;
42 Decr[I] = (ElementTy)-I;
45 Min[I] = std::numeric_limits<ElementTy>::min();
48 Max[I] = std::numeric_limits<ElementTy>::max();
68 typedef typename VectorOps<T>::ElementTy ElementTy;
73 ElementTy TestElements[] = {0, 1, std::numeric_limits<ElementTy>::min()
    [all...]
vectors.h 54 // * Vectors<T>::ElementTy is the C++ element type
63 typedef ELTTY ElementTy; \
test_arith_main.cpp 169 typedef typename Vectors<TypeUnsignedLabel>::ElementTy ElementTypeUnsigned;
170 typedef typename Vectors<TypeSignedLabel>::ElementTy ElementTypeSigned;
test_icmp_main.cpp 203 typedef typename Vectors<TypeUnsignedLabel>::ElementTy ElementTypeUnsigned;
204 typedef typename Vectors<TypeSignedLabel>::ElementTy ElementTypeSigned;
  /external/llvm/lib/Target/AMDGPU/
SITypeRewriter.cpp 116 Type *ElementTy = Arg->getType()->getVectorElementType();
120 Types.push_back(ElementTy);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/
CallLowering.cpp 84 Type *ElementTy = cast<PointerType>(Arg.Ty)->getElementType();
85 Arg.Flags.setByValSize(DL.getTypeAllocSize(ElementTy));
92 FrameAlign = getTLI()->getByValTypeAlignment(ElementTy, DL);
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Constants.h 698 template <typename ElementTy>
699 static Constant *get(LLVMContext &Context, ArrayRef<ElementTy> Elts) {
701 return getRaw(StringRef(Data, Elts.size() * sizeof(ElementTy)), Elts.size(),
702 Type::getScalarTy<ElementTy>(Context));
706 /// ArrayRef<ElementTy>. Calls get(LLVMContext, ArrayRef<ElementTy>).
713 /// count and element type matching the NumElements and ElementTy parameters
715 /// ElementTy needs to be one of i8/i16/i32/i64/float/double. Data is the
718 static Constant *getRaw(StringRef Data, uint64_t NumElements, Type *ElementTy) {
719 Type *Ty = ArrayType::get(ElementTy, NumElements)
    [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 114 virtual SVal ArrayToPointer(Loc Array, QualType ElementTy) = 0;
ProgramState.h 527 SVal ArrayToPointer(Loc Array, QualType ElementTy) {
528 return StoreMgr->ArrayToPointer(Array, ElementTy);
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 447 CAMLprim LLVMTypeRef llvm_array_type(LLVMTypeRef ElementTy, value Count) {
448 return LLVMArrayType(ElementTy, Int_val(Count));
452 CAMLprim LLVMTypeRef llvm_pointer_type(LLVMTypeRef ElementTy) {
453 return LLVMPointerType(ElementTy, 0);
457 CAMLprim LLVMTypeRef llvm_qualified_pointer_type(LLVMTypeRef ElementTy,
459 return LLVMPointerType(ElementTy, Int_val(AddressSpace));
463 CAMLprim LLVMTypeRef llvm_vector_type(LLVMTypeRef ElementTy, value Count) {
464 return LLVMVectorType(ElementTy, Int_val(Count));
847 CAMLprim LLVMValueRef llvm_const_array(LLVMTypeRef ElementTy,
849 return LLVMConstArray(ElementTy, (LLVMValueRef*) Op_val(ElementVals)
    [all...]
  /external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
llvm_ocaml.c 343 CAMLprim LLVMTypeRef llvm_array_type(LLVMTypeRef ElementTy, value Count) {
344 return LLVMArrayType(ElementTy, Int_val(Count));
348 CAMLprim LLVMTypeRef llvm_pointer_type(LLVMTypeRef ElementTy) {
349 return LLVMPointerType(ElementTy, 0);
353 CAMLprim LLVMTypeRef llvm_qualified_pointer_type(LLVMTypeRef ElementTy,
355 return LLVMPointerType(ElementTy, Int_val(AddressSpace));
359 CAMLprim LLVMTypeRef llvm_vector_type(LLVMTypeRef ElementTy, value Count) {
360 return LLVMVectorType(ElementTy, Int_val(Count));
663 CAMLprim LLVMValueRef llvm_const_array(LLVMTypeRef ElementTy,
665 return LLVMConstArray(ElementTy, (LLVMValueRef*) Op_val(ElementVals)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 530 CAMLprim LLVMTypeRef llvm_array_type(LLVMTypeRef ElementTy, value Count) {
531 return LLVMArrayType(ElementTy, Int_val(Count));
535 CAMLprim LLVMTypeRef llvm_pointer_type(LLVMTypeRef ElementTy) {
536 return LLVMPointerType(ElementTy, 0);
540 CAMLprim LLVMTypeRef llvm_qualified_pointer_type(LLVMTypeRef ElementTy,
542 return LLVMPointerType(ElementTy, Int_val(AddressSpace));
546 CAMLprim LLVMTypeRef llvm_vector_type(LLVMTypeRef ElementTy, value Count) {
547 return LLVMVectorType(ElementTy, Int_val(Count));
930 CAMLprim LLVMValueRef llvm_const_array(LLVMTypeRef ElementTy,
932 return LLVMConstArray(ElementTy, (LLVMValueRef*) Op_val(ElementVals)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 371 SVal ArrayToPointer(Loc Array, QualType ElementTy) override;
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceTargetLowering.h 538 const auto ElementTy = typeElementType(Src->getType());
539 auto *Op = Func->makeVariable(ElementTy);
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
CGRecordLayoutBuilder.cpp     [all...]
CGStmtOpenMP.cpp 327 QualType ElementTy;
331 auto NumElements = emitArrayLength(ArrayTy, ElementTy, DestAddr);
349 CharUnits ElementSize = getContext().getTypeSizeInChars(ElementTy);
456 QualType ElementTy;
460 auto NumElements = CGF.emitArrayLength(ArrayTy, ElementTy, DestAddr);
484 CharUnits ElementSize = CGF.getContext().getTypeSizeInChars(ElementTy);
508 SrcElementCurrent, ElementTy);
510 CGF.EmitAnyExprToMem(Init, DestElementCurrent, ElementTy.getQualifiers(),
    [all...]
CGExprConstant.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
InstructionsTest.cpp 659 Type *ElementTy = Builder.getInt8Ty();
660 Type *ArrTy = ArrayType::get(ArrayType::get(ElementTy, 64), 64);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86FastISel.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]

Completed in 840 milliseconds

1 2