Searched refs:DIGITS (Results 1 – 12 of 12) sorted by relevance
/external/icu4c/common/ |
D | util.cpp | 25 static const UChar DIGITS[] = { variable 55 result.append(DIGITS[0]); in appendNumber() 59 result.append(DIGITS[digit]); in appendNumber() 84 result.append(DIGITS[0xF&(c>>28)]); in escapeUnprintable() 85 result.append(DIGITS[0xF&(c>>24)]); in escapeUnprintable() 86 result.append(DIGITS[0xF&(c>>20)]); in escapeUnprintable() 87 result.append(DIGITS[0xF&(c>>16)]); in escapeUnprintable() 91 result.append(DIGITS[0xF&(c>>12)]); in escapeUnprintable() 92 result.append(DIGITS[0xF&(c>>8)]); in escapeUnprintable() 93 result.append(DIGITS[0xF&(c>>4)]); in escapeUnprintable() [all …]
|
/external/dropbear/libtommath/mtest/ |
D | mpi.c | 284 if((DIGITS(mp) = s_mp_alloc(prec, sizeof(mp_digit))) == NULL) in mp_init_size() 314 if((DIGITS(mp) = s_mp_alloc(USED(from), sizeof(mp_digit))) == NULL) in mp_init_copy() 317 s_mp_copy(DIGITS(from), DIGITS(mp), USED(from)); in mp_init_copy() 356 s_mp_setz(DIGITS(to) + USED(from), ALLOC(to) - USED(from)); in mp_copy() 357 s_mp_copy(DIGITS(from), DIGITS(to), USED(from)); in mp_copy() 363 s_mp_copy(DIGITS(from), tmp, USED(from)); in mp_copy() 365 if(DIGITS(to) != NULL) { in mp_copy() 367 s_mp_setz(DIGITS(to), ALLOC(to)); in mp_copy() 369 s_mp_free(DIGITS(to)); in mp_copy() 372 DIGITS(to) = tmp; in mp_copy() [all …]
|
D | mpi.h | 59 #define DIGITS(MP) ((MP)->dp) macro
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/ |
D | JsEscapeFunction.java | 31 private static final char[] DIGITS = "0123456789ABCDEF".toCharArray(); field in JsEscapeFunction 70 return "\\x" + DIGITS[(c >> 4) & 0xF] + DIGITS[c & 0xF]; in getEscapeString()
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
D | Hex.java | 36 private static final char[] DIGITS = { field in Hex 109 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4 ]; in encodeHex() 110 out[j++] = DIGITS[ 0x0F & data[i] ]; in encodeHex()
|
/external/mesa3d/src/glsl/glcpp/ |
D | glcpp-lex.l | 71 DIGITS [0-9][0-9]* 109 {HASH}line{HSPACE}+{DIGITS}{HSPACE}+{DIGITS}{HSPACE}*$ { 125 {HASH}line{HSPACE}+{DIGITS}{HSPACE}*$ {
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | Python.g | 479 : '.' DIGITS (Exponent)? 480 | DIGITS ('.' (DIGITS (Exponent)?)? | Exponent) 489 : ('e' | 'E') ( '+' | '-' )? DIGITS 496 '0' DIGITS* 497 | '1'..'9' DIGITS* 506 DIGITS : ( '0' .. '9' )+ ;
|
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/ |
D | PhoneNumberUtil.java | 220 private static final String DIGITS = "\\p{Nd}"; field in PhoneNumberUtil 228 private static final Pattern CAPTURING_DIGIT_PATTERN = Pattern.compile("(" + DIGITS + ")"); 236 private static final String VALID_START_CHAR = "[" + PLUS_CHARS + DIGITS + "]"; 267 "[" + PLUS_CHARS + "]*+(?:[" + VALID_PUNCTUATION + STAR_SIGN + "]*" + DIGITS + "){3,}[" + 268 VALID_PUNCTUATION + STAR_SIGN + VALID_ALPHA + DIGITS + "]*"; 278 private static final String CAPTURING_EXTN_DIGITS = "(" + DIGITS + "{1,7})"; 315 "[- ]+(" + DIGITS + "{1,5})#"); in createExtnPattern()
|
/external/icu4c/test/intltest/ |
D | numfmtst.cpp | 1264 int32_t DIGITS[] = { in TestScientific() local 1288 if (df.getMinimumIntegerDigits() != DIGITS[4*i] || in TestScientific() 1289 df.getMaximumIntegerDigits() != DIGITS[4*i+1] || in TestScientific() 1290 df.getMinimumFractionDigits() != DIGITS[4*i+2] || in TestScientific() 1291 df.getMaximumFractionDigits() != DIGITS[4*i+3]) { in TestScientific() 1298 DIGITS[4*i] + "/" + in TestScientific() 1299 DIGITS[4*i+1] + ";" + in TestScientific() 1300 DIGITS[4*i+2] + "/" + in TestScientific() 1301 DIGITS[4*i+3]); in TestScientific()
|
/external/qemu/android/ |
D | hw-events.h | 347 KEY_CODE(DIGITS ,0x19d) \
|
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/ |
D | process.js | 272 var DIGITS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_"; 276 ret = DIGITS.charAt(num % 54) + ret;
|
/external/srec/config/en.us/dictionary/ |
D | c0.6 | 29927 DIGITS D IH1 JH AH0 T S
|