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

  /external/llvm/unittests/MC/
Disassembler.cpp 31 const char OutStringSize = 100;
32 char OutString[OutStringSize];
43 OutStringSize);
51 OutStringSize);
59 OutStringSize);
  /external/llvm/include/llvm-c/
Disassembler.h 238 * OutString whose size is specified in the parameter OutStringSize. This
244 char *OutString, size_t OutStringSize);
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 234 // parameter OutStringSize. This function returns the number of bytes in the
241 size_t OutStringSize){
274 assert(OutStringSize != 0 && "Output buffer cannot be zero size");
275 size_t OutputSize = std::min(OutStringSize-1, InsnStr.size());

Completed in 292 milliseconds