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

  /src/sys/dev/ic/
arn9280.c 594 int8_t pdadc, txgain, tcomp; local
608 tcomp = (pdadc - sc->sc_pdadc + 4) / 8;
610 tcomp = (pdadc - sc->sc_pdadc + 5) / 10;
611 DPRINTFN(DBG_RF, sc, "OLPC temp compensation=%d\n", tcomp);
613 if (tcomp == sc->sc_tcomp)
615 sc->sc_tcomp = tcomp;
619 txgain = sc->sc_tx_gain_tbl[i] - tcomp;
arn9287.c 560 int8_t pdadc, slope, tcomp; local
576 tcomp = ((pdadc - sc->sc_pdadc) * 4) / slope;
578 tcomp = 0;
579 DPRINTFN(DBG_RF, sc, "OLPC temp compensation=%d\n", tcomp);
583 reg = RW(reg, AR_PHY_TX_PWRCTRL_OLPC_TEMP_COMP, tcomp);
587 reg = RW(reg, AR_PHY_TX_PWRCTRL_OLPC_TEMP_COMP, tcomp);
  /src/sys/netipsec/
xform_ipcomp.c 101 const struct comp_algo *tcomp; local
106 tcomp = ipcomp_algorithm_lookup(sav->alg_enc);
107 if (tcomp == NULL) {
114 sav->tdb_compalgxform = tcomp;
  /src/sys/opencrypto/
cryptodev.c 119 const struct comp_algo *tcomp; member in struct:csession
547 if (cse->tcomp == NULL && cse->txform == NULL && cse->thash == NULL)
552 if ((cse->tcomp) && cop->dst_len) {
561 crp = crypto_getreq((cse->tcomp != NULL)
570 /* crds are always ordered tcomp, thash, then txform */
577 if (cse->tcomp) {
588 } else if (!cse->tcomp) {
1023 const struct auth_hash *thash, const struct comp_algo *tcomp)
1042 cse->tcomp = tcomp;
1507 const struct comp_algo *tcomp = NULL; local
    [all...]

Completed in 20 milliseconds