Lines Matching defs:prdt
408 utrd->prdt = utrd->resp_upiu + utrd->size_resp_upiu;
427 prdt_t *prdt;
495 prdt = (prdt_t *)utrd->prdt;
499 if ((uintptr_t)prdt + sizeof(prdt_t) > desc_limit) {
503 prdt->dba = (unsigned int)(buf & UINT32_MAX);
504 prdt->dbau = (unsigned int)((buf >> 32) & UINT32_MAX);
505 /* prdt->dbc counts from 0 */
507 prdt->dbc = MAX_PRDT_SIZE - 1;
510 prdt->dbc = length - 1;
514 prdt++;
521 prdt_end = utrd->prdt + utrd->prdt_length * sizeof(prdt_t);
704 INFO("prdt[%lx]:0x%x\n",
705 utrd->prdt + i,
706 *(unsigned int *)(utrd->prdt + i));