HomeSort by: relevance | last modified time | path
    Searched defs:ot (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/tests/lib/libc/sys/
t_getitimer.c 158 struct itimerval it, ot; local
161 ATF_REQUIRE_ERRNO(EINVAL, setitimer(-1, &it, &ot) == -1);
164 ATF_REQUIRE_ERRNO(EINVAL, setitimer(INT_MAX, &it, &ot) == -1);
167 ATF_REQUIRE_ERRNO(EFAULT, setitimer(ITIMER_REAL,(void*)-1, &ot) == -1);
178 struct itimerval it, ot; local
192 ATF_REQUIRE(setitimer(ITIMER_REAL, &it, &ot) == 0);
200 ATF_REQUIRE(setitimer(ITIMER_REAL, &it, &ot) == 0);
203 if (ot.it_value.tv_sec != 4)
  /src/usr.bin/config/
lint.c 71 const struct opt_type *ot = v; local
77 if (ht_lookup(*(ot->ot_ht), name))
80 printf("%s\t%s", ot->ot_name, dl->dl_name);
81 if (ot->ot_type == OT_PARAM) {
103 const struct opt_type *ot = v; local
105 if (ht_lookup(*(ot->ot_ht), name))
108 assert(ot->ot_type != OT_PARAM);
109 printf("%s\t%s\n", ot->ot_name, nv->nv_name);
  /src/external/gpl3/gcc.old/dist/gcc/
optabs-tree.cc 565 optab ot = optab_for_tree_code (code, type, ot_subtype); local
566 return (ot != unknown_optab
567 && optab_handler (ot, TYPE_MODE (type)) != CODE_FOR_nothing);
  /src/sys/arch/ia64/disasm/
disasm_extract.c 188 enum asm_oper_type ot = ASM_OPER_NONE; local
858 ot = ASM_OPER_DTR;
863 ot = ASM_OPER_ITR;
1263 ot = ASM_OPER_CPUID;
1267 ot = ASM_OPER_DBR;
1271 ot = ASM_OPER_IBR;
1275 ot = ASM_OPER_IP;
1279 ot = ASM_OPER_MSR;
1283 ot = ASM_OPER_PKR;
1287 ot = ASM_OPER_PMC
1905 enum asm_oper_type ot; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/include/internal/
time.h 144 OSSL_TIME ot; local
146 ot.t = t;
147 ot.t *= OSSL_TIME_SECOND;
148 return ot;
  /src/external/bsd/ntp/dist/ntpd/
check_y2k.c 492 struct calendar ot; local
520 caljulian( ntp_time, &ot ); /* convert January 1 */
521 if ( ot.year != year
522 || ot.month != 1
523 || ot.monthday != 1 )
529 (int)ot.year, (int)ot.month, (int)ot.monthday );
534 caljulian( ntp_time, &ot ); /* convert Feb 28 */
535 if ( ot.year != yea
574 struct calendar ot; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
optabs-tree.cc 541 optab ot = optab_for_tree_code (code, type, ot_subtype); local
542 return (ot != unknown_optab
543 && optab_handler (ot, TYPE_MODE (type)) != CODE_FOR_nothing);
  /src/external/mpl/bind/dist/tests/dns/
diff_test.c 56 dns_difftuple_t *ot = NULL; local
59 for (ot = ISC_LIST_HEAD(diff->tuples); ot != NULL;
60 ot = ISC_LIST_NEXT(ot, link))
  /src/sys/fs/nfs/common/
nfsrvcache.h 71 } ot; member in union:nfsrvcache::__anon6793
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
  /src/external/mpl/bind/dist/lib/dns/
diff.c 172 dns_difftuple_t *ot, *next_ot; local
189 for (ot = ISC_LIST_HEAD(diff->tuples); ot != NULL; ot = next_ot) {
190 next_ot = ISC_LIST_NEXT(ot, link);
191 if (dns_name_caseequal(&ot->name, &(*tuplep)->name) &&
192 dns_rdata_compare(&ot->rdata, &(*tuplep)->rdata) == 0 &&
193 ot->ttl == (*tuplep)->ttl)
195 ISC_LIST_UNLINK(diff->tuples, ot, link);
199 if ((*tuplep)->op == ot->op)
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
diff.c 156 dns_difftuple_t *ot, *next_ot; local
173 for (ot = ISC_LIST_HEAD(diff->tuples); ot != NULL; ot = next_ot) {
174 next_ot = ISC_LIST_NEXT(ot, link);
175 if (dns_name_caseequal(&ot->name, &(*tuplep)->name) &&
176 dns_rdata_compare(&ot->rdata, &(*tuplep)->rdata) == 0 &&
177 ot->ttl == (*tuplep)->ttl)
179 ISC_LIST_UNLINK(diff->tuples, ot, link);
180 if ((*tuplep)->op == ot->op)
    [all...]
  /src/sys/net/npf/
npf_tableset.c 247 npf_table_t *t, *ot; local
259 ot = npf_tableset_getbyname(ots, t->t_name);
260 if (ot == NULL) {
266 if (t->t_type != ot->t_type) {
275 atomic_inc_uint(&ot->t_refcnt);
276 nts->ts_map[tid] = ot;
279 ot->t_id = tid;
  /src/external/gpl2/xcvs/dist/lib/
mktime.c 461 time_t ot = t + delta * direction; local
462 if ((ot < t) == (direction < 0))
465 ranged_convert (convert, &ot, &otm);
470 t = guess_time_tm (year, yday, hour, min, sec, &ot, &otm);
  /src/external/gpl3/gcc/dist/gcc/cp/
cvt.cc 2196 tree ot = TREE_TYPE (op);
2197 if (same_type_p (ft, ot)
2198 || fnptr_conv_p (ft, ot))
2194 tree ot = TREE_TYPE (op); local
  /src/external/gpl3/gcc.old/dist/gcc/cp/
cvt.cc 2150 tree ot = TREE_TYPE (op);
2151 if (same_type_p (ft, ot)
2152 || fnptr_conv_p (ft, ot))
2148 tree ot = TREE_TYPE (op); local
  /src/external/bsd/openldap/dist/servers/slapd/overlays/
autoca.c 105 char *ot; member in struct:__anon7817
1005 for ( i=0; aca_ocs[i].ot; i++ ) {
1006 code = register_oc( aca_ocs[i].ot, aca_ocs[i].oc, 0 );
accesslog.c 461 char *ot; member in struct:__anon7814
2863 for ( i=0; locs[i].ot; i++ ) {
2866 code = register_oc( locs[i].ot, locs[i].oc, 0 );
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
dsl_scan.c 216 dmu_object_type_t ot = 0; local
268 ot = DMU_OT_ZAP_OTHER;
271 ot ? ot : DMU_OT_SCAN_QUEUE, DMU_OT_NONE, 0, tx);
  /src/external/gpl3/binutils/dist/include/coff/
sym.h 369 unsigned ot: 8; /* optimization type */ member in struct:__anon10403
  /src/external/gpl3/binutils.old/dist/include/coff/
sym.h 369 unsigned ot: 8; /* optimization type */ member in struct:__anon11867
  /src/external/gpl3/gdb/dist/include/coff/
sym.h 369 unsigned ot: 8; /* optimization type */ member in struct:__anon18514
  /src/external/gpl3/gdb.old/dist/include/coff/
sym.h 369 unsigned ot: 8; /* optimization type */ member in struct:__anon21255
  /src/external/bsd/pcc/dist/pcc/cc/ccom/
trees.c 3071 int ot = coptype(o); local
3074 if (ot != LTYPE)
3076 if (ot == BITYPE)
  /src/external/bsd/pcc/dist/pcc/cc/cxxcom/
trees.c 2991 int ot = coptype(o); local
2994 if (ot != LTYPE)
2996 if (ot == BITYPE)
  /src/sys/dev/usb/
uaudio.c 255 const union usb_audio_output_terminal *ot; member in union:io_terminal::__anon3769
938 id = iot[id].d.ot->v1.bSourceId;
1055 d = iot[id].d.ot;
1965 src_id = it->d.ot->v1.bSourceId;
1968 src_id = it->d.ot->v2.bSourceId;
2736 pot = iot[i].d.ot;
2770 (UGETW(iot[i].d.ot->v1.wTerminalType)));
2771 printf("src=%d\n", iot[i].d.ot->v1.bSourceId);
2939 wi == MAKE(iot[i].d.ot->v2.bCSourceId, sc->sc_ac_iface)) {

Completed in 80 milliseconds

1 2