Lines Matching defs:printf
3689 printf("UDF (permanently undefined) instruction at %p: 0x%08" PRIx32 "\n",
3697 printf("Unimplemented instruction at %p: 0x%08" PRIx32 "\n",
3705 printf("Unallocated instruction at %p: 0x%08" PRIx32 "\n",
14497 // We need to call the host printf function with a set of arguments defined by
14524 // Chunks after the first are passed as format strings to printf, so we
14538 // Finally, call printf with each chunk, passing the appropriate register
14539 // argument. Normally, printf returns the number of bytes transmitted, so we
14540 // can emulate a single printf call by adding the result from each chunk. If
14543 printf("%s", clr_printf);
14547 int result = printf("%s", format);
14558 part_result = printf(chunks[i], ReadWRegister(pcs_r++));
14561 part_result = printf(chunks[i], ReadXRegister(pcs_r++));
14564 part_result = printf(chunks[i], ReadDRegister(pcs_f++));
14580 printf("%s", clr_normal);
14582 // Printf returns its result in x0 (just like the C library's printf).
14585 // The printf parameters are inlined in the code, so skip them.
14588 // Set LR as if we'd just called a native printf function.