Lines Matching refs:INC

180 #define BxW_LOAD_pr(SZ, RES, PTR, INC) \  argument
185 : "r"(INC) \
187 #define BxW_LOAD_pr_Z(RES, PTR, INC) \ argument
188 BxW_LOAD_pr(ubh, RES, PTR, INC)
189 #define BxW_LOAD_pr_S(RES, PTR, INC) \ argument
190 BxW_LOAD_pr(bh, RES, PTR, INC)
271 #define BxW_LOAD_pi(SZ, RES, PTR, INC) \ argument
273 "%0 = mem" #SZ "(%1++#" #INC ")\n\t" \
275 #define BxW_LOAD_pi_Z(RES, PTR, INC) \ argument
276 BxW_LOAD_pi(ubh, RES, PTR, INC)
277 #define BxW_LOAD_pi_S(RES, PTR, INC) \ argument
278 BxW_LOAD_pi(bh, RES, PTR, INC)
280 #define TEST_pi(NAME, TYPE, SIGN, INC, EXT, RES1, RES2, RES3, RES4) \ argument
286 BxW_LOAD_pi_##SIGN(result, ptr, (INC)); \
288 checkp(ptr, &buf[1 * (INC)]); \
289 BxW_LOAD_pi_##SIGN(result, ptr, (INC)); \
291 checkp(ptr, &buf[2 * (INC)]); \
292 BxW_LOAD_pi_##SIGN(result, ptr, (INC)); \
294 checkp(ptr, &buf[3 * (INC)]); \
295 BxW_LOAD_pi_##SIGN(result, ptr, (INC)); \
297 checkp(ptr, &buf[4 * (INC)]); \
315 #define BxW_LOAD_pci(SZ, RES, PTR, START, LEN, INC) \ argument
320 "%0 = mem" #SZ "(%1++#" #INC ":circ(m0))\n\t" \
324 #define BxW_LOAD_pci_Z(RES, PTR, START, LEN, INC) \ argument
325 BxW_LOAD_pci(ubh, RES, PTR, START, LEN, INC)
326 #define BxW_LOAD_pci_S(RES, PTR, START, LEN, INC) \ argument
327 BxW_LOAD_pci(bh, RES, PTR, START, LEN, INC)
329 #define TEST_pci(NAME, TYPE, SIGN, LEN, INC, EXT, RES1, RES2, RES3, RES4) \ argument
335 BxW_LOAD_pci_##SIGN(result, ptr, buf, (LEN), (INC)); \
337 checkp(ptr, &buf[(1 * (INC)) % (LEN)]); \
338 BxW_LOAD_pci_##SIGN(result, ptr, buf, (LEN), (INC)); \
340 checkp(ptr, &buf[(2 * (INC)) % (LEN)]); \
341 BxW_LOAD_pci_##SIGN(result, ptr, buf, (LEN), (INC)); \
343 checkp(ptr, &buf[(3 * (INC)) % (LEN)]); \
344 BxW_LOAD_pci_##SIGN(result, ptr, buf, (LEN), (INC)); \
346 checkp(ptr, &buf[(4 * (INC)) % (LEN)]); \
364 #define BxW_LOAD_pcr(SZ, RES, PTR, START, LEN, INC) \ argument
371 : "r"((((INC) & 0x7f) << 17) | ((LEN) & 0x1ffff)), \
374 #define BxW_LOAD_pcr_Z(RES, PTR, START, LEN, INC) \ argument
375 BxW_LOAD_pcr(ubh, RES, PTR, START, LEN, INC)
376 #define BxW_LOAD_pcr_S(RES, PTR, START, LEN, INC) \ argument
377 BxW_LOAD_pcr(bh, RES, PTR, START, LEN, INC)
379 #define TEST_pcr(NAME, TYPE, SIGN, SIZE, LEN, INC, \ argument
386 BxW_LOAD_pcr_##SIGN(result, ptr, buf, (LEN), (INC)); \
388 checkp(ptr, &buf[(1 * (INC) * (SIZE)) % (LEN)]); \
389 BxW_LOAD_pcr_##SIGN(result, ptr, buf, (LEN), (INC)); \
391 checkp(ptr, &buf[(2 * (INC) * (SIZE)) % (LEN)]); \
392 BxW_LOAD_pcr_##SIGN(result, ptr, buf, (LEN), (INC)); \
394 checkp(ptr, &buf[(3 * (INC) * (SIZE)) % (LEN)]); \
395 BxW_LOAD_pcr_##SIGN(result, ptr, buf, (LEN), (INC)); \
397 checkp(ptr, &buf[(4 * (INC) * (SIZE)) % (LEN)]); \