Searched defs:buf (Results 1 - 5 of 5) sorted by relevance
/libmicro/ |
H A D | times.c | 56 struct tms buf; local 59 (void) times(&buf); 60 (void) times(&buf); 61 (void) times(&buf); 62 (void) times(&buf); 63 (void) times(&buf); 64 (void) times(&buf); 65 (void) times(&buf); 66 (void) times(&buf); 67 (void) times(&buf); [all...] |
H A D | getenv.c | 96 char buf[80]; local 97 (void) sprintf(buf, "VAR_%d=%d", j, j); 98 (void) putenv(strdup(buf));
|
H A D | chdir.c | 106 char buf[MAXPATHLEN]; local 115 if (optg && (getcwd(buf, MAXPATHLEN) == NULL)) {
|
H A D | memset.c | 130 char *buf = ts->ts_buff + ts->ts_offset; local 134 (void) memset(buf, 0, opts); 135 buf = (char *)(((unsigned long)buf + opts + 4095) & 137 if (buf + opts > end) 138 buf = ts->ts_buff + offset; 141 char *buf = ts->ts_buff + ts->ts_offset; local 144 (void) memset(buf, 0, opts); 145 (void) memset(buf, 0, opts); 146 (void) memset(buf, [all...] |
H A D | pipe.c | 86 int readall(int s, void *buf, size_t len); 296 readall(int s, void *buf, size_t len) argument 302 n = read(s, (void *)((long)buf + total), len - total);
|
Completed in 9 milliseconds