Home
last modified time | relevance | path

Searched refs:first_digit (Results 1 – 3 of 3) sorted by relevance

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