Lines Matching refs:xva_reqattrmap
119 * size of the array before it, xva_reqattrmap[], could change which means
123 * xva_reqattrmap[] - Array of requested attributes. Attributes are
135 * These values are only valid if the corresponding bits in xva_reqattrmap
143 uint32_t xva_reqattrmap[XVA_MAPSIZE]; /* Requested attrs */
260 * requested attribute map array (xva_reqattrmap[]). Its location changes
269 * of requested attributes (xva_reqattrmap[]).
274 (xvap)->xva_reqattrmap[XVA_INDEX(attr)] |= XVA_ATTRBIT(attr); \
278 * of requested attributes (xva_reqattrmap[]).
283 (xvap)->xva_reqattrmap[XVA_INDEX(attr)] &= ~XVA_ATTRBIT(attr); \
297 * XVA_ISSET_REQ() checks the requested attribute bitmap (xva_reqattrmap[])
304 ((xvap)->xva_reqattrmap[XVA_INDEX(attr)] & XVA_ATTRBIT(attr)) : 0)