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

  /bootable/recovery/
wear_ui.cpp 346 PutChar(ch);
355 void WearRecoveryUI::PutChar(char ch) {
screen_ui.cpp 634 void ScreenRecoveryUI::PutChar(char ch) {
696 while (text_row_ < text_rows_ - 1) PutChar('\n');
699 PutChar(ch);
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 505 case LibFunc::putchar:
916 if (!TLI->has(LibFunc::putchar))
920 Value *PutChar = M->getOrInsertFunction("putchar", B.getInt32Ty(),
922 CallInst *CI = B.CreateCall(PutChar,
927 "putchar");
929 if (const Function *F = dyn_cast<Function>(PutChar->stripPointerCasts()))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
BuildLibCalls.cpp 236 /// EmitPutChar - Emit a call to the putchar function. This assumes that Char
240 Value *PutChar = M->getOrInsertFunction("putchar", B.getInt32Ty(),
242 CallInst *CI = B.CreateCall(PutChar,
247 "putchar");
249 if (const Function *F = dyn_cast<Function>(PutChar->stripPointerCasts()))

Completed in 298 milliseconds