OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getMallocType
(Results
1 - 4
of
4
) sorted by null
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
MemoryBuiltins.h
49
///
getMallocType
- Returns the PointerType resulting from the malloc call.
54
PointerType *
getMallocType
(const CallInst *CI);
/external/swiftshader/third_party/LLVM/lib/Analysis/
MemoryBuiltins.cpp
131
///
getMallocType
- Returns the PointerType resulting from the malloc call.
136
PointerType *llvm::
getMallocType
(const CallInst *CI) {
137
assert(isMalloc(CI) && "
getMallocType
and not malloc call");
168
PointerType *PT =
getMallocType
(CI);
/external/llvm/include/llvm/Analysis/
MemoryBuiltins.h
80
///
getMallocType
- Returns the PointerType resulting from the malloc call.
85
PointerType *
getMallocType
(const CallInst *CI, const TargetLibraryInfo *TLI);
/external/llvm/lib/Analysis/
MemoryBuiltins.cpp
245
///
getMallocType
- Returns the PointerType resulting from the malloc call.
250
PointerType *llvm::
getMallocType
(const CallInst *CI,
252
assert(isMallocLikeFn(CI, TLI) && "
getMallocType
and not malloc call");
284
PointerType *PT =
getMallocType
(CI, TLI);
Completed in 279 milliseconds