/external/dropbear/libtommath/ |
bn_mp_get_int.c | 31 /* get most significant digit of result */ 32 res = DIGIT(a,i); 35 res = (res << DIGIT_BIT) | DIGIT(a,i);
|
bn_mp_is_square.c | 61 if (rem_128[127 & DIGIT(arg,0)] == 1) {
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/ |
TestLexer.h | 16 #define DIGIT 5
|
TestLexerLexer.h | 21 #define DIGIT 4
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/ |
TestLexer.h | 16 #define DIGIT 5
|
TestLexerLexer.h | 16 #define DIGIT 5
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
AddressListParserConstants.java | 24 int DIGIT = 12; 52 "<DIGIT>",
|
AddressListParser.jj | 482 | < #DIGIT: ["0" - "9"] >
483 | < #ATEXT: ( <ALPHA> | <DIGIT>
|
/external/dhcpcd/compat/ |
linkaddr.c | 47 #define DIGIT (4*0) 82 case NAMING | DIGIT: 90 case GOTTWO | DIGIT: 93 case RESET | DIGIT: 97 case GOTONE | DIGIT:
|
/external/nist-sip/java/gov/nist/core/ |
LexerCore.java | 48 public static final int DIGIT = END + 2; 190 tok.tokenType = DIGIT; 239 if (tok == DIGIT) { 241 throw new ParseException(buffer + "\nExpecting DIGIT", ptr);
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t009lexer.py | 28 assert token.type == self.lexerModule.DIGIT 34 assert token.type == self.lexerModule.DIGIT 40 assert token.type == self.lexerModule.DIGIT
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
calc.rb | 57 INTEGER: DIGIT+; 59 DECIMAL: DIGIT+ '.' DIGIT+; 62 DIGIT: '0'..'9';
|
rule-methods.rb | 117 private b: DIGIT; 118 protected c: ID DIGIT; 120 DIGIT: ('0'..'9')+;
|
actions.rb | 211 nums returns [ds]: digs+=DIGIT+ 214 DIGIT: ('0'..'9')+;
|
/external/dropbear/libtommath/mtest/ |
mpi.c | 64 /* {{{ Digit arithmetic macros */ 104 /* Value to digit maps for radix conversion */ 175 mp_err s_mp_add_d(mp_int *mp, mp_digit d); /* unsigned digit addition */ 176 mp_err s_mp_sub_d(mp_int *mp, mp_digit d); /* unsigned digit subtract */ 177 mp_err s_mp_mul_d(mp_int *mp, mp_digit d); /* unsigned digit multiply */ 179 /* unsigned digit divide */ 197 int s_mp_cmp_d(mp_int *a, mp_digit d); /* magnitude digit compare */ 202 char s_mp_todigit(int val, int r, int low); /* convert val to digit */ 484 DIGIT(mp, 0) = d; 526 /* {{{ Digit arithmetic * [all...] |
mpi.h | 60 #define DIGIT(MP,N) (MP)->dp[(N)] 105 /* Single digit arithmetic */
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
TokenTypes.java | 171 public static final int DIGIT = LexerCore.DIGIT;
|
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
Tokenizer.l | 85 DIGIT [0-9] 86 EXPONENT_PART [eE][+-]?{DIGIT}+ 87 FRACTIONAL_CONSTANT ({DIGIT}*"."{DIGIT}+)|({DIGIT}+".") 122 ({DIGIT}+{EXPONENT_PART})|({FRACTIONAL_CONSTANT}{EXPONENT_PART}?) { 127 /* Anything that starts with a {DIGIT} or .{DIGIT} must be a number. */ 129 ({DIGIT}+[_a-zA-Z0-9.]*)|("."{DIGIT}+[_a-zA-Z0-9.]*) [all...] |
/frameworks/rs/ |
spec.l | 9 DIGIT [0-9]
|
/external/dropbear/ |
buffer.c | 280 if (USED(mp) == 1 && DIGIT(mp, 0) == 0) {
|
/external/guava/guava/src/com/google/common/net/ |
InternetDomainName.java | 215 * <li>Parts other than the final part may start with a digit. 300 * relevant RFCs) domain parts other than the last may begin with a digit 301 * (for example, "3com.com"). It's important to disallow an initial digit in 306 if (isFinalPart && CharMatcher.DIGIT.matches(part.charAt(0))) {
|
/external/guava/guava-tests/test/com/google/common/base/ |
CharMatcherTest.java | 174 doTestNoMatches(CharMatcher.DIGIT, "\tAz()"); 176 doTestNoMatches(CharMatcher.DIGIT.and(CharMatcher.ASCII), "\tAz()"); 201 doTestAllMatches(CharMatcher.DIGIT, "0123456789\u0ED0\u1B59"); 203 doTestAllMatches(CharMatcher.DIGIT.and(CharMatcher.ASCII), "0123456789");
|
/external/guava/guava/src/com/google/common/base/ |
CharMatcher.java | 99 * Determines whether a character is a digit according to 102 public static final CharMatcher DIGIT; 105 CharMatcher digit = inRange('0', '9'); typedefs 111 digit = digit.or(inRange(base, (char) (base + 9))); 113 DIGIT = digit.precomputed(); 117 * Determines whether a character is a digit according to {@link Character#isDigit(char) Java's 138 * Determines whether a character is a letter or digit according to {@link [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/ |
CharMatcher.java | 92 * Determines whether a character is a digit according to 95 public static final CharMatcher DIGIT; 98 CharMatcher digit = inRange('0', '9'); typedefs 104 digit = digit.or(inRange(base, (char) (base + 9))); 106 DIGIT = digit; 127 * Determines whether a character is a digit according to {@link 150 * Determines whether a character is a letter or digit according to {@link [all...] |
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
CharMatcher.java | 92 * Determines whether a character is a digit according to 95 public static final CharMatcher DIGIT; 98 CharMatcher digit = inRange('0', '9'); typedefs 104 digit = digit.or(inRange(base, (char) (base + 9))); 106 DIGIT = digit; 127 * Determines whether a character is a digit according to {@link 150 * Determines whether a character is a letter or digit according to {@link [all...] |