Searched refs:inv (Results 1 - 25 of 36) sorted by relevance

12

/freebsd-current/contrib/atf/atf-c/detail/
H A Dsanity_test.c51 enum type { inv, pre, post, unreachable }; enumerator in enum:type
67 case inv:
126 case inv:
166 ATF_TC(inv); variable
167 ATF_TC_HEAD(inv, tc)
171 ATF_TC_BODY(inv, tc)
175 do_test(inv, false);
176 do_test(inv, true);
224 ATF_TP_ADD_TC(tp, inv);
/freebsd-current/sys/dev/bhnd/cores/pci/
H A Dbhnd_pci_hostbvar.h252 bool inv; member in struct:bhnd_pcihb_softc::__anon1895
H A Dbhnd_pci_hostb.c354 bool inv; local
357 inv = ((st & BHND_PCIE_PLP_POLARITY_INV) != 0);
358 sc->sdr9_quirk_polarity.inv = inv;
456 if (sc->sdr9_quirk_polarity.inv)
/freebsd-current/contrib/lua/src/
H A Dltm.h90 const TValue *p2, int inv, StkId res, TMS event);
92 int inv, StkId res, TMS event);
96 int inv, int isfloat, TMS event);
H A Dlgc.c480 static int traverseephemeron (global_State *g, Table *h, int inv) { argument
494 /* traverse hash part; if 'inv', traverse descending
497 Node *n = inv ? gnode(h, nsize - 1 - i) : gnode(h, i);
H A Dlvm.c1032 #define op_orderI(L,opi,opf,inv,tm) { \
1045 Protect(cond = luaT_callorderiTM(L, s2v(ra), im, inv, isf, tm)); \
/freebsd-current/lib/msun/src/
H A Ds_tanhl.c85 long double inv, r; local
93 inv = 1 / (d + e);
95 r = (a + b) * inv;
103 r = r + (a - d * r + b - e * r) * inv;
/freebsd-current/crypto/heimdal/lib/wind/
H A Dgen-normalize.py136 inv = dict([(''.join(["%05x" % int(x, 0x10) for x in v[4].split(' ')]), variable
165 for k,v in inv.items():
/freebsd-current/usr.sbin/boot0cfg/
H A Dboot0cfg.c550 int inv, i, x; local
555 if ((inv = !strncmp(q, "no", 2)))
563 inv ^= 1;
565 if (inv)
/freebsd-current/usr.bin/mkesdb/
H A Dyacc.y227 set_invalid(u_int32_t inv)
230 invalid = inv;
/freebsd-current/sys/contrib/rdma/krping/
H A Dkrping.c774 struct ib_send_wr inv; local
804 cb->rdma_sq_wr.wr.next = &inv;
805 memset(&inv, 0, sizeof inv);
806 inv.opcode = IB_WR_LOCAL_INV;
807 inv.ex.invalidate_rkey = cb->reg_mr->rkey;
808 inv.send_flags = IB_SEND_FENCE;
840 DEBUG_LOG("send-w-inv rkey 0x%x\n", cb->remote_rkey);
897 DEBUG_LOG("send-w-inv rkey 0x%x\n", cb->remote_rkey);
1776 struct ib_send_wr inv; local
[all...]
/freebsd-current/crypto/openssl/crypto/aes/asm/
H A Dvpaes-ppc.pl78 .long 0x01020300, 0x05060704, 0x090a0b08, 0x0d0e0f0c ?inv
79 .long 0x05060704, 0x090a0b08, 0x0d0e0f0c, 0x01020300 ?inv
80 .long 0x090a0b08, 0x0d0e0f0c, 0x01020300, 0x05060704 ?inv
81 .long 0x0d0e0f0c, 0x01020300, 0x05060704, 0x090a0b08 ?inv
83 .long 0x03000102, 0x07040506, 0x0b08090a, 0x0f0c0d0e ?inv
84 .long 0x0f0c0d0e, 0x03000102, 0x07040506, 0x0b08090a ?inv
85 .long 0x0b08090a, 0x0f0c0d0e, 0x03000102, 0x07040506 ?inv
86 .long 0x07040506, 0x0b08090a, 0x0f0c0d0e, 0x03000102 ?inv
88 .long 0x00010203, 0x04050607, 0x08090a0b, 0x0c0d0e0f ?inv
89 .long 0x00050a0f, 0x04090e03, 0x080d0207, 0x0c01060b ?inv
[all...]
/freebsd-current/sys/dev/sound/pcm/
H A Dac97.c881 int ea, inv, err = 0; local
889 inv = (codec->flags & AC97_F_EAPD_INV) ? 0 : 1;
890 ea = (val >> 15) ^ inv;
896 if (ea != ((val >> 15) ^ inv)) {
/freebsd-current/contrib/llvm-project/clang/lib/AST/Interp/
H A DBoolean.h145 static bool inv(Boolean A, Boolean *R) { function in class:clang::interp::final
/freebsd-current/sys/dev/sound/pci/hda/
H A Dhdac.c270 int i = 0, j, k, len, inv; local
296 inv = 2;
298 inv = 0;
299 for (k = 0; len > inv && k < nitems(hdac_quirks_tab); k++) {
300 if (strncmp(res + i + inv,
301 hdac_quirks_tab[k].key, len - inv) != 0)
303 if (len - inv != strlen(hdac_quirks_tab[k].key))
306 printf(" %s%s", (inv != 0) ? "no" : "",
309 if (inv == 0) {
312 } else if (inv !
[all...]
H A Dhdaa.c1257 int i = 0, j, len, inv; local
1271 inv = 2;
1273 inv = 0;
1274 for (k = 0; len > inv && k < nitems(hdaa_quirks_tab); k++) {
1275 if (strncmp(str + i + inv,
1276 hdaa_quirks_tab[k].key, len - inv) != 0)
1278 if (len - inv != strlen(hdaa_quirks_tab[k].key))
1280 if (inv == 0) {
/freebsd-current/lib/libpmc/pmu-events/
H A Djevents.c564 char *inv = NULL; local
591 addfield(map, &inv, "", "inv=", val);
704 if (inv)
705 addfield(map, &event, ",", inv, NULL);
741 free(inv);
/freebsd-current/sys/dev/nctgpio/
H A Dnctgpio.c115 uint8_t inv[NCT_MAX_GROUP + 1]; /* inversion, 1: inverted */ member in struct:nct_softc::__anon3696
759 case NCT_IO_INV: return ("inv");
820 case REG_INV: return ("inv");
902 cache = &sc->cache.inv[group];
940 return (nct_get_pin_cache(sc, pin_num, sc->cache.inv));
1222 sc->cache.inv[gp->grpnum] = nct_read_reg(sc, REG_INV, gp->grpnum);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h488 /// If this value has an exact multiplicative inverse, store it in inv and
490 bool getExactInverse(APFloat *inv) const;
760 bool getExactInverse(APFloat *inv) const;
1334 bool getExactInverse(APFloat *inv) const {
1335 APFLOAT_DISPATCH_ON_SEMANTICS(getExactInverse(inv));
/freebsd-current/contrib/ntp/ntpd/
H A Drefclock_nmea.c309 char tag, int inv);
1613 int inv
1621 return table[ *dp && ((*dp == tag) == !inv) ];
/freebsd-current/crypto/openssh/
H A Dssh-pkcs11-client.c327 ecdsa_do_sign(const unsigned char *dgst, int dgst_len, const BIGNUM *inv, argument
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp4266 bool IEEEFloat::getExactInverse(APFloat *inv) const {
4289 if (inv)
4290 *inv = APFloat(reciprocal, *semantics);
5108 bool DoubleAPFloat::getExactInverse(APFloat *inv) const {
5111 if (!inv)
5115 *inv = APFloat(semPPCDoubleDouble, Inv.bitcastToAPInt());
/freebsd-current/sys/dev/cxgbe/iw_cxgbe/
H A Dqp.c563 wqe->inv.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey);
564 wqe->inv.r2 = 0;
565 *len16 = DIV_ROUND_UP(sizeof wqe->inv, 16);
H A Dt4.h120 struct fw_ri_inv_lstag_wr inv; member in union:t4_wr
/freebsd-current/contrib/ofed/libcxgb4/
H A Dt4.h131 struct fw_ri_inv_lstag_wr inv; member in union:t4_wr

Completed in 400 milliseconds

12