HomeSort by relevance Sort by last modified time
    Searched refs:DIGIT (Results 1 - 17 of 17) sorted by null

  /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) {
tommath.h 125 /* otherwise the bits per digit is calculated automatically from the size of a mp_digit */
127 #define DIGIT_BIT ((int)((CHAR_BIT * sizeof(mp_digit) - 1))) /* bits per digit */
189 #define DIGIT(m,k) ((m)->dp[(k)])
228 /* set to a digit */
237 /* initialize and set a digit */
252 /* ---> digit manipulation <--- */
328 /* ---> single digit functions <--- */
330 /* compare against a single digit */
  /packages/apps/Email/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/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/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;
  /frameworks/base/libs/rs/
spec.l 9 DIGIT [0-9]
  /external/dropbear/
buffer.c 280 if (USED(mp) == 1 && DIGIT(mp, 0) == 0) {
  /external/webkit/JavaScriptCore/pcre/
pcre_internal.h 259 macro(DIGIT) \
pcre_exec.cpp 761 BEGIN_OPCODE(DIGIT):
    [all...]
  /external/guava/src/com/google/common/base/
CharMatcher.java 94 * Determines whether a character is a digit according to
97 public static final CharMatcher DIGIT;
100 CharMatcher digit = inRange('0', '9'); typedefs
106 digit = digit.or(inRange(base, (char) (base + 9)));
108 DIGIT = digit;
129 * Determines whether a character is a digit according to {@link
152 * Determines whether a character is a letter or digit according to {@link
    [all...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /external/dropbear/libtommath/pre_gen/
mpi.c 313 /* now fix carry for next digit, W[ix+1] */
471 /* now extract the previous digit [below the carry] */
573 /* now extract the previous digit [below the carry] */
885 /* single digit addition */
930 /* add digit, after this we're propagating
953 /* the result is a single digit */
1110 * trimed and the leading "used" digit will be non-zero
1117 /* decrease used while the most significant digit is
1288 /* compare a digit */
1301 /* compare the only digit of a to b *
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 339 milliseconds