Searched refs:DIGITS (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dutil.cpp25 static const UChar DIGITS[] = { variable
55 result.append(DIGITS[0]);
59 result.append(DIGITS[digit]);
84 result.append(DIGITS[0xF&(c>>28)]);
85 result.append(DIGITS[0xF&(c>>24)]);
86 result.append(DIGITS[0xF&(c>>20)]);
87 result.append(DIGITS[0xF&(c>>16)]);
91 result.append(DIGITS[0xF&(c>>12)]);
92 result.append(DIGITS[0xF&(c>>8)]);
93 result.append(DIGITS[
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/libtommath/mtest/
H A Dmpi.c284 if((DIGITS(mp) = s_mp_alloc(prec, sizeof(mp_digit))) == NULL)
314 if((DIGITS(mp) = s_mp_alloc(USED(from), sizeof(mp_digit))) == NULL)
317 s_mp_copy(DIGITS(from), DIGITS(mp), USED(from));
356 s_mp_setz(DIGITS(to) + USED(from), ALLOC(to) - USED(from));
357 s_mp_copy(DIGITS(from), DIGITS(to), USED(from));
363 s_mp_copy(DIGITS(from), tmp, USED(from));
365 if(DIGITS(to) != NULL) {
367 s_mp_setz(DIGITS(t
[all...]
H A Dmpi.h59 #define DIGITS(MP) ((MP)->dp) macro
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dmupad.vim35 " Set-able, e.g., DIGITS:=10
36 syn keyword mupadSpecial DIGITS HISTORY LEVEL
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dnumfmtst.cpp1267 int32_t DIGITS[] = { local
1291 if (df.getMinimumIntegerDigits() != DIGITS[4*i] ||
1292 df.getMaximumIntegerDigits() != DIGITS[4*i+1] ||
1293 df.getMinimumFractionDigits() != DIGITS[4*i+2] ||
1294 df.getMaximumFractionDigits() != DIGITS[4*i+3]) {
1301 DIGITS[4*i] + "/" +
1302 DIGITS[4*i+1] + ";" +
1303 DIGITS[4*i+2] + "/" +
1304 DIGITS[4*i+3]); local

Completed in 135 milliseconds