OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PutChar
(Results
1 - 3
of
3
) sorted by null
/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()))
/bootable/recovery/
screen_ui.cpp
771
void ScreenRecoveryUI::
PutChar
(char ch) {
830
while (text_row_ < text_rows_ - 1)
PutChar
('\n');
833
PutChar
(ch);
Completed in 448 milliseconds