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 794 unsigned ElementCount, LLVMBool Packed);
801 LLVMTypeRef LLVMStructType(LLVMTypeRef *ElementTypes, unsigned ElementCount,
824 unsigned ElementCount, LLVMBool Packed);
890 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount);
929 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount);
    [all...]
  /external/llvm/lib/VMCore/
Core.cpp 321 unsigned ElementCount, LLVMBool Packed) {
322 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
327 unsigned ElementCount, LLVMBool Packed) {
329 ElementCount, Packed);
346 unsigned ElementCount, LLVMBool Packed) {
347 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
376 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
377 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
384 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
385 return wrap(VectorType::get(unwrap(ElementType), ElementCount));
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 47 milliseconds