Lines Matching refs:pow
135 int j, pow; in yura_hash() local
139 for (pow = 1, i = 1; i < len; i++) in yura_hash()
140 pow = pow * 10; in yura_hash()
145 a = (msg[0] - 48) * pow; in yura_hash()
149 for (pow = 1, j = i; j < len - 1; j++) in yura_hash()
150 pow = pow * 10; in yura_hash()
151 a = a + c * pow; in yura_hash()
156 for (pow = 1, j = i; j < len - 1; j++) in yura_hash()
157 pow = pow * 10; in yura_hash()
158 a = a + c * pow; in yura_hash()
163 for (pow = 1, j = i; j < len - 1; j++) in yura_hash()
164 pow = pow * 10; in yura_hash()
165 a = a + c * pow; in yura_hash()