Lines Matching full:int
51 static constexpr int DOUBLE_MAX_PRECISION = 17;
52 static constexpr int DOUBLE_EXPONENT_BIAS = 0x3FF;
69 static constexpr int LEFT52 = 52 ;
70 static constexpr int RIGHT12 = 12;
72 static constexpr int SECONDS_TO_SUBTLE = 1000000;
73 static constexpr int RIGHT27 = 27;
74 static constexpr int LEFT25 = 25;
97 static JSTaggedValue DoubleToString(JSThread *thread, double number, int radix);
105 static JSTaggedValue DoubleToExponential(JSThread *thread, double number, int digit);
106 static JSTaggedValue DoubleToFixed(JSThread *thread, double number, int digit);
107 static JSTaggedValue DoubleToPrecision(JSThread *thread, double number, int digit);
108 … static JSTaggedValue StringToDoubleWithRadix(const uint8_t *start, const uint8_t *end, int radix);
109 static CString IntToString(int number);
110 static CString IntegerToString(int64_t number, int radix);
114 static char Carry(char current, int radix);
115 static double Strtod(const char *str, int exponent, uint8_t radix);
116 … static CString DecimalsToString(int64_t *numberInteger, double fraction, int radix, double delta);
118 static void GetBase(double d, int digits, int *decpt, char *buf, char *bufTmp, int size);
119 static int GetMinmumDigits(double d, int *decpt, char *buf);