| /netbsd/src/usr.sbin/bootp/bootpef/ |
| D | bootpef.c | 128 char *stmp; in main() local 144 stmp = NULL; in main() 156 stmp = &(argv[0][2]); in main() 160 stmp = argv[0]; in main() 162 if (!stmp || (stmp[0] != '/')) { in main() 167 chdir_path = stmp; in main() 172 stmp = &(argv[0][2]); in main() 183 stmp = argv[0]; in main() 185 if (!stmp || (sscanf(stmp, "%d", &n) != 1) || (n < 0)) { in main() 195 stmp = &(argv[0][2]); in main() [all …]
|
| /netbsd/src/usr.sbin/bootp/bootpgw/ |
| D | bootpgw.c | 143 char *stmp; in main() local 202 stmp = NULL; in main() 223 stmp = &(argv[0][2]); in main() 234 stmp = argv[0]; in main() 236 if (!stmp || (sscanf(stmp, "%d", &n) != 1) || (n < 0)) { in main() 246 stmp = &(argv[0][2]); in main() 250 stmp = argv[0]; in main() 252 if (!stmp || (sscanf(stmp, "%d", &n) != 1) || in main() 272 stmp = &(argv[0][2]); in main() 276 stmp = argv[0]; in main() [all …]
|
| /netbsd/src/usr.sbin/bootp/bootpd/ |
| D | bootpd.c | 178 char *stmp; in main() local 240 stmp = NULL; in main() 253 stmp = &(argv[0][2]); in main() 257 stmp = argv[0]; in main() 259 if (!stmp || (stmp[0] != '/')) { in main() 264 chdir_path = stmp; in main() 269 stmp = &(argv[0][2]); in main() 280 stmp = argv[0]; in main() 282 if (!stmp || (sscanf(stmp, "%d", &n) != 1) || (n < 0)) { in main() 292 stmp = &(argv[0][2]); in main() [all …]
|
| /netbsd/src/crypto/external/bsd/openssl/dist/crypto/x509/ |
| D | x509_att.c | 336 ASN1_STRING *stmp = NULL; in X509_ATTRIBUTE_set1_data() local 341 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype, in X509_ATTRIBUTE_set1_data() 343 if (!stmp) { in X509_ATTRIBUTE_set1_data() 347 atype = stmp->type; in X509_ATTRIBUTE_set1_data() 349 if ((stmp = ASN1_STRING_type_new(attrtype)) == NULL) in X509_ATTRIBUTE_set1_data() 351 if (!ASN1_STRING_set(stmp, data, len)) in X509_ATTRIBUTE_set1_data() 361 ASN1_STRING_free(stmp); in X509_ATTRIBUTE_set1_data() 370 ASN1_TYPE_set(ttmp, atype, stmp); in X509_ATTRIBUTE_set1_data() 371 stmp = NULL; in X509_ATTRIBUTE_set1_data() 379 ASN1_STRING_free(stmp); in X509_ATTRIBUTE_set1_data()
|
| D | by_dir.c | 239 X509_OBJECT stmp, *tmp; in get_cert_by_subject_ex() local 245 stmp.type = type; in get_cert_by_subject_ex() 248 stmp.data.x509 = &data.st_x509; in get_cert_by_subject_ex() 251 stmp.data.crl = &data.crl; in get_cert_by_subject_ex() 353 j = sk_X509_OBJECT_find(xl->store_ctx->objs, &stmp); in get_cert_by_subject_ex()
|
| D | x509_lu.c | 315 X509_OBJECT stmp, *tmp; in X509_STORE_CTX_get_by_subject() local 321 stmp.type = X509_LU_NONE; in X509_STORE_CTX_get_by_subject() 322 stmp.data.ptr = NULL; in X509_STORE_CTX_get_by_subject() 333 j = X509_LOOKUP_by_subject_ex(lu, type, name, &stmp, vs->libctx, in X509_STORE_CTX_get_by_subject() 336 tmp = &stmp; in X509_STORE_CTX_get_by_subject() 505 X509_OBJECT stmp; in x509_object_idx_cnt() local 510 stmp.type = type; in x509_object_idx_cnt() 513 stmp.data.x509 = &x509_s; in x509_object_idx_cnt() 517 stmp.data.crl = &crl_s; in x509_object_idx_cnt() 525 idx = sk_X509_OBJECT_find_all(h, &stmp, pnmatch); in x509_object_idx_cnt()
|
| D | v3_ncons.c | 413 ASN1_STRING stmp; in NAME_CONSTRAINTS_check_CN() local 416 stmp.flags = 0; in NAME_CONSTRAINTS_check_CN() 417 stmp.type = V_ASN1_IA5STRING; in NAME_CONSTRAINTS_check_CN() 419 gntmp.d.dNSName = &stmp; in NAME_CONSTRAINTS_check_CN() 441 stmp.length = idlen; in NAME_CONSTRAINTS_check_CN() 442 stmp.data = idval; in NAME_CONSTRAINTS_check_CN()
|
| /netbsd/src/external/gpl3/binutils/dist/gas/ |
| D | cgen.c | 348 symbolS * stmp = NULL; in gas_cgen_parse_operand() local 442 stmp = symbol_create (FAKE_LABEL_NAME, expr_section, in gas_cgen_parse_operand() 444 symbol_set_value_expression (stmp, & exp); in gas_cgen_parse_operand() 447 stmp = make_expr_symbol (& exp); in gas_cgen_parse_operand() 453 stmp = expr_build_binary (O_subtract, stmp, expr_build_dot ()); in gas_cgen_parse_operand() 462 if (symbol_symbolS (stmp) in gas_cgen_parse_operand() 463 && (bsym = symbol_get_bfdsym (stmp)) != NULL in gas_cgen_parse_operand() 465 && ! S_IS_LOCAL (stmp)) in gas_cgen_parse_operand() 476 exp.X_add_symbol = stmp; in gas_cgen_parse_operand() 808 symbolS * stmp = 0; in make_right_shifted_expr() local [all …]
|
| /netbsd/src/crypto/external/bsd/openssl/dist/crypto/asn1/ |
| D | x_algor.c | 169 ASN1_STRING *stmp = NULL; in ossl_x509_algor_md_to_mgf1() local 177 if (ASN1_item_pack(algtmp, ASN1_ITEM_rptr(X509_ALGOR), &stmp) == NULL) in ossl_x509_algor_md_to_mgf1() 182 if (!X509_ALGOR_set0(*palg, OBJ_nid2obj(NID_mgf1), V_ASN1_SEQUENCE, stmp)) { in ossl_x509_algor_md_to_mgf1() 187 stmp = NULL; in ossl_x509_algor_md_to_mgf1() 189 ASN1_STRING_free(stmp); in ossl_x509_algor_md_to_mgf1()
|
| D | a_strex.c | 610 ASN1_STRING stmp, *str = &stmp; in ASN1_STRING_to_UTF8() local 621 stmp.data = NULL; in ASN1_STRING_to_UTF8() 622 stmp.length = 0; in ASN1_STRING_to_UTF8() 623 stmp.flags = 0; in ASN1_STRING_to_UTF8() 629 *out = stmp.data; in ASN1_STRING_to_UTF8() 630 return stmp.length; in ASN1_STRING_to_UTF8()
|
| D | tasn_dec.c | 835 ASN1_STRING *stmp; in asn1_ex_c2i() local 926 stmp = ASN1_STRING_type_new(utype); in asn1_ex_c2i() 927 if (stmp == NULL) { in asn1_ex_c2i() 931 *pval = (ASN1_VALUE *)stmp; in asn1_ex_c2i() 933 stmp = (ASN1_STRING *)*pval; in asn1_ex_c2i() 934 stmp->type = utype; in asn1_ex_c2i() 938 OPENSSL_free(stmp->data); in asn1_ex_c2i() 939 stmp->data = (unsigned char *)cont; /* UGLY CAST! RL */ in asn1_ex_c2i() 940 stmp->length = len; in asn1_ex_c2i() 943 if (!ASN1_STRING_set(stmp, cont, len)) { in asn1_ex_c2i() [all …]
|
| /netbsd/src/external/lgpl3/gmp/dist/mpz/ |
| D | gcdext.c | 101 mpz_t gtmp, stmp; in mpz_gcdext() local 106 PTR (stmp) = tmp_sp; in mpz_gcdext() 107 SIZ (stmp) = tmp_ssize; in mpz_gcdext() 113 mpz_mul (x, stmp, a); in mpz_gcdext()
|
| /netbsd/src/usr.bin/stat/ |
| D | stat.c | 662 char *stmp, lfmt[24], tmp[20]; in format1() local 736 stmp = smode; in format1() 737 l = strlen(stmp); in format1() 738 if (stmp[l - 1] == ' ') in format1() 739 stmp[--l] = '\0'; in format1() 742 stmp += 1; in format1() 743 stmp[3] = '\0'; in format1() 748 stmp += 4; in format1() 749 stmp[3] = '\0'; in format1() 754 stmp += 7; in format1() [all …]
|
| /netbsd/src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/ |
| D | zfs_znode.h | 300 #define ZFS_TIME_ENCODE(tp, stmp) \ argument 302 (stmp)[0] = (uint64_t)(tp)->tv_sec; \ 303 (stmp)[1] = (uint64_t)(tp)->tv_nsec; \ 307 #define ZFS_TIME_DECODE(tp, stmp) \ argument 309 (tp)->tv_sec = (time_t)(stmp)[0]; \ 310 (tp)->tv_nsec = (long)(stmp)[1]; \
|
| /netbsd/src/external/gpl3/binutils/dist/bfd/ |
| D | Makefile.am | 923 $(BFD_H): stmp-bfd-h ; @true 925 stmp-bfd-h: bfd-in3.h 930 touch stmp-bfd-h 942 headers: stmp-bin2-h stmp-lbfd-h stmp-lcoff-h 966 $(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true 967 stmp-bin2-h: $(BFD_H_FILES) $(BFD64_H_FILES) $(MKDOC) 970 $(AM_V_at)touch stmp-bin2-h 972 $(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true 973 stmp-lbfd-h: $(LIBBFD_H_FILES) $(MKDOC) 976 $(AM_V_at)touch stmp-lbfd-h [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/bfd/ |
| D | Makefile.am | 921 $(BFD_H): stmp-bfd-h ; @true 923 stmp-bfd-h: bfd-in3.h 928 touch stmp-bfd-h 940 headers: stmp-bin2-h stmp-lbfd-h stmp-lcoff-h 964 $(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true 965 stmp-bin2-h: $(BFD_H_FILES) $(BFD64_H_FILES) $(MKDOC) 968 $(AM_V_at)touch stmp-bin2-h 970 $(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true 971 stmp-lbfd-h: $(LIBBFD_H_FILES) $(MKDOC) 974 $(AM_V_at)touch stmp-lbfd-h [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libgcc/ |
| D | unwind-dw2.c | 426 _sleb128_t stmp; in extract_cie_info() local 450 p = read_sleb128 (p, &stmp); in extract_cie_info() 451 fs->data_align = (_Unwind_Sword)stmp; in extract_cie_info() 540 _sleb128_t offset, stmp; in execute_stack_op() local 629 op_ptr = read_sleb128 (op_ptr, &stmp); in execute_stack_op() 630 result = (_Unwind_Sword)stmp; in execute_stack_op() 974 _sleb128_t offset, stmp; in execute_cfa_program() local 1141 insn_ptr = read_sleb128 (insn_ptr, &stmp); in execute_cfa_program() 1142 offset = stmp * fs->data_align; in execute_cfa_program() 1154 insn_ptr = read_sleb128 (insn_ptr, &stmp); in execute_cfa_program() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/mips/ |
| D | t-sdemtk | 34 STMP_FIXINC = stmp-sdefixinc 35 stmp-sdefixinc: gsyslimits.h 41 $(STAMP) stmp-sdefixinc
|
| D | t-netbsd64 | 16 LIBGCC = stmp-multilib
|
| /netbsd/src/external/bsd/tmux/dist/ |
| D | cmd-kill-session.c | 50 struct session *s = target->s, *sloop, *stmp; in cmd_kill_session_exec() local 60 RB_FOREACH_SAFE(sloop, sessions, &sessions, stmp) { in cmd_kill_session_exec()
|
| /netbsd/src/usr.sbin/rbootd/ |
| D | utils.c | 332 char *stmp; in NewStr() local 334 if ((stmp = strdup(str)) == NULL) { in NewStr() 339 return(stmp); in NewStr()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/arm/ |
| D | t-netbsdeabi | 7 LIBGCC = stmp-multilib
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/sparc/ |
| D | t-netbsd64 | 8 LIBGCC = stmp-multilib
|
| /netbsd/src/crypto/external/bsd/openssl/dist/apps/ |
| D | s_client.c | 754 BIO *stmp = BIO_new_file(sess_out, "w"); in new_session_cb() local 756 if (stmp == NULL) { in new_session_cb() 759 PEM_write_bio_SSL_SESSION(stmp, sess); in new_session_cb() 760 BIO_free(stmp); in new_session_cb() 1809 BIO *stmp = BIO_new_file(psksessf, "r"); in s_client_main() local 1811 if (stmp == NULL) { in s_client_main() 1816 psksess = PEM_read_bio_SSL_SESSION(stmp, NULL, 0, NULL); in s_client_main() 1817 BIO_free(stmp); in s_client_main() 1954 BIO *stmp = BIO_new_file(sess_in, "r"); in s_client_main() local 1955 if (stmp == NULL) { in s_client_main() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/i386/ |
| D | t-netbsd64 | 8 LIBGCC = stmp-multilib
|