HomeSort by relevance Sort by last modified time
    Searched defs:bitcode (Results 1 - 10 of 10) sorted by null

  /frameworks/compile/libbcc/tools/bcc/
Main.cpp 59 llvm::cl::desc("<input bitcode file>"));
196 ALOGE("Failed to load bitcode from path %s! (%s)",
202 const char *bitcode = input_data->getBufferStart(); local
218 bool built = RSCD.build(context, OptOutputPath.c_str(), OptOutputFilename.c_str(), bitcode,
  /art/compiler/llvm/
llvm_compilation_unit.cc 46 #include <llvm/Bitcode/ReaderWriter.h>
152 std::string bitcode; local
153 DumpBitcodeToString(bitcode);
156 output->WriteFully(bitcode.data(), bitcode.size());
168 // Dump the bitcode for debugging
238 // If we don't need write the bitcode to file, add the AddSuspendCheckToLoopLatchPass to the
253 // Write bitcode to file
262 LOG(ERROR) << "Failed to create bitcode output file: " << errmsg;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_vlc.h 62 uint16_t bitcode; member in struct:vl_vlc_compressed
84 dst[src->bitcode >> (16 - bits) | i] = src->entry;
vl_mpeg12_bitstream.c 51 uint32_t bitcode; member in struct:dct_coeff_compressed
587 dst[src->bitcode << 1 | i] = coeff;
592 dst[src->bitcode << 1 | i] = coeff;
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_vlc.h 62 uint16_t bitcode; member in struct:vl_vlc_compressed
84 dst[src->bitcode >> (16 - bits) | i] = src->entry;
vl_mpeg12_bitstream.c 51 uint32_t bitcode; member in struct:dct_coeff_compressed
587 dst[src->bitcode << 1 | i] = coeff;
592 dst[src->bitcode << 1 | i] = coeff;
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 27 * bitcode() - the bitcode being linked
78 const BitcodeOption& bitcode() const { return m_Bitcode; } function in class:mcld::LinkerConfig
79 BitcodeOption& bitcode() { return m_Bitcode; } function in class:mcld::LinkerConfig
  /frameworks/compile/libbcc/bcinfo/tools/
main.cpp 22 #include <llvm/Bitcode/ReaderWriter.h>
50 // information about a supplied bitcode input file.
216 static size_t readBitcode(const char **bitcode) {
241 *bitcode = (const char*) calloc(1, bitcodeSize + 1);
242 size_t nread = fread((void*) *bitcode, 1, bitcodeSize, in);
252 static void releaseBitcode(const char **bitcode) {
253 if (bitcode && *bitcode) {
254 free((void*) *bitcode);
255 *bitcode = NULL
267 const char *bitcode = NULL; local
    [all...]
  /external/llvm/unittests/Support/
Path.cpp 486 const char bitcode[] = "\xde\xc0\x17\x0b"; member in namespace:__anon30311
515 DEFINE(bitcode),
  /external/llvm/include/llvm/Support/
FileSystem.h 227 bitcode, ///< Bitcode file enumerator in enum:llvm::sys::fs::file_magic::Impl

Completed in 143 milliseconds