Searched defs:buf (Results 1 - 5 of 5) sorted by relevance

/libmicro/
H A Dtimes.c56 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 Dgetenv.c96 char buf[80]; local
97 (void) sprintf(buf, "VAR_%d=%d", j, j);
98 (void) putenv(strdup(buf));
H A Dchdir.c106 char buf[MAXPATHLEN]; local
115 if (optg && (getcwd(buf, MAXPATHLEN) == NULL)) {
H A Dmemset.c130 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 Dpipe.c86 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