| /netbsd-src/external/bsd/libbind/dist/irs/ |
| H A D | getservent_r.c | 45 struct servent *se = getservbyname(name, proto); in getservbyname_r() local 49 if (se == NULL || (n = copy_servent(se, sptr, SERV_R_COPY)) != 0) in getservbyname_r() 56 if (se == NULL) in getservbyname_r() 59 return (copy_servent(se, sptr, SERV_R_COPY)); in getservbyname_r() 66 struct servent *se = getservbyport(port, proto); in getservbyport_r() local 70 if (se == NULL || (n = copy_servent(se, sptr, SERV_R_COPY)) != 0) in getservbyport_r() 77 if (se == NULL) in getservbyport_r() 80 return (copy_servent(se, sptr, SERV_R_COPY)); in getservbyport_r() 92 struct servent *se = getservent(); in getservent_r() local 96 if (se == NULL || (n = copy_servent(se, sptr, SERV_R_COPY)) != 0) in getservent_r() [all …]
|
| /netbsd-src/lib/libc/citrus/ |
| H A D | citrus_pivot_factory.c | 66 struct src_entry *se; in find_src() local 68 SIMPLEQ_FOREACH(se, sh, se_entry) { in find_src() 69 if (_bcs_strcasecmp(se->se_name, name) == 0) { in find_src() 70 *rse = se; in find_src() 74 se = malloc(sizeof(*se)); in find_src() 75 if (se == NULL) in find_src() 77 se->se_name = strdup(name); in find_src() 78 if (se->se_name == NULL) { in find_src() 80 free(se); in find_src() 83 ret = _db_factory_create(&se->se_df, &_db_hash_std, NULL); in find_src() [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/kafs/ |
| H A D | ChangeLog | 1 2008-07-17 Love Hörnquist Åstrand <lha@it.su.se> 7 2008-04-15 Love Hörnquist Åstrand <lha@it.su.se> 11 2007-07-10 Love Hörnquist Åstrand <lha@it.su.se> 15 2007-05-10 Love Hörnquist Åstrand <lha@it.su.se> 19 2006-10-21 Love Hörnquist Åstrand <lha@it.su.se> 25 2006-10-20 Love Hörnquist Åstrand <lha@it.su.se> 29 2006-05-01 Love Hörnquist Åstrand <lha@it.su.se> 33 2006-04-11 Love Hörnquist Åstrand <lha@it.su.se> 35 * afssys.c: use afs_ioctlnum, From Tomas Olsson <tol@it.su.se> 37 2006-04-10 Love Hörnquist Åstrand <lha@it.su.se> [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| H A D | trans-intrinsic.c | 196 gfc_conv_intrinsic_function_args (gfc_se *se, gfc_expr *expr, in gfc_conv_intrinsic_function_args() argument 223 gfc_init_se (&argse, se); in gfc_conv_intrinsic_function_args() 243 gfc_add_block_to_block (&se->pre, &argse.pre); in gfc_conv_intrinsic_function_args() 244 gfc_add_block_to_block (&se->post, &argse.post); in gfc_conv_intrinsic_function_args() 277 gfc_conv_intrinsic_conversion (gfc_se * se, gfc_expr * expr) in gfc_conv_intrinsic_conversion() argument 291 gfc_conv_intrinsic_function_args (se, expr, args, nargs); in gfc_conv_intrinsic_conversion() 317 gfc_add_expr_to_block (&se->pre, tmp); in gfc_conv_intrinsic_conversion() 321 gfc_add_expr_to_block (&se->post, tmp); in gfc_conv_intrinsic_conversion() 323 se->expr = var; in gfc_conv_intrinsic_conversion() 324 se->string_length = args[0]; in gfc_conv_intrinsic_conversion() [all …]
|
| H A D | trans-stmt.c | 77 gfc_conv_label_variable (gfc_se * se, gfc_expr * expr) in gfc_conv_label_variable() argument 80 gfc_conv_expr (se, expr); in gfc_conv_label_variable() 82 if (TREE_CODE (se->expr) == COMPONENT_REF) in gfc_conv_label_variable() 83 se->expr = TREE_OPERAND (se->expr, 1); in gfc_conv_label_variable() 85 else if (TREE_CODE (se->expr) == INDIRECT_REF) in gfc_conv_label_variable() 86 se->expr = TREE_OPERAND (se->expr, 0); in gfc_conv_label_variable() 95 gfc_se se; in gfc_trans_label_assign() local 102 gfc_init_se (&se, NULL); in gfc_trans_label_assign() 103 gfc_start_block (&se.pre); in gfc_trans_label_assign() 104 gfc_conv_label_variable (&se, code->expr1); in gfc_trans_label_assign() [all …]
|
| H A D | trans-io.c | 533 gfc_se se; in set_parameter_value() local 538 gfc_init_se (&se, NULL); in set_parameter_value() 539 gfc_conv_expr_val (&se, e); in set_parameter_value() 541 se.expr = convert (dest_type, se.expr); in set_parameter_value() 542 gfc_add_block_to_block (block, &se.pre); in set_parameter_value() 551 gfc_add_modify (block, tmp, se.expr); in set_parameter_value() 563 gfc_se se; in set_parameter_value_chk() local 568 gfc_init_se (&se, NULL); in set_parameter_value_chk() 569 gfc_conv_expr_val (&se, e); in set_parameter_value_chk() 578 se.expr = gfc_evaluate_now (se.expr, &se.pre); in set_parameter_value_chk() [all …]
|
| H A D | trans-expr.c | 67 gfc_conv_scalar_to_descriptor (gfc_se *se, tree scalar, symbol_attribute attr) in gfc_conv_scalar_to_descriptor() argument 80 gfc_add_modify (&se->pre, tmp, scalar); in gfc_conv_scalar_to_descriptor() 87 gfc_add_modify (&se->pre, gfc_conv_descriptor_dtype (desc), in gfc_conv_scalar_to_descriptor() 89 gfc_conv_descriptor_data_set (&se->pre, desc, scalar); in gfc_conv_scalar_to_descriptor() 94 gfc_add_modify (&se->post, scalar, in gfc_conv_scalar_to_descriptor() 126 gfc_se se; in gfc_get_ultimate_alloc_ptr_comps_caf_token() local 130 gfc_init_se (&se, outerse); in gfc_get_ultimate_alloc_ptr_comps_caf_token() 134 se.want_pointer = comp_ref; in gfc_get_ultimate_alloc_ptr_comps_caf_token() 135 gfc_conv_expr (&se, caf_expr); in gfc_get_ultimate_alloc_ptr_comps_caf_token() 136 gfc_add_block_to_block (&outerse->pre, &se.pre); in gfc_get_ultimate_alloc_ptr_comps_caf_token() [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/sl/ |
| H A D | ChangeLog | 5 2007-07-17 Love Hörnquist Åstrand <lha@it.su.se> 11 2007-07-10 Love Hörnquist Åstrand <lha@it.su.se> 15 2007-06-18 Love Hörnquist Åstrand <lha@it.su.se> 24 2007-06-09 Love Hörnquist Åstrand <lha@it.su.se> 29 2007-06-01 Love Hörnquist Åstrand <lha@it.su.se> 33 2007-04-20 Love Hörnquist Åstrand <lha@it.su.se> 38 2006-12-29 Love Hörnquist Åstrand <lha@it.su.se> 42 2006-12-27 Love Hörnquist Åstrand <lha@it.su.se> 54 2006-12-05 Love Hörnquist Åstrand <lha@it.su.se> 59 2006-10-19 Love Hörnquist Åstrand <lha@it.su.se> [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| H A D | ChangeLog | 1 2008-07-12 Love Hörnquist Åstrand <lha@kth.se> 5 2008-04-27 Love Hörnquist Åstrand <lha@it.su.se> 16 2008-04-26 Love Hörnquist Åstrand <lha@it.su.se> 20 2008-04-07 Love Hörnquist Åstrand <lha@it.su.se> 24 2008-02-23 Love Hörnquist Åstrand <lha@it.su.se> 28 2008-02-22 Love Hörnquist Åstrand <lha@it.su.se> 34 2008-01-12 Love Hörnquist Åstrand <lha@it.su.se> 38 2007-08-09 Love Hörnquist Åstrand <lha@it.su.se> 46 2007-07-17 Love Hörnquist Åstrand <lha@it.su.se> 54 2007-07-16 Love Hörnquist Åstrand <lha@it.su.se> [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/com_err/ |
| H A D | ChangeLog | 1 2007-07-17 Love Hörnquist Åstrand <lha@it.su.se> 5 2007-07-16 Love Hörnquist Åstrand <lha@it.su.se> 9 2007-07-15 Love Hörnquist Åstrand <lha@it.su.se> 15 2007-07-10 Love Hörnquist Åstrand <lha@it.su.se> 19 2006-10-19 Love Hörnquist Åstrand <lha@it.su.se> 23 2005-12-12 Love Hörnquist Åstrand <lha@it.su.se> 27 2005-07-07 Love Hörnquist Åstrand <lha@it.su.se> 31 2005-06-16 Love Hörnquist Åstrand <lha@it.su.se> 46 2005-05-16 Love Hörnquist Åstrand <lha@it.su.se> 60 2005-04-24 Love Hörnquist Åstrand <lha@it.su.se> [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/cf/ |
| H A D | ChangeLog | 6 2008-05-20 Love Hörnquist Åstrand <lha@kth.se> 11 2008-05-05 Love Hörnquist Åstrand <lha@kth.se> 17 2008-04-29 Love Hörnquist Åstrand <lha@it.su.se> 23 2008-04-24 Björn Sandell <biorn@chalmers.se> 27 2008-04-17 Love Hörnquist Åstrand <lha@it.su.se> 41 2008-04-07 Love Hörnquist Åstrand <lha@it.su.se> 45 2008-03-25 Love Hörnquist Åstrand <lha@it.su.se> 50 2008-02-23 Love Hörnquist Åstrand <lha@it.su.se> 58 2008-01-21 Love Hörnquist Åstrand <lha@it.su.se> 64 2007-10-01 Love Hörnquist Åstrand <lha@it.su.se> [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/fortran/ |
| H A D | trans-intrinsic.cc | 201 gfc_conv_intrinsic_function_args (gfc_se *se, gfc_expr *expr, in gfc_conv_intrinsic_function_args() argument 228 gfc_init_se (&argse, se); in gfc_conv_intrinsic_function_args() 248 gfc_add_block_to_block (&se->pre, &argse.pre); in gfc_conv_intrinsic_function_args() 249 gfc_add_block_to_block (&se->post, &argse.post); in gfc_conv_intrinsic_function_args() 282 gfc_conv_intrinsic_conversion (gfc_se * se, gfc_expr * expr) in gfc_conv_intrinsic_conversion() argument 296 gfc_conv_intrinsic_function_args (se, expr, args, nargs); in gfc_conv_intrinsic_conversion() 322 gfc_add_expr_to_block (&se->pre, tmp); in gfc_conv_intrinsic_conversion() 326 gfc_add_expr_to_block (&se->post, tmp); in gfc_conv_intrinsic_conversion() 328 se->expr = var; in gfc_conv_intrinsic_conversion() 329 se->string_length = args[0]; in gfc_conv_intrinsic_conversion() [all …]
|
| H A D | trans-stmt.cc | 77 gfc_conv_label_variable (gfc_se * se, gfc_expr * expr) in gfc_conv_label_variable() argument 80 gfc_conv_expr (se, expr); in gfc_conv_label_variable() 82 if (TREE_CODE (se->expr) == COMPONENT_REF) in gfc_conv_label_variable() 83 se->expr = TREE_OPERAND (se->expr, 1); in gfc_conv_label_variable() 85 else if (TREE_CODE (se->expr) == INDIRECT_REF) in gfc_conv_label_variable() 86 se->expr = TREE_OPERAND (se->expr, 0); in gfc_conv_label_variable() 95 gfc_se se; in gfc_trans_label_assign() local 102 gfc_init_se (&se, NULL); in gfc_trans_label_assign() 103 gfc_start_block (&se.pre); in gfc_trans_label_assign() 104 gfc_conv_label_variable (&se, code->expr1); in gfc_trans_label_assign() [all …]
|
| H A D | trans-expr.cc | 107 gfc_conv_scalar_to_descriptor (gfc_se *se, tree scalar, symbol_attribute attr) in gfc_conv_scalar_to_descriptor() argument 120 gfc_add_modify (&se->pre, tmp, scalar); in gfc_conv_scalar_to_descriptor() 127 gfc_add_modify (&se->pre, gfc_conv_descriptor_dtype (desc), in gfc_conv_scalar_to_descriptor() 129 gfc_conv_descriptor_data_set (&se->pre, desc, scalar); in gfc_conv_scalar_to_descriptor() 130 gfc_conv_descriptor_span_set (&se->pre, desc, in gfc_conv_scalar_to_descriptor() 136 gfc_add_modify (&se->post, scalar, in gfc_conv_scalar_to_descriptor() 168 gfc_se se; in gfc_get_ultimate_alloc_ptr_comps_caf_token() local 172 gfc_init_se (&se, outerse); in gfc_get_ultimate_alloc_ptr_comps_caf_token() 176 se.want_pointer = comp_ref; in gfc_get_ultimate_alloc_ptr_comps_caf_token() 177 gfc_conv_expr (&se, caf_expr); in gfc_get_ultimate_alloc_ptr_comps_caf_token() [all …]
|
| H A D | trans-io.cc | 533 gfc_se se; in set_parameter_value() local 538 gfc_init_se (&se, NULL); in set_parameter_value() 539 gfc_conv_expr_val (&se, e); in set_parameter_value() 541 se.expr = convert (dest_type, se.expr); in set_parameter_value() 542 gfc_add_block_to_block (block, &se.pre); in set_parameter_value() 551 gfc_add_modify (block, tmp, se.expr); in set_parameter_value() 563 gfc_se se; in set_parameter_value_chk() local 568 gfc_init_se (&se, NULL); in set_parameter_value_chk() 569 gfc_conv_expr_val (&se, e); in set_parameter_value_chk() 578 se.expr = gfc_evaluate_now (se.expr, &se.pre); in set_parameter_value_chk() [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/otp/ |
| H A D | ChangeLog | 1 2007-07-17 Love Hörnquist Åstrand <lha@it.su.se> 5 2007-07-10 Love Hörnquist Åstrand <lha@it.su.se> 9 2007-06-07 Assar Westerlund <assar@kth.se> 13 2006-05-08 Love Hörnquist Åstrand <lha@it.su.se> 18 2005-07-09 Love Hörnquist Åstrand <lha@it.su.se> 22 2005-07-07 Love Hörnquist Åstrand <lha@it.su.se> 27 2005-01-09 Love Hörnquist Åstrand <lha@it.su.se> 31 2003-04-16 Love Hörnquist Åstrand <lha@it.su.se> 39 2002-09-10 Johan Danielsson <joda@pdc.kth.se> 44 2002-05-20 Johan Danielsson <joda@pdc.kth.se> [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/kadmin/ |
| H A D | ChangeLog | 1 2008-04-07 Love Hörnquist Åstrand <lha@it.su.se> 5 2007-12-09 Love Hörnquist Åstrand <lha@it.su.se> 11 2007-07-26 Love Hörnquist Åstrand <lha@it.su.se> 15 2007-05-10 Love Hörnquist Åstrand <lha@it.su.se> 21 2007-02-22 Love Hörnquist Åstrand <lha@it.su.se> 32 2007-02-17 Love Hörnquist Åstrand <lha@it.su.se> 40 2006-12-22 Love Hörnquist Åstrand <lha@it.su.se> 48 2006-12-05 Love Hörnquist Åstrand <lha@it.su.se> 54 2006-10-22 Love Hörnquist Åstrand <lha@it.su.se> 60 2006-10-07 Love Hörnquist Åstrand <lha@it.su.se> [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/tests/gss/ |
| H A D | check-context.in | 86 ${kadmin} add -p p1 --use-defaults host/lucid.test.h5l.se@${R} || exit 1 87 ${kadmin} ext -k ${keytab} host/lucid.test.h5l.se@${R} || exit 1 89 ${kadmin} add -p p1 --use-defaults host/ok-delegate.test.h5l.se@${R} || exit 1 90 ${kadmin} mod --attributes=+ok-as-delegate host/ok-delegate.test.h5l.se@${R} || exit 1 91 ${kadmin} ext -k ${keytab} host/ok-delegate.test.h5l.se@${R} || exit 1 95 ${kadmin} mod --alias=host/long.test.h5l.se@${R} host/short@${R} || exit 1 98 ${ktutil} -k ${keytab} rename --no-delete host/short@${R} host/long.test.h5l.se@${R} || exit 1 105 ${kadmin} add -p p1 --use-defaults host/no-aes.test.h5l.se@${R} || exit 1 106 ${kadmin} get host/no-aes.test.h5l.se@${R} > tempfile || exit 1 107 ${kadmin} del_enctype host/no-aes.test.h5l.se@${R} \ [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/tests/ |
| H A D | ChangeLog | 1 2008-06-01 Love Hörnquist Åstrand <lha@kth.se> 5 2008-04-28 Love Hörnquist Åstrand <lha@it.su.se> 11 2008-04-27 Love Hörnquist Åstrand <lha@it.su.se> 18 2008-03-23 Love Hörnquist Åstrand <lha@it.su.se> 22 2008-03-22 Love Hörnquist Åstrand <lha@it.su.se> 26 2008-03-20 Love Hörnquist Åstrand <lha@it.su.se> 31 2008-03-19 Love Hörnquist Åstrand <lha@it.su.se> 35 2008-03-14 Love Hörnquist Åstrand <lha@it.su.se> 39 2008-02-11 Love Hörnquist Åstrand <lha@it.su.se> 43 2008-02-03 Love Hörnquist Åstrand <lha@it.su.se> [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/kadm5/ |
| H A D | ChangeLog | 1 2008-04-23 Love Hörnquist Åstrand <lha@it.su.se> 7 2008-01-21 Love Hörnquist Åstrand <lha@it.su.se> 11 2008-01-11 Love Hörnquist Åstrand <lha@it.su.se> 16 2007-12-07 Love Hörnquist Åstrand <lha@it.su.se> 20 2007-10-18 Love <lha@stacken.kth.se> 25 2007-09-29 Love Hörnquist Åstrand <lha@it.su.se> 29 2007-08-16 Love Hörnquist Åstrand <lha@it.su.se> 38 2007-08-10 Love Hörnquist Åstrand <lha@it.su.se> 44 2007-08-07 Love Hörnquist Åstrand <lha@it.su.se> 51 2007-08-06 Love Hörnquist Åstrand <lha@it.su.se> [all …]
|
| /netbsd-src/lib/libc/gdtoa/test/ |
| H A D | Qtest.c | 83 char *s, *s1, *se, *se1; in main() local 111 u.bits[_0] = (ULong)strtoul(s1 = s+1, &se, 16); in main() 112 if (se > s1) { in main() 113 u.bits[_1] = (ULong)strtoul(s1 = se, &se, 16); in main() 114 if (se > s1) { in main() 115 u.bits[_2] = (ULong)strtoul(s1 = se, &se, 16); in main() 116 if (se > s1) in main() 117 u.bits[_3] = (ULong)strtoul(s1 = se, &se, 16); in main() 127 i = strtorQ(ibuf, &se, r, u.bits); in main() 129 || se != se1 || memcmp(u.bits, v[0].bits, 16))) in main() [all …]
|
| H A D | dt.c | 90 char *s, *se; local 98 s = dtoa(x, 0, 0, &decpt, &sign, &se); 105 if (decpt <= -4 || decpt > se - s + 5) { 168 char *s, *se; local 171 s = dtoa(dval(d), 0, 0, &decpt, &sign, &se); 191 char *fmt, *s, *s1, *se; in main() local 209 x = (ULong)strtoul(s1 = buf+1, &se, 16); in main() 210 if (se > s1) { in main() 211 y = (ULong)strtoul(s1 = se, &se, 16); in main() 212 if (se > s1) in main() [all …]
|
| /netbsd-src/lib/libc/citrus/modules/ |
| H A D | citrus_iconv_std.c | 84 save_encoding_state(struct _citrus_iconv_std_encoding *se) in save_encoding_state() argument 86 if (se->se_ps) in save_encoding_state() 87 memcpy(se->se_pssaved, se->se_ps, in save_encoding_state() 88 _stdenc_get_state_size(se->se_handle)); in save_encoding_state() 92 restore_encoding_state(struct _citrus_iconv_std_encoding *se) in restore_encoding_state() argument 94 if (se->se_ps) in restore_encoding_state() 95 memcpy(se->se_ps, se->se_pssaved, in restore_encoding_state() 96 _stdenc_get_state_size(se->se_handle)); in restore_encoding_state() 100 init_encoding_state(struct _citrus_iconv_std_encoding *se) in init_encoding_state() argument 102 if (se->se_ps) in init_encoding_state() [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| H A D | ChangeLog | 1 2008-06-26 Love Hörnquist Åstrand <lha@kth.se> 6 2008-05-20 Love Hörnquist Åstrand <lha@kth.se> 11 2008-04-29 Björn Sandell <biorn@chalmers.se> 17 2008-04-29 Love Hörnquist Åstrand <lha@it.su.se> 21 2008-04-28 Love Hörnquist Åstrand <lha@it.su.se> 40 2008-04-27 Love Hörnquist Åstrand <lha@it.su.se> 54 2008-04-18 Love Hörnquist Åstrand <lha@it.su.se> 80 2008-04-15 Love Hörnquist Åstrand <lha@it.su.se> 92 2008-04-11 Love Hörnquist Åstrand <lha@it.su.se> 105 2008-03-19 Love Hörnquist Åstrand <lha@it.su.se> [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/vers/ |
| H A D | ChangeLog | 1 2007-10-16 Love Hörnquist Åstrand <lha@it.su.se> 5 2006-12-29 Love Hörnquist Åstrand <lha@it.su.se> 9 2006-10-21 Love Hörnquist Åstrand <lha@it.su.se> 13 2006-10-20 Love Hörnquist Åstrand <lha@it.su.se> 17 2006-10-19 Love Hörnquist Åstrand <lha@it.su.se> 21 2006-10-07 Love Hörnquist Åstrand <lha@it.su.se> 25 2005-01-01 Love Hörnquist Åstrand <lha@it.su.se> 29 2004-01-05 Love Hörnquist Åstrand <lha@it.su.se> 33 2003-01-02 Johan Danielsson <joda@pdc.kth.se> 40 2002-08-28 Assar Westerlund <assar@kth.se> [all …]
|