| /src/contrib/ntp/ntpd/ |
| H A D | check_y2k.c | 490 struct calendar ot; in main() local 518 caljulian( ntp_time, &ot ); /* convert January 1 */ in main() 519 if ( ot.year != year in main() 520 || ot.month != 1 in main() 521 || ot.monthday != 1 ) in main() 527 (int)ot.year, (int)ot.month, (int)ot.monthday ); in main() 532 caljulian( ntp_time, &ot ); /* convert Feb 28 */ in main() 533 if ( ot.year != year in main() 534 || ot.month != 2 in main() 535 || ot.monthday != 28 ) in main() [all …]
|
| /src/contrib/netbsd-tests/lib/libc/sys/ |
| H A D | t_getitimer.c | 155 struct itimerval it, ot; in ATF_TC_BODY() local 158 ATF_REQUIRE_ERRNO(EINVAL, setitimer(-1, &it, &ot) == -1); in ATF_TC_BODY() 161 ATF_REQUIRE_ERRNO(EINVAL, setitimer(INT_MAX, &it, &ot) == -1); in ATF_TC_BODY() 164 ATF_REQUIRE_ERRNO(EFAULT, setitimer(ITIMER_REAL,(void*)-1, &ot) == -1); in ATF_TC_BODY() 175 struct itimerval it, ot; in ATF_TC_BODY() local 187 ATF_REQUIRE(setitimer(ITIMER_REAL, &it, &ot) == 0); in ATF_TC_BODY() 195 ATF_REQUIRE(setitimer(ITIMER_REAL, &it, &ot) == 0); in ATF_TC_BODY() 198 ATF_REQUIRE_MSG((ot.it_value.tv_sec < 4) || in ATF_TC_BODY() 199 (ot.it_value.tv_sec == 4 && ot.it_value.tv_usec <= 3), in ATF_TC_BODY() 201 (intmax_t)ot.it_value.tv_sec, (intmax_t)ot.it_value.tv_usec); in ATF_TC_BODY() [all …]
|
| /src/sys/contrib/openzfs/include/sys/ |
| H A D | dmu.h | 124 #define DMU_OT_IS_VALID(ot) (((ot) & DMU_OT_NEWTYPE) ? \ argument 125 ((ot) & DMU_OT_BYTESWAP_MASK) < DMU_BSWAP_NUMFUNCS : \ 126 (ot) < DMU_OT_NUMTYPES) 128 #define DMU_OT_IS_METADATA_CACHED(ot) (((ot) & DMU_OT_NEWTYPE) ? \ argument 129 ((ot) & DMU_OT_METADATA) != 0 : dmu_ot[(ot)].ot_dbuf_metadata_cache) 135 #define DMU_OT_IS_METADATA_IMPL(ot) (dmu_ot[ot].ot_metadata) argument 136 #define DMU_OT_IS_ENCRYPTED_IMPL(ot) (dmu_ot[ot].ot_encrypt) argument 137 #define DMU_OT_BYTESWAP_IMPL(ot) (dmu_ot[ot].ot_byteswap) argument 140 #define DMU_OT_IS_METADATA(ot) (((ot) & DMU_OT_NEWTYPE) ? \ argument 141 (((ot) & DMU_OT_METADATA) != 0) : \ [all …]
|
| H A D | zap.h | 124 uint64_t zap_create(objset_t *ds, dmu_object_type_t ot, 126 uint64_t zap_create_dnsize(objset_t *ds, dmu_object_type_t ot, 128 uint64_t zap_create_norm(objset_t *ds, int normflags, dmu_object_type_t ot, 131 dmu_object_type_t ot, dmu_object_type_t bonustype, int bonuslen, 134 dmu_object_type_t ot, int leaf_blockshift, int indirect_blockshift, 137 zap_flags_t flags, dmu_object_type_t ot, int leaf_blockshift, 141 dmu_object_type_t ot, int leaf_blockshift, int indirect_blockshift, 145 uint64_t zap_create_link(objset_t *os, dmu_object_type_t ot, 147 uint64_t zap_create_link_dnsize(objset_t *os, dmu_object_type_t ot, 160 int zap_create_claim(objset_t *ds, uint64_t obj, dmu_object_type_t ot, [all …]
|
| H A D | zio_crypt.h | 153 dmu_object_type_t ot, boolean_t byteswap, uint8_t *salt, uint8_t *iv, 157 dmu_object_type_t ot, boolean_t byteswap, uint8_t *salt, uint8_t *iv,
|
| H A D | arc.h | 281 dmu_object_type_t ot, const uint8_t *salt, const uint8_t *iv, 290 const uint8_t *mac, dmu_object_type_t ot, uint64_t psize, uint64_t lsize, 298 dmu_object_type_t ot, uint64_t psize, uint64_t lsize,
|
| /src/sys/fs/nfs/ |
| H A D | nfsrvcache.h | 69 } ot; member 80 #define rc_sockref rc_un2.ot.sockref 81 #define rc_tcpseq rc_un2.ot.tcpseq 82 #define rc_refcnt rc_un2.ot.refcnt 83 #define rc_reqlen rc_un2.ot.len 84 #define rc_cksum rc_un2.ot.cksum 85 #define rc_cachetime rc_un2.ot.cachetime 86 #define rc_acked rc_un2.ot.acked
|
| /src/sys/dev/cxgb/common/ |
| H A D | cxgb_t3_cpl.h | 195 #define OPCODE_TID(cmd) ((cmd)->ot.opcode_tid) 520 union opcode_tid ot; member 533 union opcode_tid ot; member 544 union opcode_tid ot; member 582 union opcode_tid ot; member 610 union opcode_tid ot; member 620 union opcode_tid ot; member 662 union opcode_tid ot; member 674 union opcode_tid ot; member 688 union opcode_tid ot; member [all …]
|
| /src/sys/contrib/openzfs/module/zfs/ |
| H A D | dmu_object.c | 48 dmu_object_alloc_impl(objset_t *os, dmu_object_type_t ot, int blocksize, in dmu_object_alloc_impl() argument 192 dnode_allocate(dn, ot, blocksize, in dmu_object_alloc_impl() 227 dmu_object_alloc(objset_t *os, dmu_object_type_t ot, int blocksize, in dmu_object_alloc() argument 230 return dmu_object_alloc_impl(os, ot, blocksize, 0, bonustype, in dmu_object_alloc() 235 dmu_object_alloc_ibs(objset_t *os, dmu_object_type_t ot, int blocksize, in dmu_object_alloc_ibs() argument 239 return dmu_object_alloc_impl(os, ot, blocksize, indirect_blockshift, in dmu_object_alloc_ibs() 244 dmu_object_alloc_dnsize(objset_t *os, dmu_object_type_t ot, int blocksize, in dmu_object_alloc_dnsize() argument 247 return (dmu_object_alloc_impl(os, ot, blocksize, 0, bonustype, in dmu_object_alloc_dnsize() 257 dmu_object_alloc_hold(objset_t *os, dmu_object_type_t ot, int blocksize, in dmu_object_alloc_hold() argument 261 return (dmu_object_alloc_impl(os, ot, blocksize, indirect_blockshift, in dmu_object_alloc_hold() [all …]
|
| H A D | zap_micro.c | 866 dmu_object_type_t ot, int leaf_blockshift, int indirect_blockshift, in zap_create_impl() argument 872 ASSERT3U(DMU_OT_BYTESWAP(ot), ==, DMU_BSWAP_ZAP); in zap_create_impl() 876 obj = dmu_object_alloc_hold(os, ot, 1ULL << leaf_blockshift, in zap_create_impl() 882 obj = dmu_object_alloc_hold(os, ot, 1ULL << leaf_blockshift, in zap_create_impl() 892 zap_create_claim(objset_t *os, uint64_t obj, dmu_object_type_t ot, in zap_create_claim() argument 895 return (zap_create_claim_dnsize(os, obj, ot, bonustype, bonuslen, in zap_create_claim() 900 zap_create_claim_dnsize(objset_t *os, uint64_t obj, dmu_object_type_t ot, in zap_create_claim_dnsize() argument 904 0, ot, bonustype, bonuslen, dnodesize, tx)); in zap_create_claim_dnsize() 909 dmu_object_type_t ot, in zap_create_claim_norm() argument 912 return (zap_create_claim_norm_dnsize(os, obj, normflags, ot, bonustype, in zap_create_claim_norm() [all …]
|
| /src/sys/dev/cxgbe/common/ |
| H A D | t4_msg.h | 357 #define OPCODE_TID(cmd) ((cmd)->ot.opcode_tid) 361 #define GET_OPCODE(cmd) ((cmd)->ot.opcode) 677 union opcode_tid ot; member 688 union opcode_tid ot; member 701 union opcode_tid ot; member 708 union opcode_tid ot; member 756 union opcode_tid ot; member 817 union opcode_tid ot; member 966 union opcode_tid ot; member 973 union opcode_tid ot; member [all …]
|
| /src/contrib/openbsm/etc/ |
| H A D | audit_event | 202 211:AUE_AUDIT:audit(2):ot 229 238:AUE_MEMCNTL:memcntl(2):ot 285 294:AUE_BRANDSYS:brandsys(2):ot 308 312:AUE_DARWIN_SETPRIORITY:setpriority(2):pc,ot 344 348:AUE_DARWIN_RESETSHFILE:reset_shared_file():ot 345 349:AUE_DARWIN_NEWSYSTEMSHREG:new_system_share_regions():ot 356 360:AUE_DARWIN_SYSCTL_NONADMIN:sysctl() - non-admin:ot 381 43021:AUE_SYSCTL:sysctl(3):ot 398 43038:AUE_RESETSHFILE:reset_shared_file():ot 399 43039:AUE_NEWSYSTEMSHREG:new_system_share_regions():ot [all …]
|
| H A D | audit_class | 19 0x80000000:ot:miscellaneous
|
| /src/crypto/openssl/include/internal/ |
| H A D | time.h | 144 OSSL_TIME ot; in ossl_time_from_time_t() local 146 ot.t = t; in ossl_time_from_time_t() 147 ot.t *= OSSL_TIME_SECOND; in ossl_time_from_time_t() 148 return ot; in ossl_time_from_time_t()
|
| /src/usr.sbin/pmcstudy/ |
| H A D | pmcstudy.c | 1545 double un, ot, con, res; in otherassistavx() local 1551 ot = oth->vals[pos] * 1.0; in otherassistavx() 1554 ot = oth->sum * 1.0; in otherassistavx() 1557 res = (ot * con)/un; in otherassistavx() 1569 double un, ot, con, res; in otherassistsse() local 1576 ot = oth->vals[pos] * 1.0; in otherassistsse() 1579 ot = oth->sum * 1.0; in otherassistsse() 1582 res = (ot * con)/un; in otherassistsse() 1594 double un, ot, con, res; in efficiency1() local 1601 ot = uops->vals[pos] * 1.0; in efficiency1() [all …]
|
| /src/contrib/processor-trace/libipt/test/src/ |
| H A D | ptunit-event_queue.c | 333 enum pt_event_type ot; in evq_enqueue_other() local 338 ot = (enum pt_event_type) other; in evq_enqueue_other() 339 if (ot != evt) { in evq_enqueue_other() 343 ev->type = ot; in evq_enqueue_other()
|
| /src/crypto/openssl/test/ocsp-tests/ |
| H A D | ND2_Cert_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
|
| 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
|
| /src/bin/sh/tests/builtins/ |
| H A D | cd8.0 | 14 *[Nn]ot\ a\ directory*)
|
| /src/sys/contrib/openzfs/module/os/freebsd/zfs/ |
| H A D | zio_crypt.c | 1616 zio_crypt_init_uios(boolean_t encrypt, uint64_t version, dmu_object_type_t ot, in zio_crypt_init_uios() argument 1624 ASSERT(DMU_OT_IS_ENCRYPTED(ot) || ot == DMU_OT_NONE); in zio_crypt_init_uios() 1627 switch (ot) { in zio_crypt_init_uios() 1670 dmu_object_type_t ot, boolean_t byteswap, uint8_t *salt, uint8_t *iv, in zio_do_crypt_data() argument 1695 key, salt, ot, iv, mac, datalen, in zio_do_crypt_data() 1705 ret = zio_crypt_init_uios(encrypt, key->zk_version, ot, plainbuf, in zio_do_crypt_data() 1773 zio_do_crypt_abd(boolean_t encrypt, zio_crypt_key_t *key, dmu_object_type_t ot, in zio_do_crypt_abd() argument 1788 ret = zio_do_crypt_data(encrypt, key, ot, byteswap, salt, iv, mac, in zio_do_crypt_abd()
|
| /src/sys/contrib/openzfs/module/os/linux/zfs/ |
| H A D | zio_crypt.c | 1860 zio_crypt_init_uios(boolean_t encrypt, uint64_t version, dmu_object_type_t ot, in zio_crypt_init_uios() argument 1868 ASSERT(DMU_OT_IS_ENCRYPTED(ot) || ot == DMU_OT_NONE); in zio_crypt_init_uios() 1871 switch (ot) { in zio_crypt_init_uios() 1913 dmu_object_type_t ot, boolean_t byteswap, uint8_t *salt, uint8_t *iv, in zio_do_crypt_data() argument 1966 ot != DMU_OT_INTENT_LOG && ot != DMU_OT_DNODE) { in zio_do_crypt_data() 1991 ret = zio_crypt_init_uios(encrypt, key->zk_version, ot, plainbuf, in zio_do_crypt_data() 2034 zio_do_crypt_abd(boolean_t encrypt, zio_crypt_key_t *key, dmu_object_type_t ot, in zio_do_crypt_abd() argument 2049 ret = zio_do_crypt_data(encrypt, key, ot, byteswap, salt, iv, mac, in zio_do_crypt_abd()
|
| /src/tools/test/stress2/misc/ |
| H A D | mmap12.sh | 64 * This is the minimum amount of C code ot takes to panic the kernel.
|