Home
last modified time | relevance | path

Searched refs:tmp_buf (Results 1 – 19 of 19) sorted by relevance

/netbsd-src/external/bsd/tre/dist/lib/
H A Dtre-match-parallel.c144 char *tmp_buf; in tre_tnfa_run_parallel() local
180 tmp_buf = buf + tbytes; in tre_tnfa_run_parallel()
181 tmp_buf += ALIGN(tmp_buf, long); in tre_tnfa_run_parallel()
182 reach_next = (void *)tmp_buf; in tre_tnfa_run_parallel()
183 tmp_buf += rbytes; in tre_tnfa_run_parallel()
184 tmp_buf += ALIGN(tmp_buf, long); in tre_tnfa_run_parallel()
185 reach = (void *)tmp_buf; in tre_tnfa_run_parallel()
186 tmp_buf += rbytes; in tre_tnfa_run_parallel()
187 tmp_buf += ALIGN(tmp_buf, long); in tre_tnfa_run_parallel()
188 reach_pos = (void *)tmp_buf; in tre_tnfa_run_parallel()
[all …]
/netbsd-src/external/bsd/am-utils/dist/wire-test/
H A Dwire-test.c57 char *testhost, *proto, *tmp_buf; in main() local
72 tmp_buf = print_wires(); in main()
73 if (tmp_buf) { in main()
74 fprintf(stderr, "%s", tmp_buf); in main()
75 XFREE(tmp_buf); in main()
/netbsd-src/external/bsd/am-utils/dist/amd/
H A Damq_subr.c269 static char tmp_buf[MAXPATHLEN]; in amqproc_pawd_1_svc() local
272 tmp_buf[0] = prev_buf[0] = '\0'; /* default is empty string: no match */ in amqproc_pawd_1_svc()
289 xstrlcpy(tmp_buf, mp->am_path, sizeof(tmp_buf)); in amqproc_pawd_1_svc()
290 xstrlcat(tmp_buf, &dir[len], sizeof(tmp_buf)); in amqproc_pawd_1_svc()
294 if (STREQ(tmp_buf, prev_buf)) in amqproc_pawd_1_svc()
297 xstrlcpy(prev_buf, tmp_buf, sizeof(prev_buf)); in amqproc_pawd_1_svc()
302 tmp_buf, MAX_PAWD_TRIES); in amqproc_pawd_1_svc()
304 res = tmp_buf; in amqproc_pawd_1_svc()
/netbsd-src/external/bsd/am-utils/dist/amq/
H A Dpawd.c242 char tmp_buf[MAXPATHLEN], *wd; in main() local
245 wd = getawd(tmp_buf, sizeof(tmp_buf)); in main()
247 fprintf(stderr, "pawd: %s\n", tmp_buf); in main()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/x509/
H A Dx509_obj.c35 char tmp_buf[80]; in X509_NAME_oneline() local
66 i2t_ASN1_OBJECT(tmp_buf, sizeof(tmp_buf), ne->object); in X509_NAME_oneline()
67 s = tmp_buf; in X509_NAME_oneline()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/x509/
H A Dx509_obj.c37 char tmp_buf[80]; in X509_NAME_oneline() local
68 i2t_ASN1_OBJECT(tmp_buf, sizeof(tmp_buf), ne->object); in X509_NAME_oneline()
69 s = tmp_buf; in X509_NAME_oneline()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/evp/
H A Ddigest.c224 unsigned char *tmp_buf; in EVP_MD_CTX_copy_ex() local
238 tmp_buf = out->md_data; in EVP_MD_CTX_copy_ex()
241 tmp_buf = NULL; in EVP_MD_CTX_copy_ex()
256 if (tmp_buf) in EVP_MD_CTX_copy_ex()
257 out->md_data = tmp_buf; in EVP_MD_CTX_copy_ex()
/netbsd-src/external/bsd/libevent/dist/test/
H A Dregress_buffer.c2377 struct evbuffer *buf = NULL, *tmp_buf = NULL; in test_evbuffer_peek_first_gt() local
2382 tmp_buf = evbuffer_new(); in test_evbuffer_peek_first_gt()
2383 evbuffer_add_printf(tmp_buf, "Contents of chunk 100\n"); in test_evbuffer_peek_first_gt()
2384 evbuffer_add_buffer(buf, tmp_buf); in test_evbuffer_peek_first_gt()
2385 evbuffer_add_printf(tmp_buf, "Contents of chunk 1\n"); in test_evbuffer_peek_first_gt()
2386 evbuffer_add_buffer(buf, tmp_buf); in test_evbuffer_peek_first_gt()
2406 if (tmp_buf) in test_evbuffer_peek_first_gt()
2407 evbuffer_free(tmp_buf); in test_evbuffer_peek_first_gt()
2413 struct evbuffer *buf = NULL, *tmp_buf = NULL; in test_evbuffer_peek() local
2424 tmp_buf = evbuffer_new(); in test_evbuffer_peek()
[all …]
/netbsd-src/lib/libc/db/hash/
H A Dhash_bigkey.c463 memmove(hashp->tmp_buf, (save_p->page) + off, (size_t)len); in __big_return()
464 val->data = (uint8_t *)hashp->tmp_buf; in __big_return()
487 if (hashp->tmp_buf) in collect_data()
488 free(hashp->tmp_buf); in collect_data()
489 if ((hashp->tmp_buf = calloc(1, (size_t)totlen)) == NULL) in collect_data()
518 memmove(&hashp->tmp_buf[len], (bufp->page) + bp[1], (size_t)mylen); in collect_data()
H A Dhash.h102 char *tmp_buf; /* Temporary Buffer for BIG data */ member
/netbsd-src/crypto/external/bsd/openssl/dist/apps/
H A Dpasswd.c591 char tmp_buf[80]; /* "rounds=999999999" */ in shacrypt() local
592 sprintf(tmp_buf, "rounds=%u", rounds); in shacrypt()
595 if (tmp_buf[0] != 0x72) /* ASCII 'r' */ in shacrypt()
596 ebcdic2ascii(tmp_buf, tmp_buf, strlen(tmp_buf)); in shacrypt()
598 OPENSSL_strlcat(out_buf, tmp_buf, sizeof(out_buf)); in shacrypt()
/netbsd-src/crypto/external/bsd/openssl.old/dist/apps/
H A Dpasswd.c588 char tmp_buf[80]; /* "rounds=999999999" */ in shacrypt() local
589 sprintf(tmp_buf, "rounds=%u", rounds); in shacrypt()
592 if (tmp_buf[0] != 0x72) /* ASCII 'r' */ in shacrypt()
593 ebcdic2ascii(tmp_buf, tmp_buf, strlen(tmp_buf)); in shacrypt()
595 OPENSSL_strlcat(out_buf, tmp_buf, sizeof(out_buf)); in shacrypt()
/netbsd-src/crypto/external/cpl/trousers/dist/src/tcsd/
H A Dtcsd_conf.c204 char tmp_buf[1024]; in get_file_path() local
210 tmp_buf[i] = *ptr; in get_file_path()
229 tmp_buf[i] = '\0'; in get_file_path()
230 *dest = strdup(tmp_buf); in get_file_path()
232 LogError("malloc of %zd bytes failed", strlen(tmp_buf)); in get_file_path()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/rs6000/
H A Drs6000-logue.cc5131 char tmp_buf[512]; in macho_branch_islands() local
5147 strcpy (tmp_buf, "\n"); in macho_branch_islands()
5148 strcat (tmp_buf, label); in macho_branch_islands()
5155 strcat (tmp_buf, ":\n\tmflr r0\n\tbcl 20,31,"); in macho_branch_islands()
5156 strcat (tmp_buf, label); in macho_branch_islands()
5157 strcat (tmp_buf, "_pic\n"); in macho_branch_islands()
5158 strcat (tmp_buf, label); in macho_branch_islands()
5159 strcat (tmp_buf, "_pic:\n\tmflr r11\n"); in macho_branch_islands()
5161 strcat (tmp_buf, "\taddis r11,r11,ha16("); in macho_branch_islands()
5162 strcat (tmp_buf, name_buf); in macho_branch_islands()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
H A Drs6000-logue.c5076 char tmp_buf[512]; in macho_branch_islands() local
5092 strcpy (tmp_buf, "\n"); in macho_branch_islands()
5093 strcat (tmp_buf, label); in macho_branch_islands()
5100 strcat (tmp_buf, ":\n\tmflr r0\n\tbcl 20,31,"); in macho_branch_islands()
5101 strcat (tmp_buf, label); in macho_branch_islands()
5102 strcat (tmp_buf, "_pic\n"); in macho_branch_islands()
5103 strcat (tmp_buf, label); in macho_branch_islands()
5104 strcat (tmp_buf, "_pic:\n\tmflr r11\n"); in macho_branch_islands()
5106 strcat (tmp_buf, "\taddis r11,r11,ha16("); in macho_branch_islands()
5107 strcat (tmp_buf, name_buf); in macho_branch_islands()
[all …]
/netbsd-src/usr.sbin/syslogd/
H A Dsyslogd.c3105 store_sign_delim_sg2(char *tmp_buf) in store_sign_delim_sg2()
3115 if (dehumanize_number(tmp_buf, (int64_t*) &(sqentry->key)) == -1 in store_sign_delim_sg2()
3117 DPRINTF(D_PARSE, "invalid sign_delim_sg2: %s\n", tmp_buf); in store_sign_delim_sg2()
3119 FREEPTR(tmp_buf); in store_sign_delim_sg2()
3122 sqentry->data = tmp_buf;
3144 tmp_buf); in read_config_file()
3146 FREEPTR(tmp_buf); in read_config_file()
3177 char *tmp_buf = NULL; in read_config_file()
3197 {"tls_allow_fingerprints",&tmp_buf}, in read_config_file()
3198 {"tls_allow_clientcerts", &tmp_buf}, in read_config_file()
3073 store_sign_delim_sg2(char * tmp_buf) store_sign_delim_sg2() argument
3145 char *tmp_buf = NULL; read_config_file() local
[all...]
/netbsd-src/sys/external/bsd/drm2/dist/drm/vmwgfx/
H A Dvmwgfx_drv.h1521 struct vmw_buffer_object *tmp_buf = *buf; in vmw_bo_unreference() local
1524 if (tmp_buf != NULL) { in vmw_bo_unreference()
1525 ttm_bo_put(&tmp_buf->base); in vmw_bo_unreference()
/netbsd-src/external/mpl/dhcp/dist/server/
H A Ddhcpv6.c1309 char tmp_buf[INET6_ADDRSTRLEN]; in pick_v6_address() local
1410 tmp_buf, sizeof(tmp_buf))); in pick_v6_address()
1624 char tmp_buf[INET6_ADDRSTRLEN]; in pick_v6_prefix() local
1628 tmp_buf, sizeof(tmp_buf)), in pick_v6_prefix()
/netbsd-src/external/mpl/bind/dist/lib/isc/netmgr/
H A Dhttp.c2120 uint8_t tmp_buf[MAX_DNS_MESSAGE_SIZE]; in server_on_request_recv()
2172 isc_buffer_init(&decoded_buf, tmp_buf, sizeof(tmp_buf)); in isc__nm_http_send()
2073 uint8_t tmp_buf[MAX_DNS_MESSAGE_SIZE]; server_on_request_recv() local