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 43 LLVMObjectFileRef LLVMCreateObjectFile(LLVMMemoryBufferRef MemBuf);
Core.h     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitReader.cpp 23 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf,
25 return LLVMParseBitcodeInContext(wrap(&getGlobalContext()), MemBuf, OutModule,
30 LLVMMemoryBufferRef MemBuf,
35 *OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), *unwrap(ContextRef),
50 LLVMMemoryBufferRef MemBuf,
55 *OutM = wrap(getLazyBitcodeModule(unwrap(MemBuf), *unwrap(ContextRef),
67 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
69 return LLVMGetBitcodeModuleInContext(LLVMGetGlobalContext(), MemBuf, OutM,
75 LLVMMemoryBufferRef MemBuf,
78 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/llvm/lib/Object/
Object.cpp 61 LLVMObjectFileRef LLVMCreateObjectFile(LLVMMemoryBufferRef MemBuf) {
62 return wrap(ObjectFile::createObjectFile(unwrap(MemBuf)));
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 481 OwningPtr<MemoryBuffer> MemBuf;
484 MemoryBuffer::getFileOrSTDIN(InputFilename, MemBuf))
487 if (MemBuf->getBufferSize() & 3)
490 const unsigned char *BufPtr = (const unsigned char *)MemBuf->getBufferStart();
491 const unsigned char *EndBufPtr = BufPtr+MemBuf->getBufferSize();
  /frameworks/compile/slang/
llvm-rs-cc.cpp 520 llvm::OwningPtr<llvm::MemoryBuffer> MemBuf;
521 if (llvm::MemoryBuffer::getFile(FName, MemBuf)) {
527 const char *Buf = MemBuf->getBufferStart();
  /external/llvm/lib/Support/
CommandLine.cpp 609 OwningPtr<MemoryBuffer> MemBuf;
610 if (MemoryBuffer::getFile(FName, MemBuf))
612 StringRef Str(MemBuf->getBufferStart(), MemBuf->getBufferSize());
615 ArrayRef<char> BufRef(MemBuf->getBufferStart(), MemBuf->getBufferEnd());
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /external/clang/lib/Basic/
SourceManager.cpp     [all...]
  /external/llvm/lib/IR/
Core.cpp     [all...]

Completed in 732 milliseconds