Searched refs:is_negative (Results 1 – 11 of 11) sorted by relevance
/reactos/sdk/lib/ucrt/convert/ |
H A D | xtoa.cpp | 49 if (is_negative) 137 bool const is_negative = radix == 10 && value < 0; in _itoa_s() local 148 bool const is_negative = radix == 10 && value < 0; in _ltoa_s() local 170 bool const is_negative = radix == 10 && value < 0; in _itoa() local 181 bool const is_negative = radix == 10 && value < 0; in _ltoa() local 210 bool const is_negative = radix == 10 && value < 0; in _i64toa_s() local 232 bool const is_negative = radix == 10 && value < 0; in _i64toa() local 261 bool const is_negative = radix == 10 && value < 0; in _itow_s() local 272 bool const is_negative = radix == 10 && value < 0; in _ltow_s() local 294 bool const is_negative = radix == 10 && value < 0; in _itow() local [all …]
|
H A D | atoldbl.cpp | 540 void __cdecl assemble_floating_point_zero(bool const is_negative, _LDBL12& result) throw() in assemble_floating_point_zero() argument 542 uint16_t const sign_bit{static_cast<uint16_t>(is_negative ? MSB_USHORT : 0x0000)}; in assemble_floating_point_zero() 551 void __cdecl assemble_floating_point_infinity(bool const is_negative, _LDBL12& result) throw() in assemble_floating_point_infinity() argument 553 uint16_t const sign_bit{static_cast<uint16_t>(is_negative ? MSB_USHORT : 0x0000)}; in assemble_floating_point_infinity() 562 void __cdecl assemble_floating_point_qnan(bool const is_negative, _LDBL12& result) throw() in assemble_floating_point_qnan() argument 564 uint16_t const sign_bit{static_cast<uint16_t>(is_negative ? MSB_USHORT : 0x0000)}; in assemble_floating_point_qnan() 572 void __cdecl assemble_floating_point_snan(bool const is_negative, _LDBL12& result) throw() in assemble_floating_point_snan() argument 574 uint16_t const sign_bit{static_cast<uint16_t>(is_negative ? MSB_USHORT : 0x0000)}; in assemble_floating_point_snan()
|
H A D | cvt.cpp | 51 _In_range_(0,1) bool const is_negative, 62 if (result_buffer_count < _countof("INF") + is_negative) 68 if (is_negative)
|
/reactos/sdk/lib/3rdparty/libxml2/ |
H A D | trionan.c | 223 int is_negative = TRIO_FALSE; variable 229 return is_negative; 563 int *is_negative) 653 *is_negative = TRIO_FALSE; 656 *is_negative = TRIO_TRUE; 662 *is_negative = TRIO_TRUE; 668 *is_negative = TRIO_TRUE; 674 *is_negative = TRIO_TRUE; 714 *is_negative = TRIO_TRUE; 736 int is_negative; variable [all …]
|
H A D | trionan.h | 78 TRIO_PUBLIC int trio_fpclassify_and_signbit TRIO_PROTO((double number, int *is_negative));
|
/reactos/sdk/lib/ucrt/inc/ |
H A D | corecrt_internal_strtox.h | 510 result_components._sign = is_negative ? 1 : 0; 535 result_components._sign = is_negative ? 1 : 0; 560 result_components._sign = is_negative ? 1 : 0; 640 bool const is_negative, 663 case FE_UPWARD: return !is_negative; 664 case FE_DOWNWARD: return is_negative; 677 bool const is_negative, 719 bool const is_negative, 729 result_components._sign = is_negative; 738 bool const is_negative, [all …]
|
/reactos/sdk/lib/crt/string/ |
H A D | itoa.c | 54 int is_negative; in _i64toa_s() local 71 is_negative = 1; in _i64toa_s() 76 is_negative = 0; in _i64toa_s() 95 if (is_negative) in _i64toa_s() 107 if (is_negative) in _i64toa_s() 259 int is_negative; in _ltoa_s() local 277 is_negative = 1; in _ltoa_s() 282 is_negative = 0; in _ltoa_s() 301 if (is_negative) in _ltoa_s() 313 if (is_negative) in _ltoa_s()
|
H A D | itow.c | 65 int is_negative; in _i64tow_s() local 83 is_negative = 1; in _i64tow_s() 88 is_negative = 0; in _i64tow_s() 107 if (is_negative) in _i64tow_s() 119 if (is_negative) in _i64tow_s() 280 int is_negative; in _ltow_s() local 298 is_negative = 1; in _ltow_s() 303 is_negative = 0; in _ltow_s() 322 if (is_negative) in _ltow_s() 334 if (is_negative) in _ltow_s()
|
/reactos/base/services/nfsd/ |
H A D | name_cache.c | 626 OUT OPTIONAL bool_t *is_negative) in entry_invis() argument 635 if (is_negative) *is_negative = 1; in entry_invis() 656 OUT OPTIONAL bool_t *is_negative) in name_cache_lookup() argument 669 if (target == NULL || (skip_invis && entry_invis(target, is_negative))) { in name_cache_lookup() 679 if (target == NULL || (skip_invis && entry_invis(target, is_negative))) { in name_cache_lookup() 832 OUT OPTIONAL bool_t *is_negative) in nfs41_name_cache_lookup() argument 846 &path_pos, &parent, &target, is_negative); in nfs41_name_cache_lookup()
|
H A D | name_cache.h | 68 OUT OPTIONAL bool_t *is_negative);
|
/reactos/sdk/lib/3rdparty/stlport/src/ |
H A D | num_put_float.cpp | 590 bool is_negative() const { in is_negative() function 640 if (helper.is_negative()) in __format_nan_or_inf()
|