/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/ |
H A D | putc.c | 2 Implementation of a subroutine version of the macro putc, 44 NetBSD: putc.c,v 1.11 2003/08/07 16:43:29 agc Exp 45 putc.c 8.1 (Berkeley) 6/4/93 56 * putc. 58 #undef putc macro 62 putc(int c, FILE *fp) function
|
/vbox/src/libs/zlib-1.2.6/examples/ |
H A D | gzjoin.c | 55 #include <stdio.h> /* fputs(), fprintf(), fwrite(), putc() */ 246 putc(val & 0xff, out); 247 putc((val >> 8) & 0xff, out); 248 putc((val >> 16) & 0xff, out); 249 putc((val >> 24) & 0xff, out); 382 putc(last, out); 388 putc(last, out); 390 putc(0, out); /* two more bits in block header */ 397 putc(last | 8, out); 400 putc(las [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/ |
H A D | ansi_screen.c | 83 .putc = ansiscr_putc,
|
H A D | mucurses.c | 54 win->scr->putc(win->scr, ch);
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
H A D | lex.c | 661 if ( !firstTime || initialComma ) putc(',', output); /* MR5 */ 736 putc(';', output); putc('\n', output); 739 else {putc(*pdecl, output); pdecl++;} 741 putc(';', output); 742 putc('\n', output);
|
H A D | bits.c | 993 {putc('\\', f); putc('\\', f); e+=2;} 995 {putc('\\', f); putc('"', f); e+=2;} 996 else if ( *e=='\\' ) {putc('\\', f); putc('\\', f); e++;} 997 else {putc(*e, f); e++;}
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/ |
H A D | res_debug.c | 148 putc('\n', file); 173 putc('\n', file); 248 putc(';', file); 280 putc('\n',file); 291 putc('\n', file); 302 putc('.', file);
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/ |
H A D | stdio.h | 46 int putc (int, FILE *); 204 * This ensures that the getc and putc macros (or inline functions) never 222 int _w; /**< write space left for putc() */ 226 int _lbfsize; /**< 0 or -_bf._size, for inline putc */ 1172 The putc function is equivalent to fputc, except that if it is implemented 1179 @return The putc function returns the character written. If a write 1181 putc returns EOF. 1183 int putc (int C, FILE *Stream); 1187 The putchar function is equivalent to putc with stdout as the Stream argument. 1606 #define putc( macro [all...] |
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/ |
H A D | tchar.h | 104 #define _puttc WINE_tchar_routine(putc, putc, putwc)
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/ |
H A D | tchar.h | 104 #define _puttc WINE_tchar_routine(putc, putc, putwc)
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/ |
H A D | stdio.h | 155 int __cdecl putc(int,FILE*);
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/ |
H A D | stdio.h | 160 int __cdecl putc(int,FILE*);
|
/vbox/src/libs/xpcom18a4/xpcom/threads/ |
H A D | nsAutoLock.cpp | 300 putc('\n', stderr);
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/EfiRom/ |
H A D | EfiRom.c | 386 putc (~0, OutFptr); 665 if (putc (0, OutFptr) == EOF) { 708 if (putc (~0, OutFptr) == EOF) {
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | curses.h | 55 void ( * putc ) ( struct _curses_screen *scr, chtype c ); member in struct:_curses_screen
|
/vbox/src/libs/xpcom18a4/nsprpub/config/ |
H A D | nsinstall.c | 448 putc('\n', stderr);
|
/vbox/src/libs/xpcom18a4/xpcom/tests/ |
H A D | TestPipes.cpp | 150 putc(buf[j], stdout);
|
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Python/ |
H A D | marshal.c | 76 #define w_byte(c, p) if (((p)->fp)) putc((c), (p)->fp); \
|
/vbox/src/libs/zlib-1.2.6/ |
H A D | deflate.c | 1371 do { putc(s->window[start++], stderr); } while (--length != 0);
|