Searched refs:b (Results 1 – 5 of 5) sorted by relevance
/libio/ |
A D | tst_swscanf.c | 10 int a, b, c; in main() local 19 a = b = c = 0; in main() 20 n = swscanf (in, L"%d + %d is %d", &a, &b, &c); in main() 21 if (n != 3 || a + b != c || c != 42) in main() 23 printf ("*** FAILED, n = %Zu, a = %d, b = %d, c = %d\n", n, a, b, c); in main()
|
A D | oldfmemopen.c | 93 fmemopen_read (void *cookie, char *b, size_t s) in fmemopen_read() argument 106 memcpy (b, &(c->buffer[c->pos]), s); in fmemopen_read() 117 fmemopen_write (void *cookie, const char *b, size_t s) in fmemopen_write() argument 124 addnullc = c->binmode == 0 && (s == 0 || b[s - 1] != '\0'); in fmemopen_write() 136 memcpy (&(c->buffer[c->pos]), b, s); in fmemopen_write()
|
A D | fmemopen.c | 46 fmemopen_read (void *cookie, char *b, size_t s) in fmemopen_read() argument 57 memcpy (b, &(c->buffer[c->pos]), s); in fmemopen_read() 66 fmemopen_write (void *cookie, const char *b, size_t s) in fmemopen_write() argument 70 int addnullc = (s == 0 || b[s - 1] != '\0'); in fmemopen_write() 82 memcpy (&(c->buffer[pos]), b, s); in fmemopen_write()
|
A D | wgenops.c | 92 _IO_wsetb (FILE *f, wchar_t *b, wchar_t *eb, int a) in libc_hidden_def() 96 f->_wide_data->_IO_buf_base = b; in libc_hidden_def()
|
A D | genops.c | 328 _IO_setb (FILE *f, char *b, char *eb, int a) in libc_hidden_def() 332 f->_IO_buf_base = b; in libc_hidden_def()
|
Completed in 12 milliseconds