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

  /external/llvm/include/llvm-c/
BitReader.h 38 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf,
42 LLVMMemoryBufferRef MemBuf,
49 LLVMMemoryBufferRef MemBuf,
53 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
59 LLVMMemoryBufferRef MemBuf,
64 LLVMBool LLVMGetBitcodeModuleProvider(LLVMMemoryBufferRef MemBuf,
Object.h 45 LLVMObjectFileRef LLVMCreateObjectFile(LLVMMemoryBufferRef MemBuf);
Core.h     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitReader.cpp 22 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf,
24 return LLVMParseBitcodeInContext(wrap(&getGlobalContext()), MemBuf, OutModule,
29 LLVMMemoryBufferRef MemBuf,
34 *OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), *unwrap(ContextRef),
49 LLVMMemoryBufferRef MemBuf,
54 *OutM = wrap(getLazyBitcodeModule(unwrap(MemBuf), *unwrap(ContextRef),
66 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
68 return LLVMGetBitcodeModuleInContext(LLVMGetGlobalContext(), MemBuf, OutM,
74 LLVMMemoryBufferRef MemBuf,
77 return LLVMGetBitcodeModuleInContext(ContextRef, MemBuf,
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitReader.cpp 22 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf,
24 return LLVMParseBitcodeInContext(wrap(&getGlobalContext()), MemBuf, OutModule,
29 LLVMMemoryBufferRef MemBuf,
34 *OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), *unwrap(ContextRef),
49 LLVMMemoryBufferRef MemBuf,
54 *OutM = wrap(getLazyBitcodeModule(unwrap(MemBuf), *unwrap(ContextRef),
66 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
68 return LLVMGetBitcodeModuleInContext(LLVMGetGlobalContext(), MemBuf, OutM,
74 LLVMMemoryBufferRef MemBuf,
77 return LLVMGetBitcodeModuleInContext(ContextRef, MemBuf,
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitReader.cpp 22 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf,
24 return LLVMParseBitcodeInContext(wrap(&getGlobalContext()), MemBuf, OutModule,
29 LLVMMemoryBufferRef MemBuf,
34 *OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), *unwrap(ContextRef),
49 LLVMMemoryBufferRef MemBuf,
54 *OutM = wrap(getLazyBitcodeModule(unwrap(MemBuf), *unwrap(ContextRef),
66 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
68 return LLVMGetBitcodeModuleInContext(LLVMGetGlobalContext(), MemBuf, OutM,
74 LLVMMemoryBufferRef MemBuf,
77 return LLVMGetBitcodeModuleInContext(ContextRef, MemBuf,
    [all...]
  /external/llvm/bindings/ocaml/bitreader/
bitreader_ocaml.c 49 CAMLprim value llvm_get_module(LLVMContextRef C, LLVMMemoryBufferRef MemBuf) {
55 if (LLVMGetBitcodeModuleInContext(C, MemBuf, &M, &Message))
63 LLVMMemoryBufferRef MemBuf) {
69 if (LLVMParseBitcodeInContext(C, MemBuf, &M, &Message))
  /external/clang/tools/driver/
driver.cpp 194 OwningPtr<llvm::MemoryBuffer> MemBuf;
195 if (llvm::MemoryBuffer::getFile(FName, MemBuf)) {
200 const char *Buf = MemBuf->getBufferStart();
  /external/llvm/lib/Object/
Object.cpp 22 LLVMObjectFileRef LLVMCreateObjectFile(LLVMMemoryBufferRef MemBuf) {
23 return wrap(ObjectFile::createObjectFile(unwrap(MemBuf)));
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 477 OwningPtr<MemoryBuffer> MemBuf;
480 MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), MemBuf))
483 if (MemBuf->getBufferSize() & 3)
486 const unsigned char *BufPtr = (unsigned char *)MemBuf->getBufferStart();
487 const unsigned char *EndBufPtr = BufPtr+MemBuf->getBufferSize();
  /frameworks/compile/slang/
llvm-rs-cc.cpp 495 llvm::OwningPtr<llvm::MemoryBuffer> MemBuf;
496 if (llvm::MemoryBuffer::getFile(FName, MemBuf)) {
502 const char *Buf = MemBuf->getBufferStart();
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/llvm/lib/VMCore/
Core.cpp     [all...]

Completed in 207 milliseconds