Searched defs:bufp (Results 1 - 25 of 27) sorted by relevance

12

/external/elfutils/libasm/
H A Ddisasm_str.c60 GElf_Addr addr, const char *fmt, char **bufp, size_t len,
63 struct buffer buffer = { .buf = *bufp, .len = len };
67 *bufp = buffer.buf;
59 disasm_str(DisasmCtx_t *ctx, const uint8_t **startp, const uint8_t *end, GElf_Addr addr, const char *fmt, char **bufp, size_t len, void *symcbarg) argument
/external/libselinux/src/
H A Denabled.c15 char *bufp; local
42 while ((bufp = fgets(buf, sizeof buf - 1, fp)) != NULL) {
49 if (!bufp)
H A Dinit.c33 char *bufp; local
56 while ((bufp = fgets(buf, sizeof buf - 1, fp)) != NULL) {
74 while ((bufp = fgets(buf, sizeof buf - 1, fp)) != NULL) {
90 if (bufp)
/external/libppp/src/
H A Dvjcomp.c117 u_char *bufp; local
128 bufp = MBUF_CTOP(bp);
129 len = sl_uncompress_tcp(&bufp, len, type, &ipcp->vj.cslc, &ipcp->vj.slstat,
147 bufp = work + MAX_HDR;
148 bp = mbuf_Read(bp, bufp, rlen);
149 len = sl_uncompress_tcp(&bufp, olen, type, &ipcp->vj.cslc, &ipcp->vj.slstat,
158 bp = m_prepend(bp, bufp, len, 0);
H A Dslcompress.c430 sl_uncompress_tcp(u_char ** bufp, int len, u_int type, struct slcompress *comp, argument
443 ip = (struct ip *) * bufp;
475 cp = *bufp;
557 len -= (cp - *bufp);
565 *bufp = cp - cs->cs_hlen;
579 memcpy(*bufp, &cs->cs_ip, cs->cs_hlen);
H A Dpred.c181 u_char bufp[MAX_MTU + 2]; local
187 cp = bufp;
193 fcs = hdlc_Fcs(bufp, 2 + orglen);
196 len = compress(state, bufp + 2, wp, orglen);
204 memcpy(wp, bufp + 2, orglen);
223 u_char *bufp; local
229 pp = bufp = MBUF_CTOP(wp);
262 fcs = hdlc_Fcs(bufp, wp->m_len = pp - bufp);
/external/openssl/crypto/asn1/
H A Df_enum.c104 unsigned char *bufp; local
135 bufp=(unsigned char *)buf;
139 if ((bufp[0] == '0') && (buf[1] == '0'))
141 bufp+=2;
174 m=bufp[k+n];
H A Df_int.c108 unsigned char *bufp; local
148 bufp=(unsigned char *)buf;
152 if ((bufp[0] == '0') && (buf[1] == '0'))
154 bufp+=2;
186 m=bufp[k+n];
H A Df_string.c102 unsigned char *bufp; local
148 bufp=(unsigned char *)buf;
179 m=bufp[k+n];
/external/srec/srec/crec/
H A Dsrec_debug.c28 char *bufp = &buf[0]; local
35 bufp += sprintf(bufp, "%d,", awtoken->word);
38 if (bufp > &buf[0]) *(bufp - 1) = 0;
/external/icu4c/test/letest/
H A Dgendata.cpp68 le_int32 bufp = 0; local
73 if (i % 8 == 0 && bufp != 0) {
75 bufp = 0;
78 bufp += sprintf(&lineBuffer[bufp], "0x%8.8X, ", longs[i]);
81 if (bufp != 0) {
82 lineBuffer[bufp - 2] = '\0';
91 le_int32 bufp = 0; local
96 if (i % 8 == 0 && bufp != 0) {
98 bufp
[all...]
/external/ppp/pppd/
H A Dcbcp.c369 u_char *bufp = buf; local
388 PUTCHAR(CB_CONF_USER, bufp);
390 PUTCHAR(len , bufp);
391 PUTCHAR(5, bufp); /* delay */
392 PUTCHAR(1, bufp);
393 BCOPY(us->us_number, bufp, slen + 1);
400 PUTCHAR(CB_CONF_ADMIN, bufp);
402 PUTCHAR(len, bufp);
403 PUTCHAR(5, bufp); /* delay */
410 PUTCHAR(CB_CONF_NO, bufp);
[all...]
/external/qemu/distrib/sdl-1.2.15/src/main/win32/
H A DSDL_win32_main.c81 char *bufp; local
86 for ( bufp = cmdline; *bufp; ) {
88 while ( isspace(*bufp) ) {
89 ++bufp;
92 if ( *bufp == '"' ) {
93 ++bufp;
94 if ( *bufp ) {
96 argv[argc] = bufp;
101 while ( *bufp
275 char *bufp, *appname; local
337 wchar_t *bufp; local
340 char *bufp; local
[all...]
/external/icu4c/tools/genrb/
H A Dderb.c421 char *bufp = buf, *bufend = buf + sizeof(buf) - 1 ; local
423 ucnv_fromUnicode(converter, &bufp, bufend, &str, strEnd, 0, 0, &err);
424 *bufp = 0;
441 UChar *bufp = buf, *bufend = buf + (sizeof(buf)/sizeof(buf[0])) - 1 ; local
443 ucnv_toUnicode(defaultConverter, &bufp, bufend, &str, strEnd, 0, 0, &err);
444 *bufp = 0;
446 printString(out, converter, buf, (int32_t)(bufp - buf));
/external/openssl/crypto/
H A Dmem_dbg.c667 char *bufp = buf; local
673 #define BUF_REMAIN (sizeof buf - (size_t)(bufp - buf))
682 BIO_snprintf(bufp, BUF_REMAIN, "[%02d:%02d:%02d] ",
684 bufp += strlen(bufp);
687 BIO_snprintf(bufp, BUF_REMAIN, "%5lu file=%s, line=%d, ",
689 bufp += strlen(bufp);
693 BIO_snprintf(bufp, BUF_REMAIN, "thread=%lu, ",
695 bufp
[all...]
/external/qemu/distrib/sdl-1.2.15/src/main/macos/
H A DSDL_main.c82 char *bufp; local
86 for ( bufp = cmdline; *bufp; ) {
88 while ( SDL_isspace(*bufp) ) {
89 ++bufp;
92 if ( *bufp == '"' ) {
93 ++bufp;
94 if ( *bufp ) {
96 argv[argc] = bufp;
101 while ( *bufp
[all...]
/external/ppp/pppd/plugins/rp-pppoe/
H A Dif.c75 void dlinfoack(int fd, char *bufp);
78 void dlokack(int fd, char *bufp);
79 void dlbindack(int fd, char *bufp);
833 void dlinfoack(int fd, char *bufp) argument
841 ctl.buf = bufp;
907 void dlokack(int fd, char *bufp) argument
915 ctl.buf = bufp;
939 void dlbindack(int fd, char *bufp) argument
947 ctl.buf = bufp;
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_string.c384 char *bufp = string; local
385 while ( *bufp ) {
386 *bufp = SDL_toupper((unsigned char) *bufp);
387 ++bufp;
396 char *bufp = string; local
397 while ( *bufp ) {
398 *bufp = SDL_tolower((unsigned char) *bufp);
399 ++bufp;
421 const char *bufp = string + SDL_strlen(string) - 1; local
459 char *bufp = string; local
489 char *bufp = string; local
557 char *bufp = string; local
587 char *bufp = string; local
[all...]
/external/elfutils/libcpu/
H A Di386_data.h124 d->bufp[(*d->bufcntp)++] = '%';
125 d->bufp[(*d->bufcntp)++] = ch;
126 d->bufp[(*d->bufcntp)++] = 's';
127 d->bufp[(*d->bufcntp)++] = ':';
162 char *bufp = d->bufp; local
204 memcpy (&bufp[*bufcntp], tmpbuf, n + 1);
278 memcpy (&bufp[*bufcntp], tmpbuf, n + 1);
376 memcpy (&bufp[*bufcntp], tmpbuf, cp - tmpbuf);
397 char *buf = d->bufp
505 char *bufp = d->bufp; local
532 char *bufp = d->bufp; local
943 char *bufp = d->bufp; local
1022 char *bufp = d->bufp; local
1090 char *bufp = d->bufp; local
1359 char *bufp = d->bufp; local
1382 char *bufp = d->bufp; local
[all...]
H A Di386_disasm.c261 char *bufp; member in struct:output_data
323 .bufp = buf,
447 output_data.bufp = buf;
/external/icu4c/extra/uconv/
H A Duconv.cpp597 char *bufp; local
913 // Again 'bufp' will be placed behind the last converted character
921 bufp = outbuf;
926 ucnv_fromUnicode(convto, &bufp, outbuf + bufsz,
981 ferroffset = (int32_t)(outfoffset + (bufp - outbuf));
1021 size_t outlen = (size_t) (bufp - outbuf);
/external/libpcap/
H A Dpcap-dlpi.c1141 recv_ack(int fd, int size, const char *what, char *bufp, char *ebuf, int *uerror) argument
1156 ctl.buf = bufp;
1447 dlbindack(int fd, char *bufp, char *ebuf, int *uerror) argument
1450 return (recv_ack(fd, DL_BIND_ACK_SIZE, "bind", bufp, ebuf, uerror));
1465 dlokack(int fd, const char *what, char *bufp, char *ebuf) argument
1468 return (recv_ack(fd, DL_OK_ACK_SIZE, what, bufp, ebuf, NULL));
1483 dlinfoack(int fd, char *bufp, char *ebuf) argument
1486 return (recv_ack(fd, DL_INFO_ACK_SIZE, "info", bufp, ebuf, NULL));
/external/valgrind/main/coregrind/m_gdbserver/
H A Dremote-utils.c775 static unsigned char *bufp; local
779 return *bufp++;
816 bufp = buf;
825 return *bufp++;
/external/opencv/cv/src/
H A Dcvimgwarp.cpp2206 CvMat bufx, bufy, bufp, bufa; local
2213 bufp = cvMat( 1, dsize.width, CV_32F, buf + dsize.width*2 );
2228 cvCartToPolar( &bufx, &bufy, &bufp, &bufa );
2231 bufp.data.fl[x] += 1.f;
2233 cvLog( &bufp, &bufp );
2237 double rho = bufp.data.fl[x]*M;
/external/openssh/
H A Dumac.c184 * 'nbytes' bytes to the memory pointed at by 'bufp'. Each distinct
187 static void kdf(void *bufp, aes_int_key key, UINT8 ndx, int nbytes) argument
191 UINT8 *dst_buf = (UINT8 *)bufp;

Completed in 1293 milliseconds

12