HomeSort by: relevance | last modified time | path
    Searched defs:tnc (Results 1 - 8 of 8) sorted by relevancy

  /src/external/lgpl3/gmp/dist/mpn/generic/
lshift.c 46 unsigned int tnc; local
58 tnc = GMP_NUMB_BITS - cnt;
60 retval = low_limb >> tnc;
66 *--rp = high_limb | (low_limb >> tnc);
lshiftc.c 47 unsigned int tnc; local
59 tnc = GMP_NUMB_BITS - cnt;
61 retval = low_limb >> tnc;
67 *--rp = (~(high_limb | (low_limb >> tnc))) & GMP_NUMB_MASK;
rshift.c 46 unsigned int tnc; local
55 tnc = GMP_NUMB_BITS - cnt;
57 retval = (high_limb << tnc) & GMP_NUMB_MASK;
63 *rp++ = low_limb | ((high_limb << tnc) & GMP_NUMB_MASK);
  /src/external/bsd/wpa/dist/hostapd/
main.c 516 int tnc = 0; local
519 for (i = 0; !tnc && i < ifaces->count; i++) {
521 if (ifaces->iface[i]->bss[0]->conf->tnc) {
522 tnc++;
528 if (tnc && tncs_global_init() < 0) {
  /src/external/bsd/wpa/dist/src/eap_server/
eap.h 228 * tnc - Trusted Network Connect (TNC)
230 * This controls whether TNC is enabled and will be required before the
233 * allowed to connect without TNC.
235 int tnc; member in struct:eap_config
  /src/crypto/external/bsd/heimdal/dist/lib/hx509/
cert.c 1684 NameConstraints tnc; local
1687 ret = find_extension_name_constraints(c, &tnc);
1706 ret = copy_NameConstraints(&tnc, &nc->val[nc->len]);
1714 free_NameConstraints(&tnc);
  /src/external/lgpl3/gmp/dist/mini-gmp/
mini-gmp.c 651 unsigned int tnc;
661 tnc = GMP_LIMB_BITS - cnt;
663 retval = low_limb >> tnc;
669 *--rp = high_limb | (low_limb >> tnc);
681 unsigned int tnc;
688 tnc = GMP_LIMB_BITS - cnt;
690 retval = (high_limb << tnc);
696 *rp++ = low_limb | (high_limb << tnc);
648 unsigned int tnc; local
678 unsigned int tnc; local
  /src/external/bsd/wpa/dist/src/ap/
ap_config.h 454 int tnc; member in struct:hostapd_bss_config

Completed in 25 milliseconds