Home
last modified time | relevance | path

Searched refs:fRNDN (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/target/hexagon/idef-parser/
H A Didef-parser.lex176 "fRNDN" { return ROUND; }
/openbmc/qemu/target/hexagon/imported/
H A Dalu.idef1119 Q6INSN(A4_round_ri,"Rd32=round(Rs32,#u5)",ATTRIBS(),"Round", {RdV = fRNDN(RsV,uiV)>>uiV; })
1120 Q6INSN(A4_round_rr,"Rd32=round(Rs32,Rt32)",ATTRIBS(),"Round", {RdV = fRNDN(RsV,fZXTN(5,32,RtV))>>fZ…
1121 Q6INSN(A4_round_ri_sat,"Rd32=round(Rs32,#u5):sat",ATTRIBS(),"Round", {RdV = (fSAT(fRNDN(RsV,uiV)))>…
1122 Q6INSN(A4_round_rr_sat,"Rd32=round(Rs32,Rt32):sat",ATTRIBS(),"Round", {RdV = (fSAT(fRNDN(RsV,fZXTN(…
H A Dmacros.def818 fRNDN, /* Rounding to a boundary */
/openbmc/qemu/target/hexagon/
H A Dmacros.h415 #define fRNDN(A, N) ((((N) == 0) ? (A) : (((fSE32_64(A)) + (1 << ((N) - 1)))))) macro