Searched refs:inbuf (Results 51 - 75 of 148) sorted by relevance

123456

/macosx-10.10.1/libiconv-42/libiconv/include/
H A Diconv.h.msvc-shared82 starting at `*inbuf', writing at most `*outbytesleft' bytes starting at
84 Decrements `*inbytesleft' and increments `*inbuf' by the same amount.
89 extern LIBICONV_DLL_EXPORTED size_t iconv (iconv_t cd, const char* * inbuf, size_t *inbytesleft, char* * outbuf, size_t *outbytesleft);
119 bytes from inbuf and may produce replacement Unicode characters by calling
122 (const char* inbuf, size_t inbufsize,
139 a wide character. This function should process all bytes from inbuf and may
143 (const char* inbuf, size_t inbufsize,
H A Diconv.h.msvc-static76 starting at `*inbuf', writing at most `*outbytesleft' bytes starting at
78 Decrements `*inbytesleft' and increments `*inbuf' by the same amount.
83 extern size_t iconv (iconv_t cd, const char* * inbuf, size_t *inbytesleft, char* * outbuf, size_t *outbytesleft);
113 bytes from inbuf and may produce replacement Unicode characters by calling
116 (const char* inbuf, size_t inbufsize,
133 a wide character. This function should process all bytes from inbuf and may
137 (const char* inbuf, size_t inbufsize,
H A Diconv.h_vms76 starting at `*inbuf', writing at most `*outbytesleft' bytes starting at
78 Decrements `*inbytesleft' and increments `*inbuf' by the same amount.
83 extern size_t iconv (iconv_t cd, char* * inbuf, size_t *inbytesleft, char* * outbuf, size_t *outbytesleft);
113 bytes from inbuf and may produce replacement Unicode characters by calling
116 (const char* inbuf, size_t inbufsize,
133 a wide character. This function should process all bytes from inbuf and may
137 (const char* inbuf, size_t inbufsize,
H A Diconv.h.in68 starting at `*inbuf', writing at most `*outbytesleft' bytes starting at
70 Decrements `*inbytesleft' and increments `*inbuf' by the same amount.
73 char ** __restrict /*inbuf*/, size_t * __restrict /*inbytesleft*/,
106 bytes from inbuf and may produce replacement Unicode characters by calling
109 (const char* inbuf, size_t inbufsize,
126 a wide character. This function should process all bytes from inbuf and may
130 (const char* inbuf, size_t inbufsize,
/macosx-10.10.1/xnu-2782.1.97/libkern/zlib/
H A Dgzio.c88 Byte *inbuf; /* input buffer */ member in struct:gz_stream
141 s->stream.next_in = s->inbuf = Z_NULL;
192 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
201 if (err != Z_OK || s->inbuf == Z_NULL) {
294 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
300 s->stream.next_in = s->inbuf;
328 if (len) s->inbuf[0] = s->stream.next_in[0];
330 len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
333 s->stream.next_in = s->inbuf;
410 TRYFREE(s->inbuf);
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Drd_priv.c39 const krb5_data *inbuf,
66 ret = decode_KRB_PRIV (inbuf->data, inbuf->length, &priv, &len);
37 krb5_rd_priv(krb5_context context, krb5_auth_context auth_context, const krb5_data *inbuf, krb5_data *outbuf, krb5_replay_data *outdata) argument
H A Drd_safe.c86 const krb5_data *inbuf,
110 ret = decode_KRB_SAFE (inbuf->data, inbuf->length, &safe, &len);
84 krb5_rd_safe(krb5_context context, krb5_auth_context auth_context, const krb5_data *inbuf, krb5_data *outbuf, krb5_replay_data *outdata) argument
/macosx-10.10.1/smb-759.0/kernel/netsmb/
H A Dsmb_converter.c277 smb_convert_to_network(const char **inbuf, size_t *inbytesleft, char **outbuf, argument
284 DBG_ASSERT(inbuf);
285 DBG_ASSERT(*inbuf);
298 error = utf8_decodestr((const uint8_t*)*inbuf, inlen, (uint16_t *)*outbuf,
305 error = utf8_decodestr((const uint8_t*)*inbuf, inlen, buf, &outlen,
314 *inbuf += inlen;
333 smb_convert_from_network(const char **inbuf, size_t *inbytesleft, char **outbuf, argument
340 DBG_ASSERT(inbuf);
341 DBG_ASSERT(*inbuf);
353 error = utf8_encodestr((uint16_t *)*inbuf, inle
[all...]
/macosx-10.10.1/srm-7/srm/src/
H A Dtree_walker.c32 char inbuf[8]; local
35 fgets(inbuf, 4, stdin);
36 return strncmp(inbuf, "y", 1) == 0;
/macosx-10.10.1/xnu-2782.1.97/osfmk/prng/YarrowCoreLib/src/
H A Dcomp.c147 Bytef *inbuf,*outbuf; local
158 inbuf = (Bytef*)mmGetPtr(ctx->buf);
165 resp = compress(outbuf,&outsize,inbuf,insize);
H A Dprng.c465 prngStretch(BYTE *inbuf,UINT inbuflen,BYTE *outbuf,UINT outbuflen) {
470 PCHECK(inbuf);
475 memcpy(outbuf,inbuf,outbuflen);
478 else /* Extend using SHA1 hash of inbuf */
481 YSHA1Update(&ctx,inbuf,inbuflen);
500 prngInput(PRNG *p, BYTE *inbuf,UINT inbuflen,UINT poolnum, __unused UINT estbits)
508 PCHECK(inbuf);
512 YSHA1Update(&p->pool,inbuf,inbuflen);
522 resp = comp_add_data((p->comp_state)+poolnum,inbuf,inbuflen);
/macosx-10.10.1/cups-408/cups/vcnet/regex/
H A Dmain.c129 char inbuf[1000]; local
141 while (fgets(inbuf, sizeof(inbuf), in) != NULL) {
143 if (inbuf[0] == '#' || inbuf[0] == '\n')
145 inbuf[strlen(inbuf)-1] = '\0'; /* get rid of stupid \n */
148 nf = split(inbuf, f, MAXF, "\t\t");
/macosx-10.10.1/emacs-93/emacs/lisp/progmodes/
H A Dcmacexp.el161 (let ((inbuf (current-buffer))
174 (not (eq inbuf displaybuf)))
268 (let ((inbuf (current-buffer))
298 (insert-buffer-substring inbuf 1 end))
300 ;; We have copied inbuf to outbuf. Point is at end of
/macosx-10.10.1/gnutar-453/gnutar/src/
H A Dutf8.c37 # define iconv(cd, inbuf, inbytesleft, outbuf, outbytesleft) ((size_t) 0)
/macosx-10.10.1/postfix-255/postfix/src/global/
H A Danvil_clnt.c379 VSTRING *inbuf = vstring_alloc(1); local
403 while (vstring_fgets_nonl(inbuf, VSTREAM_IN)) {
404 bufp = vstring_str(inbuf);
458 vstring_free(inbuf);
/macosx-10.10.1/postfix-255/postfix/src/tls/
H A Dtls_mgr.c399 VSTRING *inbuf = vstring_alloc(10); local
413 while (vstring_fgets_nonl(inbuf, VSTREAM_IN)) {
414 argv = argv_split(STR(inbuf), " \t\r\n");
465 vstring_free(inbuf);
/macosx-10.10.1/ppp-786.1.1/Helpers/pppd/
H A Dacscp_plugin.h98 void (*print_packet) __P((void (*printer)(void *, char *, ...), void *arg, u_char code, char *inbuf, int insize));
/macosx-10.10.1/tcl-105/tcl_ext/memchan/memchan/generic/
H A Dbuf.h96 CONST VOID* inbuf, int size));
H A DbufDecls.h97 CONST void* inbuf, int size));
136 CONST char* inbuf, int size));
193 int (*buf_Write) _ANSI_ARGS_((Buf_Buffer buf, CONST void* inbuf, int size)); /* 41 */
215 int (*buf_QueueWrite) _ANSI_ARGS_((Buf_BufferQueue queue, CONST char* inbuf, int size)); /* 63 */
H A DbufExt.c24 CONST VOID* inbuf, int size));
262 * Writes at most size bytes from inbuf and appends
277 WriteProc (buf, clientData, inbuf, size)
280 CONST void* inbuf;
306 memcpy (iBuf->writeLoc, inbuf, size);
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dsubr_xxx.c211 const u_char *inbuf __unused, u_char *outbuf __unused, int buflen __unused)
/macosx-10.10.1/zsh-61/zsh/Src/Modules/
H A Dsystem.c74 char *outvar = NULL, *countvar = NULL, *inbuf; local
124 inbuf = zhalloc(bufsize);
189 while ((count = read(infd, inbuf, bufsize)) < 0) {
204 ret = write(outfd, inbuf, count);
210 setsparam(outvar, metafy(inbuf, count, META_DUP));
215 inbuf += ret;
224 setsparam(outvar, metafy(inbuf, count, META_DUP));
/macosx-10.10.1/libtelnet-13/
H A Dkerberos5.c98 rd_and_store_for_creds(krb5_context context, krb5_auth_context auth_context, krb5_data *inbuf, krb5_ticket *ticket);
402 krb5_data inbuf; local
578 inbuf.length = cnt;
579 inbuf.data = (char *)data;
583 &inbuf, ticket))) {
681 krb5_data inbuf; local
684 inbuf.length = cnt;
685 inbuf.data = (char *)data;
687 if ((r = krb5_rd_rep(telnet_context, auth_context, &inbuf,
/macosx-10.10.1/vim-55/src/
H A Dos_vms.c299 vms_read(char *inbuf, size_t nbytes) argument
310 /* important: clean the inbuf */
311 memset(inbuf, 0, nbytes);
323 inbuf, nbytes-1, 0, 0, &itmlst, sizeof(itmlst));
324 len = strlen(inbuf); /* how many chars we got? */
329 inbuf+len, nbytes-1-len, 0, 0, 0, 0);
331 len = strlen(inbuf); /* return the total length */
/macosx-10.10.1/Heimdal-398.1.2/appl/telnet/libtelnet/
H A Dkerberos5.c544 krb5_data inbuf; local
546 inbuf.data = (char *)data;
547 inbuf.length = cnt;
578 &inbuf);
671 krb5_data inbuf; local
674 inbuf.length = cnt;
675 inbuf.data = (char *)data;
677 ret = krb5_rd_rep(context, auth_context, &inbuf, &reply);

Completed in 191 milliseconds

123456