Searched refs:first_digit (Results 1 - 4 of 4) sorted by relevance

/external/jmonkeyengine/engine/src/android/com/jme3/util/
H A DFastInteger.java64 int first_digit = 0;
67 first_digit++;
69 int last_digit = first_digit;
82 output[last_digit--] = output[first_digit];
83 output[first_digit++] = tmp;
84 } while (first_digit < last_digit);
96 byte first_digit = 0;
99 first_digit++;
101 byte last_digit = first_digit;
/external/chromium/chrome/browser/autofill/
H A Dcredit_card.cc67 int first_digit = first_two_digits / 10; local
71 if (first_digit == 4)
79 if (first_digit == 36)
104 if (first_digit == 3)
107 if (first_digit == 4)
/external/chromium_org/v8/src/
H A Dparser.cc5266 uc32 first_digit = Next(); local
5267 if (first_digit == '8' || first_digit == '9') {
5269 builder->AddCharacter(first_digit);
/external/v8/src/
H A Dparser.cc5300 uc32 first_digit = Next(); local
5301 if (first_digit == '8' || first_digit == '9') {
5303 builder->AddCharacter(first_digit);

Completed in 249 milliseconds