/netbsd-src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
H A D | rd_rep.c | 42 krb5_ap_rep_enc_part **repl) in krb5_rd_rep() argument 50 *repl = NULL; in krb5_rd_rep() 79 *repl = malloc(sizeof(**repl)); in krb5_rd_rep() 80 if (*repl == NULL) { in krb5_rd_rep() 84 ret = decode_EncAPRepPart(data.data, data.length, *repl, &len); in krb5_rd_rep() 91 if ((*repl)->ctime != auth_context->authenticator->ctime || in krb5_rd_rep() 92 (*repl)->cusec != auth_context->authenticator->cusec) in krb5_rd_rep() 99 if ((*repl)->seq_number) in krb5_rd_rep() 101 *((*repl)->seq_number)); in krb5_rd_rep() 102 if ((*repl)->subkey) in krb5_rd_rep() [all …]
|
H A D | recvauth.c | 104 u_char repl; in krb5_recvauth_match_version() local 144 repl = 1; in krb5_recvauth_match_version() 145 krb5_net_write (context, p_fd, &repl, 1); in krb5_recvauth_match_version() 167 repl = 2; in krb5_recvauth_match_version() 168 krb5_net_write (context, p_fd, &repl, 1); in krb5_recvauth_match_version() 173 repl = 2; in krb5_recvauth_match_version() 174 krb5_net_write (context, p_fd, &repl, 1); in krb5_recvauth_match_version() 186 repl = 0; in krb5_recvauth_match_version() 187 if (krb5_net_write (context, p_fd, &repl, 1) != 1) { in krb5_recvauth_match_version()
|
H A D | sendauth.c | 106 u_char repl; in krb5_sendauth() local 132 sret = krb5_net_read (context, p_fd, &repl, sizeof(repl)); in krb5_sendauth() 137 } else if (sret != sizeof(repl)) { in krb5_sendauth() 142 if (repl != 0) { in krb5_sendauth()
|
H A D | test_ap-req.c | 105 krb5_ap_rep_enc_part *repl; in test_ap() local 119 &repl); in test_ap() 123 krb5_free_ap_rep_enc_part (context, repl); in test_ap()
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/src/ |
H A D | filter-sr-latin.c | 186 const char *repl = table[uc - 0x0400]; in serbian_to_latin() local 188 if (repl[0] != '\0') in serbian_to_latin() 209 repl = "LJ"; break; in serbian_to_latin() 211 repl = "NJ"; break; in serbian_to_latin() 213 repl = "D\xC5\xBD"/* "DŽ" */; break; in serbian_to_latin() 220 *op++ = *repl++; in serbian_to_latin() 221 if (*repl != '\0') in serbian_to_latin() 223 *op++ = *repl++; in serbian_to_latin() 224 if (*repl != '\0') in serbian_to_latin() 226 *op++ = *repl++; in serbian_to_latin() [all …]
|
/netbsd-src/sbin/mount_nfs/ |
H A D | getnfsargs_small.c | 149 struct repl { in nfs_getrootfh() struct 152 } *repl; in nfs_getrootfh() local 159 struct repl d; in nfs_getrootfh() 164 repl = &rdata.d; in nfs_getrootfh() 175 args, len, repl, sizeof(*repl)); in nfs_getrootfh() 182 if (repl->errval) in nfs_getrootfh() 183 return ntohl(repl->errval); in nfs_getrootfh() 185 memcpy(nfhret->nfh, repl->fh, sizeof(repl->fh)); in nfs_getrootfh()
|
/netbsd-src/sys/lib/libsa/ |
H A D | bootparam.c | 116 struct repl { in bp_whoami() struct 122 } *repl; in bp_whoami() local 129 struct repl d; in bp_whoami() 143 repl = &rdata.d; in bp_whoami() 168 repl, sizeof(*repl)); in bp_whoami() 175 rpc_fromaddr(repl, &bp_server_addr, &bp_server_port); in bp_whoami() 182 bp_server_port = repl->port; in bp_whoami() 196 x = ntohl((uint32_t)repl->encap_len); in bp_whoami() 201 recv_head = (char *)repl->capsule; in bp_whoami()
|
H A D | nfs.c | 156 struct repl { in nfs_getrootfh() struct 159 } *repl; in nfs_getrootfh() local 166 struct repl d; in nfs_getrootfh() 176 repl = &rdata.d; in nfs_getrootfh() 188 args, len, repl, sizeof(*repl)); in nfs_getrootfh() 189 if (cc == -1 || cc < 4 || repl->errno) { in nfs_getrootfh() 192 args, len, repl, sizeof(*repl)); in nfs_getrootfh() 202 if (repl->errno) { in nfs_getrootfh() 203 errno = ntohl(repl->errno); in nfs_getrootfh() 206 fhcopy(*versionp, repl->fh, fhp); in nfs_getrootfh()
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/admin/ |
H A D | config.pl | 65 my $repl = $2; 66 $repl =~ s/\\(.)/$1/g; 67 push @comp_subs, make_closure($srch, $repl); 87 my $repl = $2; 89 $repl =~ s/\\(.)/$1/g; 90 push @comp_subs, $repl;
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | ipa-param-manipulation.c | 496 tree repl; member 545 tsm.repl = arg; in init_transitive_splits() 635 tree repl = NULL_TREE; in modify_call() local 640 repl = trans_map[j].repl; in modify_call() 643 if (repl) in modify_call() 645 vargs.quick_push (repl); in modify_call() 856 tree repl = create_tmp_var (TREE_TYPE (lhs), "removed_return"); in modify_call() local 857 repl = get_or_create_ssa_default_def (cfun, repl); in modify_call() 858 SSA_NAME_IS_DEFAULT_DEF (repl) = true; in modify_call() 866 SET_USE (use_p, repl); in modify_call() [all …]
|
H A D | gimple-fold.c | 621 gimple *repl; in replace_call_with_value() local 626 repl = gimple_build_assign (lhs, val); in replace_call_with_value() 629 repl = gimple_build_nop (); in replace_call_with_value() 636 gsi_replace (gsi, repl, false); in replace_call_with_value() 643 replace_call_with_call_and_fold (gimple_stmt_iterator *gsi, gimple *repl) in replace_call_with_call_and_fold() argument 646 gimple_call_set_lhs (repl, gimple_call_lhs (stmt)); in replace_call_with_call_and_fold() 647 gimple_set_location (repl, gimple_location (stmt)); in replace_call_with_call_and_fold() 648 gimple_move_vops (repl, stmt); in replace_call_with_call_and_fold() 649 gsi_replace (gsi, repl, false); in replace_call_with_call_and_fold() 713 gimple *repl; in gimple_fold_builtin_memory_op() local [all …]
|
H A D | omp-simd-clone.c | 849 tree repl = NULL_TREE; in ipa_simd_modify_stmt_ops() local 856 repl = pbr->repl; in ipa_simd_modify_stmt_ops() 861 if (repl) in ipa_simd_modify_stmt_ops() 862 repl = unshare_expr (repl); in ipa_simd_modify_stmt_ops() 877 repl = *tp; in ipa_simd_modify_stmt_ops() 897 repl = build_fold_addr_expr (repl); in ipa_simd_modify_stmt_ops() 902 stmt = gimple_build_debug_source_bind (vexpr, repl, NULL); in ipa_simd_modify_stmt_ops() 904 TREE_TYPE (vexpr) = TREE_TYPE (repl); in ipa_simd_modify_stmt_ops() 905 SET_DECL_MODE (vexpr, TYPE_MODE (TREE_TYPE (repl))); in ipa_simd_modify_stmt_ops() 906 repl = vexpr; in ipa_simd_modify_stmt_ops() [all …]
|
H A D | tree-sra.c | 2177 tree repl; variable 2185 repl = create_tmp_var_raw (access->type); 2186 DECL_CONTEXT (repl) = current_function_decl; 2191 repl = create_tmp_var (build_qualified_type (TYPE_MAIN_VARIANT (type), 2197 DECL_GIMPLE_REG_P (repl) = 1; 2201 TREE_ADDRESSABLE (repl) = 1; 2203 DECL_SOURCE_LOCATION (repl) = DECL_SOURCE_LOCATION (access->base); 2204 DECL_ARTIFICIAL (repl) = 1; 2205 DECL_IGNORED_P (repl) = DECL_IGNORED_P (access->base); 2215 DECL_NAME (repl) = get_identifier (pretty_name); [all …]
|
/netbsd-src/external/historical/nawk/dist/testdir/ |
H A D | T.sub | 18 repl = $2 34 # printf(" %3d: %s %s %s %s %s:\n", NR, pat, repl, str, subout, gsubout) 36 if (repl == "\"\"") repl = "" 43 gsub(/\\/, "&&", repl) # in case of \ enclosed 45 sprintf("{ temp = $0; sub(/%s/, \"%s\", temp)\n", pat, repl) \ 47 subout, nt, subout, (pat " " repl " " str " " subout)) \ 48 sprintf(" gsub(/%s/, \"%s\")\n", pat, repl) \ 50 gsubout, nt, gsubout, (pat " " repl " " str " " gsubout)) \
|
/netbsd-src/external/bsd/nvi/dist/common/ |
H A D | screen.c | 97 if (orig->repl != NULL && (sp->repl = in screen_init() 98 v_wstrdup(sp, orig->repl, orig->repl_len)) == NULL) in screen_init() 195 if (sp->repl != NULL) in screen_end1() 196 free(sp->repl); in screen_end1()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | omp-simd-clone.cc | 861 tree repl = NULL_TREE; in ipa_simd_modify_stmt_ops() local 868 repl = pbr->repl; in ipa_simd_modify_stmt_ops() 873 if (repl) in ipa_simd_modify_stmt_ops() 874 repl = unshare_expr (repl); in ipa_simd_modify_stmt_ops() 889 repl = *tp; in ipa_simd_modify_stmt_ops() 909 repl = build_fold_addr_expr (repl); in ipa_simd_modify_stmt_ops() 913 tree vexpr = build_debug_expr_decl (TREE_TYPE (repl)); in ipa_simd_modify_stmt_ops() 914 stmt = gimple_build_debug_source_bind (vexpr, repl, NULL); in ipa_simd_modify_stmt_ops() 915 repl = vexpr; in ipa_simd_modify_stmt_ops() 919 stmt = gimple_build_assign (make_ssa_name (TREE_TYPE (repl)), repl); in ipa_simd_modify_stmt_ops() [all …]
|
H A D | ipa-param-manipulation.cc | 760 tree repl = NULL_TREE; in modify_call() local 768 repl = gimple_call_arg (stmt, repl_idx); in modify_call() 771 if (repl) in modify_call() 773 if (!useless_type_conversion_p(apm->type, repl->typed.type)) in modify_call() 775 repl = force_value_to_type (apm->type, repl); in modify_call() 776 repl = force_gimple_operand_gsi (&gsi, repl, in modify_call() 779 vargs.quick_push (repl); in modify_call() 1082 psr.repl = replacement; in register_replacement() 1661 return pbr->repl; in lookup_replacement() 1719 tree repl; in get_replacement_ssa_base() local [all …]
|
H A D | gimple-fold.cc | 814 gimple *repl; in replace_call_with_value() local 819 repl = gimple_build_assign (lhs, val); in replace_call_with_value() 822 repl = gimple_build_nop (); in replace_call_with_value() 829 gsi_replace (gsi, repl, false); in replace_call_with_value() 836 replace_call_with_call_and_fold (gimple_stmt_iterator *gsi, gimple *repl) in replace_call_with_call_and_fold() argument 839 gimple_call_set_lhs (repl, gimple_call_lhs (stmt)); in replace_call_with_call_and_fold() 840 gimple_set_location (repl, gimple_location (stmt)); in replace_call_with_call_and_fold() 841 gimple_move_vops (repl, stmt); in replace_call_with_call_and_fold() 842 gsi_replace (gsi, repl, false); in replace_call_with_call_and_fold() 910 gimple *repl; in gimple_fold_builtin_memory_op() local [all …]
|
H A D | tree-sra.cc | 2217 tree repl; in create_access_replacement() local 2225 repl = create_tmp_var_raw (access->type); in create_access_replacement() 2226 DECL_CONTEXT (repl) = current_function_decl; in create_access_replacement() 2231 repl = create_tmp_var (build_qualified_type (TYPE_MAIN_VARIANT (type), in create_access_replacement() 2235 DECL_NOT_GIMPLE_REG_P (repl) = 1; in create_access_replacement() 2237 DECL_SOURCE_LOCATION (repl) = DECL_SOURCE_LOCATION (access->base); in create_access_replacement() 2238 DECL_ARTIFICIAL (repl) = 1; in create_access_replacement() 2239 DECL_IGNORED_P (repl) = DECL_IGNORED_P (access->base); in create_access_replacement() 2249 DECL_NAME (repl) = get_identifier (pretty_name); in create_access_replacement() 2250 DECL_NAMELESS (repl) = 1; in create_access_replacement() [all …]
|
/netbsd-src/usr.sbin/bad144/ |
H A D | bad144.c | 410 daddr_t repl; in shift() local 415 repl = size - dp->d_nsectors - 1; in shift() 426 !blkcopy(f, badsn(&curbad.bt_bad[new]), repl - new)) in shift() 427 blkzero(f, repl - new); in shift() 429 if (blkcopy(f, repl - old, repl - new) == 0) in shift() 431 (long long)repl-old, (long long)repl-new); in shift()
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-repl/ |
H A D | CMakeLists.txt | 9 add_clang_executable(clang-repl 14 target_link_libraries(clang-repl PUBLIC
|
/netbsd-src/external/bsd/nvi/dist/ex/ |
H A D | ex_subst.c | 200 if (sp->repl != NULL) in ex_s() 201 free(sp->repl); in ex_s() 202 sp->repl = NULL; in ex_s() 231 MEMCPYW(t, sp->repl, sp->repl_len); in ex_s() 240 if (sp->repl != NULL) in ex_s() 241 free(sp->repl); in ex_s() 242 if ((sp->repl = malloc(len * sizeof(CHAR_T))) == NULL) { in ex_s() 247 MEMCPYW(sp->repl, bp, len); in ex_s() 1128 sp->repl, sp->repl_len); in re_conv() 1148 MEMCPYW(t, sp->repl, sp->repl_len); in re_conv() [all …]
|
/netbsd-src/external/bsd/less/dist/ |
H A D | decode.c | 253 char *repl; in expand_special_keys() local 278 repl = special_key_str(fm[1]); in expand_special_keys() 281 if (repl == NULL || (int) strlen(repl) > klen) in expand_special_keys() 282 repl = "\377"; in expand_special_keys() 283 while (*repl != '\0') in expand_special_keys() 284 *to++ = *repl++; in expand_special_keys()
|
/netbsd-src/external/bsd/am-utils/dist/scripts/ |
H A D | lostaltmail.in | 514 local ($mailname,$repl) = @_; 521 $repl = &smtp_recv; 523 print "VRFY REPLY: $repl\n" if ($debug); 525 return ( $repl =~ /^2\d\d/ );
|
/netbsd-src/external/bsd/openldap/dist/tests/scripts/ |
H A D | test078-persistent-sessionlog | 592 echo 2 >$TESTDIR/repl.test 593 echo 1 >>$TESTDIR/repl.test 613 …=ro/$cookie" 'objectclass=*' 1.1 | awk '/syncUUIDs/ {count++} END {print count}' >$TESTDIR/repl.out 615 …s=*' 1.1 | grep SyncDone | awk '/refreshDeletes=1/ {count++} END {print count}' >>$TESTDIR/repl.out 617 $CMP $TESTDIR/repl.out $TESTDIR/repl.test > $CMPOUT
|