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

1 2

  /src/external/bsd/ipf/dist/lib/
ipf_dotuning.c 21 ipftune_t tu; local
24 bzero((char *)&tu, sizeof(tu));
26 obj.ipfo_size = sizeof(tu);;
27 obj.ipfo_ptr = (void *)&tu;
38 if (tu.ipft_cookie == NULL)
41 tu.ipft_name[sizeof(tu.ipft_name) - 1] = '\0';
42 printtunable(&tu);
45 tu.ipft_cookie = NULL
    [all...]
  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
dtime.c 44 GFC_REAL_4 tu, ts, tt; local
52 tu = (GFC_REAL_4) ((user_sec - us) + 1.e-6 * (user_usec - uu));
54 tt = tu + ts;
62 tu = -1;
69 *tp = tu;
etime.c 35 GFC_REAL_4 tu, ts, tt, *tp; local
43 tu = (GFC_REAL_4)(user_sec + 1.e-6 * user_usec);
45 tt = tu + ts;
49 tu = (GFC_REAL_4)-1.0;
56 *tp = tu;
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
dtime.c 44 GFC_REAL_4 tu, ts, tt; local
52 tu = (GFC_REAL_4) ((user_sec - us) + 1.e-6 * (user_usec - uu));
54 tt = tu + ts;
62 tu = -1;
69 *tp = tu;
etime.c 35 GFC_REAL_4 tu, ts, tt, *tp; local
43 tu = (GFC_REAL_4)(user_sec + 1.e-6 * user_usec);
45 tt = tu + ts;
49 tu = (GFC_REAL_4)-1.0;
56 *tp = tu;
  /src/external/bsd/elftoolchain/dist/libdwarf/
libdwarf_info.c 64 Dwarf_CU tu; local
68 tu = STAILQ_FIRST(&dbg->dbg_tu);
69 if (tu != NULL) {
70 dbg->dbg_tu_current = tu;
  /src/external/bsd/wpa/dist/src/p2p/
p2p_dev_disc.c 262 * Peer is expected to be awake for at least 100 TU; try to
312 unsigned int tu; local
315 p2p_dbg(p2p, "Received GO Discoverability Request - remain awake for 100 TU");
321 /* Remain awake 100 TU on operating channel */
323 tu = 100;
324 if (p2p->cfg->start_listen(p2p->cfg->cb_ctx, rx_freq, 1024 * tu / 1000,
p2p.c 255 unsigned int r, tu; local
276 tu = (r % ((p2p->max_disc_int - p2p->min_disc_int) + 1) +
278 if (p2p->max_disc_tu >= 0 && tu > (unsigned int) p2p->max_disc_tu)
279 tu = p2p->max_disc_tu;
280 if (!dev_disc && tu < 100)
281 tu = 100; /* Need to wait in non-device discovery use cases */
282 if (p2p->cfg->max_listen && 1024 * tu / 1000 > p2p->cfg->max_listen)
283 tu = p2p->cfg->max_listen * 1000 / 1024;
285 if (tu == 0) {
286 p2p_dbg(p2p, "Skip listen state since duration was 0 TU");
    [all...]
  /src/external/lgpl3/mpfr/dist/tests/
tset_si.c 332 * integers (see ts[] and tu[]): x = t?[i] + j/4, where '?' is 's' or
340 unsigned long tu[3] = { 0, ULONG_MAX, 17 }; local
359 odd = (s ? (unsigned long) ts[i] : tu[i]) & 1;
362 mpfr_set_ui (x, tu[i], MPFR_RNDN);
443 tu, mpfr_get_ui, "u", "u");
  /src/external/bsd/wpa/dist/src/ap/
ieee802_11_shared.c 39 u32 timeout, tu; local
45 tu = (passed.sec * 1000000 + passed.usec) / 1024;
46 if (hapd->conf->assoc_sa_query_max_timeout > tu)
47 timeout = hapd->conf->assoc_sa_query_max_timeout - tu;
sta_info.c 1350 u32 tu; local
1354 tu = (passed.sec * 1000000 + passed.usec) / 1024;
1355 if (hapd->conf->assoc_sa_query_max_timeout < tu) {
  /src/sys/dev/pci/
twe.c 1747 struct twe_usercommand *tu; local
1755 tu = (struct twe_usercommand *)data;
1768 if (tu->tu_size > 0) {
1773 if (tu->tu_size > TWE_SECTOR_SIZE) {
1776 device_xname(twe->sc_dev), tu->tu_size);
1781 error = copyin(tu->tu_data, pdata, tu->tu_size);
1799 memcpy(ccb->ccb_cmd, &tu->tu_cmd, sizeof(struct twe_cmd));
1819 memcpy(&tu->tu_cmd, ccb->ccb_cmd, sizeof(struct twe_cmd));
1823 tu->tu_cmd.tc_opcode, tu->tu_cmd.tc_status)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
atom.h 130 u8 tu:6; member in struct:nv50_head_atom::__anon5117
  /src/sys/net/
bridgestp.c 594 struct bstp_tcn_unit tu; local
625 tu.tu_message_type = tpdu.tbu_bpdutype;
628 bstp_received_tcn_bpdu(sc, bif, &tu);
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_display.h 305 u32 tu; member in struct:intel_link_m_n
  /src/external/bsd/wpa/dist/wpa_supplicant/
sme.c 3315 u32 tu; local
3319 tu = (passed.sec * 1000000 + passed.usec) / 1024;
3320 if (sa_query_max_timeout < tu) {
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
index-write.c 669 enum class unit_kind { cu, tu }; enumerator in enum:unit_kind
737 ? unit_kind::tu
1439 /* local_type_unit_count - The number of TUs in the local TU
1443 /* foreign_type_unit_count - The number of TUs in the foreign TU
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
index-write.c 674 enum class unit_kind { cu, tu }; enumerator in enum:unit_kind
729 ? unit_kind::tu
1315 - .gdb_index doesn't require the TU list to be sorted, and DWARF 5
1496 /* local_type_unit_count - The number of TUs in the local TU
1500 /* foreign_type_unit_count - The number of TUs in the foreign TU
  /src/sys/external/bsd/ipf/netinet/
fil.c 7077 ipftune_t tu; local
7081 error = ipf_inobj(softc, data, NULL, &tu, IPFOBJ_TUNEABLE);
7085 tu.ipft_name[sizeof(tu.ipft_name) - 1] = '\0';
7086 cookie = tu.ipft_cookie;
7103 cookie, &tu.ipft_cookie);
7106 tu.ipft_cookie = ta + 1;
7113 if (ta->ipft_sz > sizeof(tu.ipft_un)) {
7118 tu.ipft_vlong = 0;
7120 tu.ipft_vlong = *ta->ipft_plong
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/
schema_init.c 3877 struct berval *tu,
3977 tu->bv_val = x.bv_val;
3978 tu->bv_len = 0;
3980 for ( ; tu->bv_len < x.bv_len; tu->bv_len++ ) {
3981 if ( tu->bv_val[tu->bv_len] == '"' ) {
3985 if ( tu->bv_len < STRLENOF("YYYYmmddHHmmssZ") ) return LDAP_INVALID_SYNTAX;
3987 x.bv_val += tu->bv_len + 1;
3988 x.bv_len -= tu->bv_len + 1
4044 struct berval i, tu; local
4082 struct berval i, tu, ni = BER_BVNULL; local
4147 struct berval i, ni, tu, tu2; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
asan.cc 3327 const_tree tu = get_ultimate_context ((const_tree)decl); local
3328 if (tu != NULL_TREE)
3329 pp_string (&module_name_pp, IDENTIFIER_POINTER (DECL_NAME (tu)));
4682 /* Insert module initialization into this TU. This initialization calls the
tree.cc 5461 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
5463 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
5464 vec_safe_push (all_translation_units, tu);
5465 return tu;
5444 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL, local
  /src/external/gpl3/gcc.old/dist/gcc/
asan.cc 3279 const_tree tu = get_ultimate_context ((const_tree)decl); local
3280 if (tu != NULL_TREE)
3281 pp_string (&module_name_pp, IDENTIFIER_POINTER (DECL_NAME (tu)));
4617 /* Insert module initialization into this TU. This initialization calls the
tree.cc 5421 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL,
5423 TRANSLATION_UNIT_LANGUAGE (tu) = lang_hooks.name;
5424 vec_safe_push (all_translation_units, tu);
5425 return tu;
5404 tree tu = build_decl (UNKNOWN_LOCATION, TRANSLATION_UNIT_DECL, local
  /src/external/lgpl3/gmp/dist/mini-gmp/
mini-gmp.c 2712 mpz_t tu, tv;
2726 mpz_init (tu);
2729 mpz_abs (tu, u);
2730 uz = mpz_make_odd (tu);
2735 if (tu->_mp_size < tv->_mp_size)
2736 mpz_swap (tu, tv);
2738 mpz_tdiv_r (tu, tu, tv);
2739 if (tu->_mp_size == 0)
2748 mpz_make_odd (tu);
2699 mpz_t tu, tv; local
2762 mpz_t tu, tv, s0, s1, t0, t1; local
    [all...]

Completed in 106 milliseconds

1 2