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 800 unsigned ElementCount, LLVMBool Packed);
807 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
830 unsigned ElementCount, LLVMBool Packed);
896 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount);
935 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount);
    [all...]
  /external/llvm/lib/IR/
Core.cpp 328 unsigned ElementCount, LLVMBool Packed) {
329 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
334 unsigned ElementCount, LLVMBool Packed) {
336 ElementCount, Packed);
353 unsigned ElementCount, LLVMBool Packed) {
354 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
383 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
384 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
391 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
392 return wrap(VectorType::get(unwrap(ElementType), ElementCount));
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 135 milliseconds