Home | History | Annotate | Download | only in src

Lines Matching refs:temp

33     LVM_INT32 temp,mVal,sVal;
45 temp = mVal + sVal;
47 if (temp > 0x00007FFF)
51 else if (temp < -0x00008000)
57 *dst = (LVM_INT16)temp;
61 temp = mVal - sVal;
63 if (temp > 0x00007FFF)
67 else if (temp < -0x00008000)
73 *dst = (LVM_INT16)temp;
86 LVM_FLOAT temp,mVal,sVal;
98 temp = mVal + sVal;
100 if (temp > 1.0f)
104 else if (temp < -1.0f)
110 *dst = (LVM_FLOAT)temp;
114 temp = mVal - sVal;
116 if (temp > 1.0f)
120 else if (temp < -1.0f)
126 *dst = (LVM_FLOAT)temp;