Home | History | Annotate | Download | only in i18n

Lines Matching full:int64_t

53 static int64_t
54 util_lcm(int64_t x, int64_t y)
64 int64_t t = x; x = y; y = t;
77 static int64_t
78 util_lcm(int64_t x, int64_t y)
82 int64_t x1 = x;
83 int64_t y1 = y;
92 int64_t t;
111 int64_t gcd = x1 << p2;
227 int64_t defaultBaseValue = 0;
235 int64_t baseValue = rule->getBaseValue();
267 int64_t baseValue = rule->getBaseValue();
397 NFRuleSet::format(int64_t number, UnicodeString& toAppendTo, int32_t pos, int32_t recursionCount, UErrorCode& status) const
479 int64_t r = util64_fromDouble(number + 0.5);
484 NFRuleSet::findNormalRule(int64_t number) const
584 int64_t leastCommonMultiple = rules[0]->getBaseValue();
585 int64_t numerator;
593 int64_t tempDifference;
594 int64_t difference = util64_fromDouble(uprv_maxMantissa());
733 int64_t ub = util64_fromDouble(upperBound);
809 int64_t util64_fromDouble(double d) {
810 int64_t result = 0;
822 result = (int64_t)uprv_floor(d);
830 int64_t util64_pow(int32_t r, uint32_t e) {
836 int64_t n = r;
876 int64_t util64_atoi(const char* str, uint32_t radix)
883 int64_t lradix = radix;
890 int64_t result = 0;
902 int64_t util64_utoi(const UChar* str, uint32_t radix)
909 int64_t lradix = radix;
916 int64_t result = 0;
929 uint32_t util64_toa(int64_t w, char* buf, uint32_t len, uint32_t radix, UBool raw)
936 int64_t base = radix;
949 int64_t n = w / base;
950 int64_t m = n * base;
975 uint32_t util64_tou(int64_t w, UChar* buf, uint32_t len, uint32_t radix, UBool raw)
982 int64_t base = radix;
995 int64_t n = w / base;
996 int64_t m = n * base;