Lines Matching defs:SRC
409 #define fCLIP(DST, SRC, U) \ argument
483 #define fBIDIR_SHIFTL(SRC, SHAMT, REGSTYPE) \ argument
486 #define fBIDIR_ASHIFTL(SRC, SHAMT, REGSTYPE) \ argument
488 #define fBIDIR_LSHIFTL(SRC, SHAMT, REGSTYPE) \ argument
490 #define fBIDIR_ASHIFTL_SAT(SRC, SHAMT, REGSTYPE) \ argument
493 #define fBIDIR_SHIFTR(SRC, SHAMT, REGSTYPE) \ argument
496 #define fBIDIR_ASHIFTR(SRC, SHAMT, REGSTYPE) \ argument
498 #define fBIDIR_LSHIFTR(SRC, SHAMT, REGSTYPE) \ argument
500 #define fBIDIR_ASHIFTR_SAT(SRC, SHAMT, REGSTYPE) \ argument
504 #define fASHIFTR(SRC, SHAMT, REGSTYPE) (fCAST##REGSTYPE##s(SRC) >> (SHAMT)) argument
505 #define fLSHIFTR(SRC, SHAMT, REGSTYPE) \ argument
507 #define fROTL(SRC, SHAMT, REGSTYPE) \ argument
511 #define fROTR(SRC, SHAMT, REGSTYPE) \ argument
515 #define fASHIFTL(SRC, SHAMT, REGSTYPE) \ argument
552 #define fSTORE(NUM, SIZE, EA, SRC) MEM_STORE##SIZE(EA, SRC, insn->slot) argument
554 #define fSTORE(NUM, SIZE, EA, SRC) MEM_STORE##SIZE(EA, SRC, slot) argument
558 #define fSTORE_LOCKED(NUM, SIZE, EA, SRC, PRED) \ argument
568 #define fGETBYTE(N, SRC) GETBYTE_FUNC(SRC)(BYTE, N, SRC, true) argument
569 #define fGETUBYTE(N, SRC) GETBYTE_FUNC(SRC)(BYTE, N, SRC, false) argument
571 #define fGETBYTE(N, SRC) ((int8_t)((SRC >> ((N) * 8)) & 0xff)) argument
572 #define fGETUBYTE(N, SRC) ((uint8_t)((SRC >> ((N) * 8)) & 0xff)) argument
582 #define fGETHALF(N, SRC) gen_get_half(HALF, N, SRC, true) argument
583 #define fGETUHALF(N, SRC) gen_get_half(HALF, N, SRC, false) argument
585 #define fGETHALF(N, SRC) ((int16_t)((SRC >> ((N) * 16)) & 0xffff)) argument
586 #define fGETUHALF(N, SRC) ((uint16_t)((SRC >> ((N) * 16)) & 0xffff)) argument
596 #define fGETWORD(N, SRC) \ argument
598 #define fGETUWORD(N, SRC) \ argument
612 #define fGETBIT(N, SRC) (((SRC) >> N) & 1) argument