Searched defs:obuf (Results 1 - 6 of 6) sorted by relevance
/ast/src/lib/libast/sfio/ |
H A D | sfsetbuf.c | 117 uchar* obuf = NIL(uchar*); local 173 { obuf = f->data; 202 obuf = f->data; 364 if(obuf && size == (size_t)osize && init) 365 { buf = (Void_t*)obuf; 366 obuf = NIL(uchar*); 404 if(obuf && obuf != f->data && osize > 0 && (oflags&SF_MALLOC)) 405 { free((Void_t*)obuf); 406 obuf [all...] |
/ast/src/cmd/mailx/ |
H A D | quit.c | 129 FILE* obuf; local 172 if (obuf = fileopen(move, "Ew")) { 173 if (copy(mp, obuf, NiL, NiL, 0) < 0) { 182 fileclose(obuf); 196 if (!(obuf = fileopen(temp, "Ew"))) { 201 fileclose(obuf); 207 filecopy(NiL, ibuf, NiL, obuf, NiL, (off_t)0, NiL, NiL, 0); 209 fileclose(obuf); 219 if (!(obuf = fileopen(state.path.mail, "Er+"))) { 223 filetrunc(obuf); 270 FILE* obuf; local 334 FILE* obuf; local [all...] |
H A D | fio.c | 452 putline(FILE* obuf, char* buf) argument 459 if (putc('>', obuf) == EOF) 464 if (fwrite(buf, 1, c, obuf) != c || putc('\n', obuf) == EOF)
|
H A D | cmd1.c | 335 FILE* obuf; local 337 obuf = stdout; 348 if (!(obuf = pipeopen(state.var.pager, "Jw"))) 349 obuf = stdout; 356 fprintf(obuf, "Message %d:\n", ip->m_index); 357 copy(mp, obuf, ignore, NiL, flags); 360 if (obuf != stdout) 361 fileclose(obuf);
|
/ast/src/lib/libvcodex/Vcmisc/ |
H A D | vcrle.c | 40 Vcchar_t* obuf; /* default output data */ member in struct:_rle_s 75 o = rle->obuf; rle->osiz = 0; 128 return (rle->osiz = o - rle->obuf); 145 o = rle->obuf; rle->osiz = 0; 223 return (rle->osiz = o - rle->obuf); 241 vcioinit(&io, rle->obuf, rle->osiz); 267 { dt = rle->obuf; enddt = rle->endo; 278 return (rle->osiz = dt - rle->obuf); 299 chr = rle->obuf; 330 return (rle->osiz = chr - rle->obuf) [all...] |
/ast/src/cmd/bzip/ |
H A D | bzip2.c | 372 UChar obuf[5000]; local 396 nread = bzRead ( &bzerr, bzf, obuf, 5000 ); 399 fwrite ( obuf, sizeof(UChar), nread, stream ); 465 UChar obuf[5000]; local 486 bzRead ( &bzerr, bzf, obuf, 5000 );
|
Completed in 21 milliseconds