Searched refs:obuf (Results 26 - 50 of 97) sorted by relevance

1234

/macosx-10.10.1/rsync-45/rsync/
H A Dtoken.c154 static char *obuf; variable
156 /* We want obuf to be able to hold both MAX_DATA_COUNT+2 bytes as well as
184 if ((obuf = new_array(char, OBUF_SIZE)) == NULL)
231 tx_strm.next_out = (Bytef *)(obuf + 2);
240 obuf+MAX_DATA_COUNT-2, 4);
263 obuf[0] = DEFLATED_DATA + (n >> 8);
264 obuf[1] = n;
265 write_buf(f, obuf, n+2);
285 tx_strm.next_out = (Bytef *) obuf;
/macosx-10.10.1/remote_cmds-47/rlogin.tproj/
H A Drlogin.c733 char obuf[4 + sizeof (struct winsize)]; local
735 wp = (struct winsize *)(obuf+4);
736 obuf[0] = 0377;
737 obuf[1] = 0377;
738 obuf[2] = 's';
739 obuf[3] = 's';
747 (void)des_write(rem, obuf, sizeof(obuf));
750 (void)write(rem, obuf, sizeof(obuf));
[all...]
/macosx-10.10.1/mail_cmds-30/mail/
H A Dfio.c173 putline(obuf, linebuf, outlf)
174 FILE *obuf;
181 (void)fwrite(linebuf, sizeof(*linebuf), c, obuf);
183 fprintf(obuf, "\n");
186 if (ferror(obuf))
/macosx-10.10.1/zsh-61/zsh/Src/Zle/
H A Dzle_refresh.c639 *obuf = NULL; /* old video buffer line-by-line array */ variable
674 zfree(obuf[ln], (winw_alloc + 2) * sizeof(**obuf));
677 free(obuf);
685 obuf = NULL;
708 obuf = (REFRESH_STRING *)zshcalloc((winh + 1) * sizeof(*obuf));
710 obuf[0] = (REFRESH_STRING)zalloc((winw + 2) * sizeof(**obuf));
729 if (obuf[l
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_ssl/regressions/
H A Dssl-48-split.c172 unsigned char ibuf[90000], obuf[45000]; local
176 SecRandomCopyBytes(kSecRandomDefault, ssl->write_size, obuf);
177 require_noerr(ortn = SSLWrite(ctx, obuf, ssl->write_size, &len), out);
179 require_noerr(ortn = SSLWrite(ctx, obuf, ssl->write_size, &len), out);
H A Dssl-42-ciphers.c519 unsigned char ibuf[BUFSIZE], obuf[BUFSIZE]; local
524 memset(obuf, i, BUFSIZE);
525 // SecRandomCopyBytes(kSecRandomDefault, sizeof(obuf), obuf);
526 require_noerr(ortn = SSLWrite(ctx, obuf, BUFSIZE, &len), out);
529 require_noerr(ortn = SSLWrite(ctx, obuf, 0, &len), out);
547 require_noerr(memcmp(ibuf, obuf, BUFSIZE), out);
H A Dssl-39-echo.c625 unsigned char ibuf[4096], obuf[4096]; local
628 SecRandomCopyBytes(kSecRandomDefault, sizeof(obuf), obuf);
629 require_noerr_quiet(ortn = SSLWrite(ctx, obuf, sizeof(obuf), &len), out);
630 require_action_quiet(len == sizeof(obuf), out, ortn = -1);
636 require_noerr(memcmp(ibuf, obuf, sizeof(ibuf)), out);
/macosx-10.10.1/BerkeleyDB-21/db/hash/
H A Dhash_upgrade.c23 __ham_30_hashmeta(dbp, real_name, obuf)
26 u_int8_t *obuf;
38 oldmeta = (HASHHDR *)obuf;
H A Dhash_stub.c38 __ham_30_hashmeta(dbp, real_name, obuf)
41 u_int8_t *obuf;
44 COMPQUIET(obuf, NULL);
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dtiffcp.c1376 tdata_t obuf = _TIFFmalloc(TIFFStripSize(out)); local
1380 if (obuf == NULL)
1391 obuf, (uint8*) buf + row*rowsize + s,
1393 if (TIFFWriteEncodedStrip(out, strip++, obuf, stripsize) < 0) {
1397 _TIFFfree(obuf);
1402 _TIFFfree(obuf);
1412 tdata_t obuf = _TIFFmalloc(TIFFTileSize(out)); local
1418 if (obuf == NULL)
1435 cpStripToTile(obuf, bufp + colb, nrow, width,
1438 cpStripToTile(obuf, buf
1462 tdata_t obuf = _TIFFmalloc(TIFFTileSize(out)); local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/tlsnke/tlsnketest/
H A Dst_test.c565 unsigned char ibuf[300], obuf[300]; local
568 SecRandomCopyBytes(kSecRandomDefault, sizeof(obuf), obuf);
569 require_noerr_quiet(ortn = SSLWrite(ctx, obuf, sizeof(obuf), &len), out);
570 require_action_quiet(len == sizeof(obuf), out, ortn = -1);
576 require_noerr(memcmp(ibuf, obuf, sizeof(ibuf)), out);
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dsnprintf.c1581 char fmtbuf[FALLBACK_FMTSIZE], *obuf; local
1585 obuf = (char *)xmalloc (fl);
1591 sprintf (obuf, fmtbuf, data->width, data->precision, ld);
1593 sprintf (obuf, fmtbuf, data->width, ld);
1595 sprintf (obuf, fmtbuf, data->precision, ld);
1597 sprintf (obuf, fmtbuf, ld);
1599 for (x = obuf; *x; x++)
1601 xfree (obuf);
1614 char fmtbuf[FALLBACK_FMTSIZE], obuf[FALLBACK_BASE]; local
1622 sprintf (obuf, fmtbu
[all...]
/macosx-10.10.1/netcat-22/
H A Dnetcat.c988 unsigned char obuf[4]; local
991 obuf[0] = '\0';
997 obuf[0] = IAC;
1000 obuf[1] = DONT;
1002 obuf[1] = WONT;
1003 if (obuf) {
1005 obuf[2] = *p;
1006 obuf[3] = '\0';
1007 if (atomicio(vwrite, nfd, obuf, 3) != 3)
1009 obuf[
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/mail/
H A Drmailout.el183 (let ((obuf (current-buffer)))
185 (insert-buffer-substring obuf beg end)
188 (set-buffer obuf)
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/generic/
H A DSphereFile.c111 float *obuf, int len)
120 float *f = obuf;
110 ReadSphereSamples(Sound *s, Tcl_Interp *interp, Tcl_Channel ch, char *ibuf, float *obuf, int len) argument
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dkex.c605 u_int8_t nbuf[2048], obuf[EVP_MAX_MD_SIZE]; local
624 EVP_DigestFinal(&md, obuf, NULL);
625 memcpy(id, obuf, 16);
628 memset(obuf, 0, sizeof(obuf));
/macosx-10.10.1/OpenSSL098-52/src/fips/des/
H A Dfips_desmovs.c134 char obuf[2048];
136 olen = bin2hex(val, len, obuf);
137 printf("%s = %.*s\n", tag, olen, obuf);
/macosx-10.10.1/OpenSSL098-52/src/test/
H A Dfips_desmovs.c134 char obuf[2048];
136 olen = bin2hex(val, len, obuf);
137 printf("%s = %.*s\n", tag, olen, obuf);
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Di386-dis.c1386 static char obuf[100]; variable
3008 obuf[0] = 0;
3046 obufp = obuf;
3270 obufp = obuf + strlen (obuf);
3271 for (i = strlen (obuf); i < 6; i++)
3274 (*info->fprintf_func) (info->stream, "%s", obuf);
3754 strcpy (obuf, "(bad)");
3755 obufp = obuf + 5;
5329 strcpy (obuf
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dserver.el539 (obuf (get-file-buffer filen)))
541 (if (and obuf (set-buffer obuf))
544 (when (not (verify-visited-file-modtime obuf))
H A Dedmacro.el306 (obuf edmacro-original-buffer)
312 (when (buffer-name obuf)
313 (set-buffer obuf))
343 (when (buffer-name obuf)
344 (switch-to-buffer obuf))
/macosx-10.10.1/tcl-105/tk/tk/generic/
H A DtkImgGIF.c1833 unsigned int obuf;
1949 binformat(statePtr->obuf, statePtr->obits), statePtr->obits,
1951 statePtr->obuf |= val << statePtr->obits;
1954 blockOut(statePtr, statePtr->obuf & 0xff);
1955 statePtr->obuf >>= 8;
1959 binformat(statePtr->obuf, statePtr->obits), statePtr->obits));
1969 blockOut(statePtr, statePtr->obuf);
2226 statePtr->obuf = 0;
1810 unsigned int obuf; member in struct:__anon13222
/macosx-10.10.1/tcl-105/tk84/tk/generic/
H A DtkImgGIF.c1754 static unsigned int obuf;
1857 binformat(obuf, obits), obits, out_bits));
1858 obuf |= val << obits;
1861 block_out(UCHAR(obuf&0xff));
1862 obuf >>= 8;
1865 DEBUGMSG(("output leaving [%s %d]\n", binformat(obuf, obits), obits));
1873 block_out(UCHAR(obuf));
2101 obuf = 0;
1740 static unsigned int obuf; variable
/macosx-10.10.1/bzip2-36/bzip2/
H A Dbzip2.c441 UChar obuf[5000]; local
466 nread = BZ2_bzRead ( &bzerr, bzf, obuf, 5000 );
469 fwrite ( obuf, sizeof(UChar), nread, stream );
513 nread = fread ( obuf, sizeof(UChar), 5000, zStream );
515 if (nread > 0) fwrite ( obuf, sizeof(UChar), nread, stream );
562 UChar obuf[5000]; local
584 nread = BZ2_bzRead ( &bzerr, bzf, obuf, 5000 );
/macosx-10.10.1/text_cmds-88/pr/
H A Dpr.c196 char *obuf; local
214 if ((obuf = malloc((unsigned)(LBUF + off)*sizeof(char))) == NULL) {
227 nbuf = obuf + offst;
232 (void)memset(obuf, (int)' ', offst);
282 if (otln(obuf,cnt+off, &ips, &ops, mor))

Completed in 469 milliseconds

1234