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

  /external/llvm/include/llvm-c/
BitReader.h 32 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf,
36 LLVMMemoryBufferRef MemBuf,
43 LLVMMemoryBufferRef MemBuf,
47 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
53 LLVMMemoryBufferRef MemBuf,
58 LLVMBool LLVMGetBitcodeModuleProvider(LLVMMemoryBufferRef MemBuf,
Object.h 36 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...]
  /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 21 LLVMObjectFileRef LLVMCreateObjectFile(LLVMMemoryBufferRef MemBuf) {
22 return wrap(ObjectFile::createObjectFile(unwrap(MemBuf)));
  /external/clang/tools/driver/
driver.cpp 190 llvm::OwningPtr<llvm::MemoryBuffer> MemBuf;
191 if (llvm::MemoryBuffer::getFile(FName, MemBuf)) {
196 const char *Buf = MemBuf->getBufferStart();
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 479 OwningPtr<MemoryBuffer> MemBuf;
482 MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), MemBuf))
485 if (MemBuf->getBufferSize() & 3)
488 unsigned char *BufPtr = (unsigned char *)MemBuf->getBufferStart();
489 unsigned char *EndBufPtr = BufPtr+MemBuf->getBufferSize();
  /frameworks/compile/slang/
llvm-rs-cc.cpp 462 llvm::OwningPtr<llvm::MemoryBuffer> MemBuf;
463 if (llvm::MemoryBuffer::getFile(FName, MemBuf)) {
469 const char *Buf = MemBuf->getBufferStart();
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /external/llvm/lib/VMCore/
Core.cpp     [all...]

Completed in 178 milliseconds