]> git.saurik.com Git - apple/icu.git/blame - icuSources/i18n/fmtableimp.h
ICU-62107.0.1.tar.gz
[apple/icu.git] / icuSources / i18n / fmtableimp.h
CommitLineData
f3c0d7a5
A
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
51004dcb
A
3/*
4*******************************************************************************
b331163b 5* Copyright (C) 2010-2014, International Business Machines Corporation and *
51004dcb
A
6* others. All Rights Reserved. *
7*******************************************************************************
8*/
9
10#ifndef FMTABLEIMP_H
11#define FMTABLEIMP_H
12
b331163b
A
13#include "digitlst.h"
14
f3c0d7a5
A
15#if !UCONFIG_NO_FORMATTING
16
b331163b 17U_NAMESPACE_BEGIN
51004dcb
A
18
19/**
20 * @internal
21 */
22struct FmtStackData {
23 DigitList stackDecimalNum; // 128
24 //CharString stackDecimalStr; // 64
25 // -----
26 // 192 total
27};
28
b331163b
A
29/**
30 * Maximum int64_t value that can be stored in a double without chancing losing precision.
31 * IEEE doubles have 53 bits of mantissa, 10 bits exponent, 1 bit sign.
32 * IBM Mainframes have 56 bits of mantissa, 7 bits of base 16 exponent, 1 bit sign.
33 * Define this constant to the smallest value from those for supported platforms.
34 * @internal
35 */
36static const int64_t MAX_INT64_IN_DOUBLE = 0x001FFFFFFFFFFFFFLL;
51004dcb 37
b331163b 38U_NAMESPACE_END
51004dcb 39
f3c0d7a5 40#endif // #if !UCONFIG_NO_FORMATTING
51004dcb 41#endif