Lines Matching defs:opins_d
1905 struct io_pin opins[MAX_PINS], opins_d[MAX_PINS];
1966 opins_d[nopins_d].nid = w->nid;
1967 opins_d[nopins_d].conv = conv;
1968 opins_d[nopins_d].prio = prio;
2040 this->opins_d = mallocarray(nopins_d, sizeof(struct io_pin), M_DEVBUF,
2042 if (this->opins_d == NULL)
2047 if (this->opins_d[j].prio > opins_d[i].prio)
2050 this->opins_d[k] = this->opins_d[k - 1];
2052 this->opins_d[j] = opins_d[i];
2102 printf(" 0x%2.2x->0x%2.2x", this->opins_d[i].nid,
2103 this->opins_d[i].conv);
2616 if (this->opins_d != NULL) {
2617 free(this->opins_d, M_DEVBUF,
2619 this->opins_d = NULL;