Lines Matching defs:A

194 #define fMAX(A, B) (((A) > (B)) ? (A) : (B))  argument
196 #define fMIN(A, B) (((A) < (B)) ? (A) : (B)) argument
198 #define fABS(A) (((A) < 0) ? (-(A)) : (A)) argument
277 #define fADDSAT64(DST, A, B) \ argument
360 #define fCHECK_PCALIGN(A) argument
362 #define fWRITE_NPC(A) write_new_pc(env, pkt_has_multi_cof != 0, A) argument
372 #define fCAST4u(A) ((uint32_t)(A)) argument
373 #define fCAST4s(A) ((int32_t)(A)) argument
374 #define fCAST8u(A) ((uint64_t)(A)) argument
375 #define fCAST8s(A) ((int64_t)(A)) argument
376 #define fCAST2_2s(A) ((int16_t)(A)) argument
377 #define fCAST2_2u(A) ((uint16_t)(A)) argument
378 #define fCAST4_4s(A) ((int32_t)(A)) argument
379 #define fCAST4_4u(A) ((uint32_t)(A)) argument
380 #define fCAST4_8s(A) ((int64_t)((int32_t)(A))) argument
381 #define fCAST4_8u(A) ((uint64_t)((uint32_t)(A))) argument
382 #define fCAST8_8s(A) ((int64_t)(A)) argument
383 #define fCAST8_8u(A) ((uint64_t)(A)) argument
384 #define fCAST2_8s(A) ((int64_t)((int16_t)(A))) argument
385 #define fCAST2_8u(A) ((uint64_t)((uint16_t)(A))) argument
386 #define fZE8_16(A) ((int16_t)((uint8_t)(A))) argument
387 #define fSE8_16(A) ((int16_t)((int8_t)(A))) argument
388 #define fSE16_32(A) ((int32_t)((int16_t)(A))) argument
389 #define fZE16_32(A) ((uint32_t)((uint16_t)(A))) argument
390 #define fSE32_64(A) ((int64_t)((int32_t)(A))) argument
391 #define fZE32_64(A) ((uint64_t)((uint32_t)(A))) argument
392 #define fSE8_32(A) ((int32_t)((int8_t)(A))) argument
393 #define fZE8_32(A) ((int32_t)((uint8_t)(A))) argument
394 #define fMPY8UU(A, B) (int)(fZE8_16(A) * fZE8_16(B)) argument
395 #define fMPY8US(A, B) (int)(fZE8_16(A) * fSE8_16(B)) argument
396 #define fMPY8SU(A, B) (int)(fSE8_16(A) * fZE8_16(B)) argument
397 #define fMPY8SS(A, B) (int)((short)(A) * (short)(B)) argument
398 #define fMPY16SS(A, B) fSE32_64(fSE16_32(A) * fSE16_32(B)) argument
399 #define fMPY16UU(A, B) fZE32_64(fZE16_32(A) * fZE16_32(B)) argument
400 #define fMPY16SU(A, B) fSE32_64(fSE16_32(A) * fZE16_32(B)) argument
401 #define fMPY16US(A, B) fMPY16SU(B, A) argument
402 #define fMPY32SS(A, B) (fSE32_64(A) * fSE32_64(B)) argument
403 #define fMPY32UU(A, B) (fZE32_64(A) * fZE32_64(B)) argument
404 #define fMPY32SU(A, B) (fSE32_64(A) * fZE32_64(B)) argument
405 #define fMPY3216SS(A, B) (fSE32_64(A) * fSXTN(16, 64, B)) argument
406 #define fMPY3216SU(A, B) (fSE32_64(A) * fZXTN(16, 64, B)) argument
407 #define fROUND(A) (A + 0x8000) argument
414 #define fCRND(A) ((((A) & 0x3) == 0x3) ? ((A) + 1) : ((A))) argument
415 #define fRNDN(A, N) ((((N) == 0) ? (A) : (((fSE32_64(A)) + (1 << ((N) - 1)))))) argument
416 #define fCRNDN(A, N) (conv_round(A, N)) argument
417 #define fADD128(A, B) (int128_add(A, B)) argument
418 #define fSUB128(A, B) (int128_sub(A, B)) argument
419 #define fSHIFTR128(A, B) (int128_rshift(A, B)) argument
420 #define fSHIFTL128(A, B) (int128_lshift(A, B)) argument
421 #define fAND128(A, B) (int128_and(A, B)) argument
422 #define fCAST8S_16S(A) (int128_exts64(A)) argument
423 #define fCAST16S_8S(A) (int128_getlo(A)) argument
471 #define fSCALE(N, A) (((int64_t)(A)) << N) argument
472 #define fVSATW(A) fVSATN(32, ((long long)A)) argument
473 #define fSATW(A) fSATN(32, ((long long)A)) argument
474 #define fVSAT(A) fVSATN(32, (A)) argument
475 #define fSAT(A) fSATN(32, (A)) argument
476 #define fSAT_ORIG_SHL(A, ORIG_REG) \ argument
481 #define fPASS(A) A argument
629 #define fHIDE(A) A argument
630 #define fCONSTLL(A) A##LL argument
631 #define fECHO(A) (A) argument