Home | History | Annotate | Download | only in src

Lines Matching refs:temp

178     int temp = left * right;
179 return temp | (acc + temp);
236 long temp = left * right;
237 return (acc + temp) + (acc - temp);
511 int temp = 12345 * array1[j];
512 array2[j] -= temp;
513 array1[j] = temp;
526 long temp = 12345 * array1[j];
527 array2[j] -= temp;
528 array1[j] = temp;