| /src/lib/libc/gen/ |
| setproctitle.c | 61 static char buf[MAX_PROCTITLE], *bufp; local 76 bufp = buf; 91 __ps_strings->ps_argvstr = &bufp;
|
| /src/crypto/external/apache2/openssl/dist/crypto/asn1/ |
| f_string.c | 50 unsigned char *bufp; local 87 bufp = (unsigned char *)buf; 108 m = OPENSSL_hexchar2int(bufp[k + n]);
|
| f_int.c | 56 unsigned char *bufp; local 89 bufp = (unsigned char *)buf; 92 if ((bufp[0] == '0') && (bufp[1] == '0')) { 93 bufp += 2; 116 m = OPENSSL_hexchar2int(bufp[k + n]);
|
| /src/external/bsd/ipf/dist/lib/ |
| kmem.c | 102 char *bufp; local 112 for (bufp = buffer, left = size; left > 0; bufp += r, left -= r) { 113 r = read(*kvm, bufp, left);
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| dict_test.c | 45 char *bufp; local 100 bufp = vstring_str(inbuf); 102 vstream_printf("> %s\n", bufp); 105 if (*bufp == '#') 107 if ((cmd = mystrtok(&bufp, " ")) == 0) { 114 key = *bufp ? vstring_str(unescape(keybuf, mystrtok(&bufp, " ="))) : 0; 115 value = mystrtok(&bufp, " =");
|
| /src/external/mpl/dhcp/dist/common/ |
| raw.c | 118 int bufp = 0; local 123 assemble_udp_ip_header (interface, buf, &bufp, from.s_addr, 129 iov [0].iov_len = bufp;
|
| /src/crypto/external/bsd/openssl/dist/crypto/asn1/ |
| f_int.c | 58 unsigned char *bufp; local 92 bufp = (unsigned char *)buf; 95 if ((bufp[0] == '0') && (bufp[1] == '0')) { 96 bufp += 2; 120 m = OPENSSL_hexchar2int(bufp[k + n]);
|
| f_string.c | 52 unsigned char *bufp; local 89 bufp = (unsigned char *)buf; 111 m = OPENSSL_hexchar2int(bufp[k + n]);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/ |
| f_int.c | 58 unsigned char *bufp; local 92 bufp = (unsigned char *)buf; 95 if ((bufp[0] == '0') && (bufp[1] == '0')) { 96 bufp += 2; 120 m = OPENSSL_hexchar2int(bufp[k + n]);
|
| f_string.c | 52 unsigned char *bufp; local 89 bufp = (unsigned char *)buf; 111 m = OPENSSL_hexchar2int(bufp[k + n]);
|
| /src/external/ibm-public/postfix/dist/src/global/ |
| data_redirect.c | 212 char *bufp; local 220 bufp = STR(inbuf); 222 vstream_printf("> %s\n", bufp); 225 if (*bufp == '#') 227 if ((cmd = mystrtok(&bufp, " \t")) == 0) { 232 target = mystrtokq(&bufp, " \t"); 233 junk = mystrtok(&bufp, " \t");
|
| maps.c | 132 char *bufp; local 153 bufp = temp = mystrdup(map_names); 158 while ((map_type_name = mystrtokq(&bufp, sep, parens)) != 0) {
|
| own_inet_addr.c | 87 char *bufp; local 147 bufp = hosts = mystrdup(var_inet_interfaces); 148 while ((host = mystrtok(&bufp, sep)) != 0) 236 char *bufp; local 243 bufp = hosts = mystrdup(var_proxy_interfaces); 244 while ((host = mystrtok(&bufp, sep)) != 0)
|
| /src/lib/libc/stdio/ |
| open_memstream.c | 48 char **bufp; member in struct:memstream 70 buf = realloc(*ms->bufp, newsize + 1); 77 *ms->bufp = buf; 108 memcpy(*ms->bufp + ms->offset, buf, tocopy); 181 open_memstream(char **bufp, size_t *sizep) 187 if (bufp == NULL || sizep == NULL) { 191 *bufp = calloc(1, 1); 192 if (*bufp == NULL) 197 free(*bufp); 198 *bufp = NULL [all...] |
| open_wmemstream.c | 48 wchar_t **bufp; member in struct:wmemstream 74 buf = realloc(*ms->bufp, (newsize + 1) * sizeof(wchar_t)); 81 *ms->bufp = buf; 149 charlen = mbrtowc(*ms->bufp + ms->offset, buf, len, 242 open_wmemstream(wchar_t **bufp, size_t *sizep) 248 if (bufp == NULL || sizep == NULL) { 252 *bufp = calloc(1, sizeof(wchar_t)); 253 if (*bufp == NULL) 258 free(*bufp); 259 *bufp = NULL [all...] |
| /src/sbin/sysctl/ |
| pathconf.c | 155 char *bufp, buf[BUFSIZ]; local 157 bufp = buf; 159 if ((indx = findname(string, "top", &bufp, &pclist)) == -1) 161 if (bufp) { 162 fprintf(stderr, "name %s in %s is unknown\n", *bufp, string); 197 findname(string, level, bufp, namelist) 200 char **bufp; 206 if (namelist->list == 0 || (name = strsep(bufp, ".")) == NULL) {
|
| /src/sys/arch/sh3/sh3/ |
| coff_exec.c | 359 char buf[128], *bufp; /* FIXME */ local 373 bufp = buf; 375 slhdr = (struct coff_slhdr *)bufp; 385 bufp += entry_len;
|
| /src/crypto/external/apache2/openssl/dist/fuzz/ |
| server.c | 2327 const uint8_t *bufp; local 2355 bufp = kRSAPrivateKeyDER; 2356 privkey = d2i_RSAPrivateKey(NULL, &bufp, sizeof(kRSAPrivateKeyDER)); 2365 bufp = kCertificateDER; 2366 cert = d2i_X509(NULL, &bufp, sizeof(kCertificateDER));
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| x509aux.c | 44 unsigned char *bufp; local 70 if ((buf = bufp = OPENSSL_malloc(len)) == NULL) { 75 enclen = i2d(cert, &bufp); 82 enclen = (long)(bufp - buf);
|
| /src/crypto/external/bsd/openssl/dist/fuzz/ |
| server.c | 523 const uint8_t *bufp; local 551 bufp = kRSAPrivateKeyDER; 552 privkey = d2i_RSAPrivateKey(NULL, &bufp, sizeof(kRSAPrivateKeyDER)); 561 bufp = kCertificateDER; 562 cert = d2i_X509(NULL, &bufp, sizeof(kCertificateDER));
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| x509aux.c | 45 unsigned char *bufp; local 71 if ((buf = bufp = OPENSSL_malloc(len)) == NULL) { 76 enclen = i2d(cert, &bufp); 83 enclen = (long) (bufp - buf);
|
| /src/crypto/external/bsd/openssl.old/dist/fuzz/ |
| server.c | 516 const uint8_t *bufp; local 543 bufp = kRSAPrivateKeyDER; 544 privkey = d2i_RSAPrivateKey(NULL, &bufp, sizeof(kRSAPrivateKeyDER)); 552 bufp = kCertificateDER; 553 cert = d2i_X509(NULL, &bufp, sizeof(kCertificateDER));
|
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| x509aux.c | 45 unsigned char *bufp; local 71 if ((buf = bufp = OPENSSL_malloc(len)) == NULL) { 76 enclen = i2d(cert, &bufp); 83 enclen = (long) (bufp - buf);
|
| /src/external/bsd/libbind/dist/irs/ |
| lcl_pr.c | 203 char *bufp, *ndbuf, *dbuf = NULL; local 214 bufp = pvt->line; 218 if ((p = fgets(bufp + offset, bufsiz - offset, pvt->fp)) == NULL) { 228 strcpy(ndbuf, bufp); 233 bufp = dbuf;
|
| /src/external/gpl2/xcvs/dist/src/ |
| buffer.h | 113 char *bufp; member in struct:buffer_data 115 /* The number of data bytes found at BUFP. */
|