Lines Matching refs:pow
130 int j, pow; in yura_hash() local
134 for (pow = 1, i = 1; i < len; i++) in yura_hash()
135 pow = pow * 10; in yura_hash()
140 a = (msg[0] - 48) * pow; in yura_hash()
144 for (pow = 1, j = i; j < len - 1; j++) in yura_hash()
145 pow = pow * 10; in yura_hash()
146 a = a + c * pow; in yura_hash()
151 for (pow = 1, j = i; j < len - 1; j++) in yura_hash()
152 pow = pow * 10; in yura_hash()
153 a = a + c * pow; in yura_hash()
158 for (pow = 1, j = i; j < len - 1; j++) in yura_hash()
159 pow = pow * 10; in yura_hash()
160 a = a + c * pow; in yura_hash()