Home | History | Annotate | Download | only in src

Lines Matching refs:temp

35     LVM_INT32 srcval,temp, dInVal, dOutVal;
43 MUL32x16INTO32(srcval,val,temp,15)
46 dOutVal = temp + dInVal;
49 if ((((dOutVal ^ temp) & (dOutVal ^ dInVal)) >> 31)!=0) /* overflow / underflow */
51 if(temp<0)
75 LVM_FLOAT Temp,dInVal;
82 Temp = srcval * val;
85 Temp = Temp + dInVal;
87 if (Temp > 1.000000f)
91 else if (Temp < -1.000000f)
97 *dst = Temp;