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 785 unsigned ElementCount, LLVMBool Packed);
792 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
815 unsigned ElementCount, LLVMBool Packed);
881 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount);
920 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount);
    [all...]
  /external/llvm/lib/VMCore/
Core.cpp 302 unsigned ElementCount, LLVMBool Packed) {
303 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
308 unsigned ElementCount, LLVMBool Packed) {
310 ElementCount, Packed);
327 unsigned ElementCount, LLVMBool Packed) {
328 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
357 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
358 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
365 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
366 return wrap(VectorType::get(unwrap(ElementType), ElementCount));
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 171 milliseconds