| /netbsd-src/external/bsd/ntp/dist/ntpd/ |
| H A D | check_y2k.c | 492 struct calendar ot; in main() local 520 caljulian( ntp_time, &ot ); /* convert January 1 */ in main() 521 if ( ot.year != year in main() 522 || ot.month != 1 in main() 523 || ot.monthday != 1 ) in main() 529 (int)ot.year, (int)ot.month, (int)ot.monthday ); in main() 534 caljulian( ntp_time, &ot ); /* convert Feb 28 */ in main() 535 if ( ot.year != year in main() 536 || ot.month != 2 in main() 537 || ot.monthday != 28 ) in main() [all …]
|
| /netbsd-src/sys/dev/pci/cxgb/ |
| H A D | cxgb_t3_cpl.h | 198 #define OPCODE_TID(cmd) ((cmd)->ot.opcode_tid) 493 union opcode_tid ot; member 506 union opcode_tid ot; member 517 union opcode_tid ot; member 555 union opcode_tid ot; member 583 union opcode_tid ot; member 593 union opcode_tid ot; member 635 union opcode_tid ot; member 647 union opcode_tid ot; member 661 union opcode_tid ot; member [all …]
|
| /netbsd-src/sys/fs/nfs/common/ |
| H A D | nfsrvcache.h | 71 } ot; member 82 #define rc_sockref rc_un2.ot.sockref 83 #define rc_tcpseq rc_un2.ot.tcpseq 84 #define rc_refcnt rc_un2.ot.refcnt 85 #define rc_reqlen rc_un2.ot.len 86 #define rc_cksum rc_un2.ot.cksum 87 #define rc_cachetime rc_un2.ot.cachetime 88 #define rc_acked rc_un2.ot.acked
|
| /netbsd-src/tests/lib/libc/sys/ |
| H A D | t_getitimer.c | 156 struct itimerval it, ot; in ATF_TC_BODY() 159 ATF_REQUIRE_ERRNO(EINVAL, setitimer(-1, &it, &ot) == -1); in ATF_TC_BODY() 162 ATF_REQUIRE_ERRNO(EINVAL, setitimer(INT_MAX, &it, &ot) == -1); in ATF_TC_BODY() 165 ATF_REQUIRE_ERRNO(EFAULT, setitimer(ITIMER_REAL,(void*)-1, &ot) == -1); in ATF_TC_BODY() 176 struct itimerval it, ot; in ATF_TC_BODY() 190 ATF_REQUIRE(setitimer(ITIMER_REAL, &it, &ot) == 0); in ATF_TC_BODY() 198 ATF_REQUIRE(setitimer(ITIMER_REAL, &it, &ot) == 0); in ATF_TC_BODY() 201 if (ot.it_value.tv_sec != 4) in ATF_TC_BODY() 155 struct itimerval it, ot; ATF_TC_BODY() local 175 struct itimerval it, ot; ATF_TC_BODY() local
|
| /netbsd-src/usr.bin/config/ |
| H A D | lint.c | 71 const struct opt_type *ot = v; in do_emit_option() local 77 if (ht_lookup(*(ot->ot_ht), name)) in do_emit_option() 80 printf("%s\t%s", ot->ot_name, dl->dl_name); in do_emit_option() 81 if (ot->ot_type == OT_PARAM) { in do_emit_option() 103 const struct opt_type *ot = v; in do_emit_fs() local 105 if (ht_lookup(*(ot->ot_ht), name)) in do_emit_fs() 108 assert(ot->ot_type != OT_PARAM); in do_emit_fs() 109 printf("%s\t%s\n", ot->ot_name, nv->nv_name); in do_emit_fs()
|
| /netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/ |
| H A D | dmu.h | 119 #define DMU_OT_IS_VALID(ot) (((ot) & DMU_OT_NEWTYPE) ? \ argument 120 ((ot) & DMU_OT_BYTESWAP_MASK) < DMU_BSWAP_NUMFUNCS : \ 121 (ot) < DMU_OT_NUMTYPES) 123 #define DMU_OT_IS_METADATA(ot) (((ot) & DMU_OT_NEWTYPE) ? \ argument 124 ((ot) & DMU_OT_METADATA) : \ 125 dmu_ot[(ot)].ot_metadata) 132 #define DMU_OT_HAS_FILL(ot) \ argument 133 ((ot) == DMU_OT_DNODE || (ot) == DMU_OT_OBJSET) 135 #define DMU_OT_BYTESWAP(ot) (((ot) & DMU_OT_NEWTYPE) ? \ argument 136 ((ot) & DMU_OT_BYTESWAP_MASK) : \ [all …]
|
| H A D | zap.h | 134 uint64_t zap_create(objset_t *ds, dmu_object_type_t ot, 136 uint64_t zap_create_norm(objset_t *ds, int normflags, dmu_object_type_t ot, 139 dmu_object_type_t ot, int leaf_blockshift, int indirect_blockshift, 141 uint64_t zap_create_link(objset_t *os, dmu_object_type_t ot, 154 int zap_create_claim(objset_t *ds, uint64_t obj, dmu_object_type_t ot, 157 int normflags, dmu_object_type_t ot,
|
| /netbsd-src/usr.bin/xlint/lint1/ |
| H A D | tree.c | 1594 tspec_t nt = ntp->t_tspec, ot = otp->t_tspec; in fold_constant_compare_zero() 1596 if (nt == BOOL || ot == BOOL) in fold_constant_compare_zero() 1597 return nt == BOOL && ot == BOOL; in fold_constant_compare_zero() 1599 if (is_integer(nt) && is_integer(ot)) { in fold_constant_compare_zero() 1601 if (is_uinteger(nt) == is_uinteger(ot)) in fold_constant_compare_zero() 1603 return is_uinteger(ot) && nw > ow; in fold_constant_compare_zero() 1606 if (is_complex(nt) || is_complex(ot)) 1607 return is_complex(nt) && is_complex(ot) && 1608 size_in_bits(nt) >= size_in_bits(ot); in floating_error_value() 1610 if (is_floating(nt) && is_floating(ot)) in floating_error_value() 1350 tspec_t nt = ntp->t_tspec, ot = otp->t_tspec; is_cast_redundant() local 3288 tspec_t ot = otp->t_tspec; promote() local 3346 should_warn_about_prototype_conversion(tspec_t nt,tspec_t ot,const tnode_t * ptn) should_warn_about_prototype_conversion() argument 3391 check_prototype_conversion(int arg,tspec_t nt,tspec_t ot,type_t * tp,tnode_t * tn) check_prototype_conversion() argument 3447 should_warn_about_integer_conversion(const type_t * ntp,tspec_t nt,const tnode_t * otn,tspec_t ot) should_warn_about_integer_conversion() argument 3467 convert_integer_from_integer(op_t op,int arg,tspec_t nt,tspec_t ot,type_t * tp,tnode_t * tn) convert_integer_from_integer() argument 3679 tspec_t ot = tn->tn_type->t_tspec; convert() local 3799 convert_constant_to_floating(tspec_t nt,val_t * nv,tspec_t ot,const val_t * v) convert_constant_to_floating() argument 3832 convert_constant_check_range_bitand(size_t nsz,size_t osz,uint64_t xmask,const val_t * nv,tspec_t ot,const val_t * v,const type_t * tp,op_t op) convert_constant_check_range_bitand() argument 3882 warn_constant_check_range_truncated(op_t op,int arg,const type_t * tp,tspec_t ot) warn_constant_check_range_truncated() argument 3909 warn_constant_check_range_loss(op_t op,int arg,const type_t * tp,tspec_t ot) warn_constant_check_range_loss() argument 3929 convert_constant_check_range(tspec_t ot,const type_t * tp,tspec_t nt,op_t op,int arg,const val_t * v,val_t * nv) convert_constant_check_range() argument 3966 tspec_t ot = ov->v_tspec; convert_constant() local 4195 tspec_t ot = tn->tn_type->t_tspec; cast() local 4739 tspec_t t, ot; constant_addr() local [all...] |
| /netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| H A D | dmu_object.c | 35 dmu_object_alloc(objset_t *os, dmu_object_type_t ot, int blocksize, in dmu_object_alloc() argument 86 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); in dmu_object_alloc() 96 dmu_object_claim(objset_t *os, uint64_t object, dmu_object_type_t ot, in dmu_object_claim() argument 108 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); in dmu_object_claim() 116 dmu_object_reclaim(objset_t *os, uint64_t object, dmu_object_type_t ot, in dmu_object_reclaim() argument 130 dnode_reallocate(dn, ot, blocksize, bonustype, bonuslen, tx); in dmu_object_reclaim()
|
| H A D | zap_micro.c | 680 zap_create_claim(objset_t *os, uint64_t obj, dmu_object_type_t ot, in zap_create_claim() argument 684 0, ot, bonustype, bonuslen, tx)); in zap_create_claim() 689 dmu_object_type_t ot, in zap_create_claim_norm() argument 694 err = dmu_object_claim(os, obj, ot, 0, bonustype, bonuslen, tx); in zap_create_claim_norm() 702 zap_create(objset_t *os, dmu_object_type_t ot, in zap_create() argument 705 return (zap_create_norm(os, 0, ot, bonustype, bonuslen, tx)); in zap_create() 709 zap_create_norm(objset_t *os, int normflags, dmu_object_type_t ot, in zap_create_norm() argument 712 uint64_t obj = dmu_object_alloc(os, ot, 0, bonustype, bonuslen, tx); in zap_create_norm() 720 dmu_object_type_t ot, int leaf_blockshift, int indirect_blockshift, in zap_create_flags() argument 723 uint64_t obj = dmu_object_alloc(os, ot, 0, bonustype, bonuslen, tx); in zap_create_flags()
|
| /netbsd-src/external/mpl/dhcp/bind/dist/lib/dns/ |
| H A D | diff.c | 156 dns_difftuple_t *ot, *next_ot; in dns_diff_appendminimal() local 173 for (ot = ISC_LIST_HEAD(diff->tuples); ot != NULL; ot = next_ot) { in dns_diff_appendminimal() 174 next_ot = ISC_LIST_NEXT(ot, link); in dns_diff_appendminimal() 175 if (dns_name_caseequal(&ot->name, &(*tuplep)->name) && in dns_diff_appendminimal() 176 dns_rdata_compare(&ot->rdata, &(*tuplep)->rdata) == 0 && in dns_diff_appendminimal() 177 ot->ttl == (*tuplep)->ttl) in dns_diff_appendminimal() 179 ISC_LIST_UNLINK(diff->tuples, ot, link); in dns_diff_appendminimal() 180 if ((*tuplep)->op == ot->op) { in dns_diff_appendminimal() 186 dns_difftuple_free(&ot); in dns_diff_appendminimal()
|
| /netbsd-src/external/mpl/bind/dist/lib/dns/ |
| H A D | diff.c | 179 dns_difftuple_t *ot, *next_ot; in dns_diff_appendminimal() 196 for (ot = ISC_LIST_HEAD(diff->tuples); ot != NULL; ot = next_ot) { 197 next_ot = ISC_LIST_NEXT(ot, link); in setresign() 198 if (dns_name_caseequal(&ot->name, &(*tuplep)->name) && in setresign() 199 dns_rdata_compare(&ot->rdata, &(*tuplep)->rdata) == 0 && in setresign() 200 ot->ttl == (*tuplep)->ttl) in setresign() 202 ISC_LIST_UNLINK(diff->tuples, ot, link); in setresign() 206 if ((*tuplep)->op == ot in setresign() 156 dns_difftuple_t *ot, *next_ot; dns_diff_appendminimal() local [all...] |
| /netbsd-src/sys/arch/ia64/disasm/ |
| H A D | disasm_extract.c | 188 enum asm_oper_type ot = ASM_OPER_NONE; in asm_normalize() local 858 ot = ASM_OPER_DTR; in asm_normalize() 863 ot = ASM_OPER_ITR; in asm_normalize() 1263 ot = ASM_OPER_CPUID; in asm_normalize() 1267 ot = ASM_OPER_DBR; in asm_normalize() 1271 ot = ASM_OPER_IBR; in asm_normalize() 1275 ot = ASM_OPER_IP; in asm_normalize() 1279 ot = ASM_OPER_MSR; in asm_normalize() 1283 ot = ASM_OPER_PKR; in asm_normalize() 1287 ot = ASM_OPER_PMC; in asm_normalize() [all …]
|
| /netbsd-src/sys/net/npf/ |
| H A D | npf_tableset.c | 247 npf_table_t *t, *ot; in npf_tableset_reload() local 259 ot = npf_tableset_getbyname(ots, t->t_name); in npf_tableset_reload() 260 if (ot == NULL) { in npf_tableset_reload() 266 if (t->t_type != ot->t_type) { in npf_tableset_reload() 275 atomic_inc_uint(&ot->t_refcnt); in npf_tableset_reload() 276 nts->ts_map[tid] = ot; in npf_tableset_reload() 279 ot->t_id = tid; in npf_tableset_reload()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | optabs-tree.c | 449 optab ot = optab_for_tree_code (code, type, ot_subtype); in target_supports_op_p() local 450 return (ot != unknown_optab in target_supports_op_p() 451 && optab_handler (ot, TYPE_MODE (type)) != CODE_FOR_nothing); in target_supports_op_p()
|
| /netbsd-src/external/gpl2/xcvs/dist/lib/ |
| H A D | mktime.c | 461 time_t ot = t + delta * direction; in __mktime_internal() local 462 if ((ot < t) == (direction < 0)) in __mktime_internal() 465 ranged_convert (convert, &ot, &otm); in __mktime_internal() 470 t = guess_time_tm (year, yday, hour, min, sec, &ot, &otm); in __mktime_internal()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | optabs-tree.cc | 565 optab ot = optab_for_tree_code (code, type, ot_subtype); in target_supports_op_p() local 566 return (ot != unknown_optab in target_supports_op_p() 567 && optab_handler (ot, TYPE_MODE (type)) != CODE_FOR_nothing); in target_supports_op_p()
|
| /netbsd-src/external/gpl3/binutils/dist/gprofng/src/ |
| H A D | FileData.h | 161 addOtherEvent (hrtime_t ot) in addOtherEvent() argument 163 otherTime += ot; in addOtherEvent()
|
| /netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/ |
| H A D | FileData.h | 161 addOtherEvent (hrtime_t ot) in addOtherEvent() argument 163 otherTime += ot; in addOtherEvent()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/test/ocsp-tests/ |
| H A D | WSNIC_ND1_Issuer_ICA.pem | 10 ggEBAMxKljPNJY1n7iiWN4dG8PYEooR/U6qW5h+xAhxu7X0h1Nc8HqLYaS+ot/Wi
|
| H A D | WKIC_ND1_Issuer_ICA.pem | 10 ggEBAM1KljPNJY1n7iiWN4dG8PYEooR/U6qW5h+xAhxu7X0h1Nc8HqLYaS+ot/Wi
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/ocsp-tests/ |
| H A D | ND2_Cert_ICA.pem | 10 ggEBAMxKljPNJY1n7iiWN4dG8PYEooR/U6qW5h+xAhxu7X0h1Nc8HqLYaS+ot/Wi
|
| H A D | WSNIC_ND1_Issuer_ICA.pem | 10 ggEBAMxKljPNJY1n7iiWN4dG8PYEooR/U6qW5h+xAhxu7X0h1Nc8HqLYaS+ot/Wi
|
| H A D | ND1_Issuer_ICA.pem | 10 ggEBAMxKljPNJY1n7iiWN4dG8PYEooR/U6qW5h+xAhxu7X0h1Nc8HqLYaS+ot/Wi
|
| H A D | ISIC_ND1_Issuer_ICA.pem | 10 ggEBAMxKljPNJY1n7iiWN4dG8PYEooR/U6qW5h+xAhxu7X0h1Nc8HqLYaS+ot/Wi
|