Lines Matching full:step
45 /* +0 - +3, decrease step size */
46 /* +4 - +7, increase step size */
47 /* -0 - -3, decrease step size */
48 /* -4 - -7, increase step size */
95 int step,dp,c,cm; in ImaExpandS() local
105 step = imaStepSizeTable[state]; in ImaExpandS()
111 if (c & 4) dp += step; in ImaExpandS()
112 step = step >> 1; in ImaExpandS()
113 if (c & 2) dp += step; in ImaExpandS()
114 step = step >> 1; in ImaExpandS()
115 if (c & 1) dp += step; in ImaExpandS()
116 step = step >> 1; in ImaExpandS()
117 dp += step; in ImaExpandS()
193 int step,d,dp,c; in ImaMashS() local
197 step = imaStepSizeTable[state]; in ImaMashS()
198 c = (abs(d)<<2)/step; in ImaMashS()
217 if (c & 4) dp += step; in ImaMashS()
218 step = step >> 1; in ImaMashS()
219 if (c & 2) dp += step; in ImaMashS()
220 step = step >> 1; in ImaMashS()
221 if (c & 1) dp += step; in ImaMashS()
222 step = step >> 1; in ImaMashS()
223 dp += step; in ImaMashS()