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

  /frameworks/compile/libbcc/tools/bcc/
Main.cpp 57 llvm::cl::desc("<input bitcode file>"));
195 ALOGE("Failed to load bitcode from path %s! (%s)",
202 const char *bitcode = input_memory->getBufferStart(); local
210 OptOutputFilename.c_str(), bitcode, bitcodeSize,
  /art/compiler/llvm/
llvm_compilation_unit.cc 46 #include <llvm/Bitcode/ReaderWriter.h>
155 std::string bitcode; local
156 DumpBitcodeToString(bitcode);
159 output->WriteFully(bitcode.data(), bitcode.size());
171 // Dump the bitcode for debugging
240 // If we don't need write the bitcode to file, add the AddSuspendCheckToLoopLatchPass to the
255 // Write bitcode to file
264 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/libbcc/bcinfo/tools/
main.cpp 24 #include <llvm/Bitcode/ReaderWriter.h>
50 // information about a supplied bitcode input file.
219 static size_t readBitcode(const char **bitcode) {
244 *bitcode = (const char*) calloc(1, bitcodeSize + 1);
245 size_t nread = fread((void*) *bitcode, 1, bitcodeSize, in);
255 static void releaseBitcode(const char **bitcode) {
256 if (bitcode && *bitcode) {
257 free((void*) *bitcode);
258 *bitcode = NULL
270 const char *bitcode = NULL; local
    [all...]
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 30 * bitcode() - the bitcode being linked
81 const BitcodeOption& bitcode() const { return m_Bitcode; } function in class:mcld::LinkerConfig
82 BitcodeOption& bitcode() { return m_Bitcode; } function in class:mcld::LinkerConfig
  /external/llvm/include/llvm/Support/
FileSystem.h 223 bitcode, ///< Bitcode file enumerator in enum:llvm::sys::fs::file_magic::Impl
    [all...]

Completed in 717 milliseconds