HomeSort by relevance Sort by last modified time
    Searched refs:ElementCount (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm-c/
Core.h 847 unsigned ElementCount, LLVMBool Packed);
854 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
877 unsigned ElementCount, LLVMBool Packed);
943 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount);
982 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount);
    [all...]
  /external/llvm/lib/IR/
Core.cpp 334 unsigned ElementCount, LLVMBool Packed) {
335 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
340 unsigned ElementCount, LLVMBool Packed) {
342 ElementCount, Packed);
359 unsigned ElementCount, LLVMBool Packed) {
360 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
389 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
390 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
397 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
398 return wrap(VectorType::get(unwrap(ElementType), ElementCount));
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 1305 milliseconds