亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? limits

?? The Standard Template Library, or STL, is a C++ library of container classes, algorithms, and iterat
??
?? 第 1 頁 / 共 2 頁
字號:
/* * Copyright (c) 1997 * Silicon Graphics Computer Systems, Inc. * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies and * that both that copyright notice and this permission notice appear * in supporting documentation.  Silicon Graphics makes no * representations about the suitability of this software for any * purpose.  It is provided "as is" without express or implied warranty. *//* NOTE: This is not portable code.  Parts of numeric_limits<> are * inherently machine-dependent, and this file is written for the MIPS * architecture and the SGI MIPSpro C++ compiler.  Parts of it (in * particular, some of the characteristics of floating-point types) * are almost certainly incorrect for any other platform. */#ifndef __SGI_CPP_LIMITS#define __SGI_CPP_LIMITS#include <limits.h>#include <float.h>#include <stl_config.h>__STL_BEGIN_NAMESPACEenum float_round_style {  round_indeterminate       = -1,  round_toward_zero         =  0,  round_to_nearest          =  1,  round_toward_infinity     =  2,  round_toward_neg_infinity =  3};enum float_denorm_style {  denorm_indeterminate = -1,  denorm_absent        =  0,  denorm_present       =  1};// The C++ standard (section 18.2.1) requires that some of the members of// numeric_limits be static const data members that are given constant-// initializers within the class declaration.  On compilers where the// __STL_STATIC_CONST_INIT_BUG macro is defined, it is impossible to write// a standard-conforming numeric_limits class.//// There are two possible workarounds: either initialize the data// members outside the class, or change them from data members to// enums.  Neither workaround is satisfactory: the former makes it// impossible to use the data members in constant-expressions, and the// latter means they have the wrong type and that it is impossible to// take their addresses.  We choose the former workaround.#ifdef __STL_STATIC_CONST_INIT_BUG# define __STL_DECLARE_LIMITS_MEMBER(__mem_type, __mem_name, __mem_value) \  enum { __mem_name = __mem_value }#else /* __STL_STATIC_CONST_INIT_BUG */# define __STL_DECLARE_LIMITS_MEMBER(__mem_type, __mem_name, __mem_value) \  static const __mem_type __mem_name = __mem_value#endif /* __STL_STATIC_CONST_INIT_BUG */// Base class for all specializations of numeric_limits.template <class __number>class _Numeric_limits_base {public:  __STL_DECLARE_LIMITS_MEMBER(bool, is_specialized, false);  static __number min() __STL_NOTHROW { return __number(); }  static __number max() __STL_NOTHROW { return __number(); }  __STL_DECLARE_LIMITS_MEMBER(int, digits,   0);  __STL_DECLARE_LIMITS_MEMBER(int, digits10, 0);  __STL_DECLARE_LIMITS_MEMBER(bool, is_signed,  false);  __STL_DECLARE_LIMITS_MEMBER(bool, is_integer, false);  __STL_DECLARE_LIMITS_MEMBER(bool, is_exact,   false);  __STL_DECLARE_LIMITS_MEMBER(int, radix, 0);  static __number epsilon() __STL_NOTHROW     { return __number(); }  static __number round_error() __STL_NOTHROW { return __number(); }  __STL_DECLARE_LIMITS_MEMBER(int, min_exponent,   0);  __STL_DECLARE_LIMITS_MEMBER(int, min_exponent10, 0);  __STL_DECLARE_LIMITS_MEMBER(int, max_exponent,   0);  __STL_DECLARE_LIMITS_MEMBER(int, max_exponent10, 0);  __STL_DECLARE_LIMITS_MEMBER(bool, has_infinity,      false);  __STL_DECLARE_LIMITS_MEMBER(bool, has_quiet_NaN,     false);  __STL_DECLARE_LIMITS_MEMBER(bool, has_signaling_NaN, false);  __STL_DECLARE_LIMITS_MEMBER(float_denorm_style,                              has_denorm,                              denorm_absent);  __STL_DECLARE_LIMITS_MEMBER(bool, has_denorm_loss,   false);  static __number infinity() __STL_NOTHROW      { return __number(); }  static __number quiet_NaN() __STL_NOTHROW     { return __number(); }  static __number signaling_NaN() __STL_NOTHROW { return __number(); }  static __number denorm_min() __STL_NOTHROW    { return __number(); }  __STL_DECLARE_LIMITS_MEMBER(bool, is_iec559,  false);  __STL_DECLARE_LIMITS_MEMBER(bool, is_bounded, false);  __STL_DECLARE_LIMITS_MEMBER(bool, is_modulo,  false);  __STL_DECLARE_LIMITS_MEMBER(bool, traps,            false);  __STL_DECLARE_LIMITS_MEMBER(bool, tinyness_before,  false);  __STL_DECLARE_LIMITS_MEMBER(float_round_style,                              round_style,                              round_toward_zero);};#ifdef __STL_STATIC_CONST_INIT_BUG# define __STL_DEFINE_NUMERIC_BASE_MEMBER(__type, __mem)#else /* __STL_STATIC_CONST_INIT_BUG */# define __STL_DEFINE_NUMERIC_BASE_MEMBER(__type, __mem) \  template <class __number>                              \  const __type _Numeric_limits_base<__number>:: __mem#endif /* __STL_STATIC_CONST_INIT_BUG */__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_specialized);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, digits);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, digits10);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_signed);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_integer);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_exact);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, radix);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, min_exponent);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, max_exponent);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, min_exponent10);__STL_DEFINE_NUMERIC_BASE_MEMBER(int, max_exponent10);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, has_infinity);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, has_quiet_NaN);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, has_signaling_NaN);__STL_DEFINE_NUMERIC_BASE_MEMBER(float_denorm_style, has_denorm);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, has_denorm_loss);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_iec559);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_bounded);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, is_modulo);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, traps);__STL_DEFINE_NUMERIC_BASE_MEMBER(bool, tinyness_before);__STL_DEFINE_NUMERIC_BASE_MEMBER(float_round_style, round_style);// Base class for integers.template <class _Int,          _Int __imin,          _Int __imax,          int __idigits = -1>class _Integer_limits : public _Numeric_limits_base<_Int> {public:  __STL_DECLARE_LIMITS_MEMBER(bool, is_specialized, true);  static _Int min() __STL_NOTHROW { return __imin; }  static _Int max() __STL_NOTHROW { return __imax; }  __STL_DECLARE_LIMITS_MEMBER(int,                              digits,                              (__idigits < 0) ? (int)(sizeof(_Int) * CHAR_BIT)                                                   - (__imin == 0 ? 0 : 1)                                               : __idigits);  __STL_DECLARE_LIMITS_MEMBER(int, digits10, (digits * 301) / 1000);                                 // log 2 = 0.301029995664...  __STL_DECLARE_LIMITS_MEMBER(bool, is_signed,  __imin != 0);  __STL_DECLARE_LIMITS_MEMBER(bool, is_integer, true);  __STL_DECLARE_LIMITS_MEMBER(bool, is_exact,   true);  __STL_DECLARE_LIMITS_MEMBER(int,  radix,      2);  __STL_DECLARE_LIMITS_MEMBER(bool, is_bounded, true);  __STL_DECLARE_LIMITS_MEMBER(bool, is_modulo, true);};#ifdef __STL_STATIC_CONST_INIT_BUG# define __STL_DEFINE_INTEGER_LIMITS_MEMBER(__type, __mem)#else /* __STL_STATIC_CONST_INIT_BUG */# define __STL_DEFINE_INTEGER_LIMITS_MEMBER(__type, __mem)              \  template <class _Int, _Int __imin, _Int __imax, int __idigits>        \  const __type _Integer_limits<_Int, __imin, __imax, __idigits>:: __mem#endif /* __STL_STATIC_CONST_INIT_BUG */__STL_DEFINE_INTEGER_LIMITS_MEMBER(bool, is_specialized);__STL_DEFINE_INTEGER_LIMITS_MEMBER(int, digits);__STL_DEFINE_INTEGER_LIMITS_MEMBER(int, digits10);__STL_DEFINE_INTEGER_LIMITS_MEMBER(bool, is_signed);__STL_DEFINE_INTEGER_LIMITS_MEMBER(bool, is_integer);__STL_DEFINE_INTEGER_LIMITS_MEMBER(bool, is_exact);__STL_DEFINE_INTEGER_LIMITS_MEMBER(int, radix);__STL_DEFINE_INTEGER_LIMITS_MEMBER(bool, is_bounded);__STL_DEFINE_INTEGER_LIMITS_MEMBER(bool, is_modulo);// Base class for floating-point numbers.template <class __number,         int __Digits, int __Digits10,         int __MinExp, int __MaxExp,         int __MinExp10, int __MaxExp10,         unsigned int __InfinityWord,         unsigned int __QNaNWord, unsigned int __SNaNWord,         bool __IsIEC559,         float_round_style __RoundStyle>class _Floating_limits : public _Numeric_limits_base<__number>{public:  __STL_DECLARE_LIMITS_MEMBER(bool, is_specialized, true);  __STL_DECLARE_LIMITS_MEMBER(int, digits,   __Digits);  __STL_DECLARE_LIMITS_MEMBER(int, digits10, __Digits10);  __STL_DECLARE_LIMITS_MEMBER(bool, is_signed, true);  __STL_DECLARE_LIMITS_MEMBER(int, radix, 2);  __STL_DECLARE_LIMITS_MEMBER(int, min_exponent,   __MinExp);  __STL_DECLARE_LIMITS_MEMBER(int, max_exponent,   __MaxExp);  __STL_DECLARE_LIMITS_MEMBER(int, min_exponent10, __MinExp10);  __STL_DECLARE_LIMITS_MEMBER(int, max_exponent10, __MaxExp10);  __STL_DECLARE_LIMITS_MEMBER(bool, has_infinity,      true);  __STL_DECLARE_LIMITS_MEMBER(bool, has_quiet_NaN,     true);  __STL_DECLARE_LIMITS_MEMBER(bool, has_signaling_NaN, true);  __STL_DECLARE_LIMITS_MEMBER(float_denorm_style,                              has_denorm,                              denorm_indeterminate);  __STL_DECLARE_LIMITS_MEMBER(bool, has_denorm_loss,   false);  static __number infinity() __STL_NOTHROW {    static const unsigned int _S_inf[sizeof(__number) / sizeof(int)] =       { __InfinityWord };

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二区三区在线观看免费 | 欧美调教femdomvk| 欧美日免费三级在线| 日韩午夜在线观看视频| 国产精品毛片久久久久久久| 亚洲乱码国产乱码精品精的特点| 成人免费一区二区三区视频| 亚洲成av人片www| 床上的激情91.| 欧美久久久久久蜜桃| 久久久精品日韩欧美| 久久久精品黄色| 亚洲主播在线播放| 国产成人精品免费| 91精品免费观看| 久久先锋影音av| 亚洲电影中文字幕在线观看| 懂色av一区二区夜夜嗨| 欧美日韩一级片网站| 精品黑人一区二区三区久久| 一区二区三区在线播放| 国产精品原创巨作av| 色综合夜色一区| 国产亚洲欧洲一区高清在线观看| 亚洲一区二区三区激情| 成人一区二区视频| 2024国产精品视频| 日韩vs国产vs欧美| 欧美午夜影院一区| 亚洲精品一区二区三区在线观看| 亚洲日本韩国一区| 国产成人av一区二区| 91麻豆精品国产91久久久使用方法 | 另类欧美日韩国产在线| 欧美亚洲综合在线| 最新国产成人在线观看| 国产美女一区二区三区| 欧美成人精品二区三区99精品| 一卡二卡欧美日韩| 成人午夜av影视| 中文字幕 久热精品 视频在线| 国内久久婷婷综合| 欧美一区二区黄| 日韩高清电影一区| 91精品国产手机| 青青草国产成人99久久| 精品乱码亚洲一区二区不卡| 夜夜精品视频一区二区| 91福利在线看| 亚洲综合区在线| 欧美日精品一区视频| 亚洲欧洲精品一区二区三区不卡| 国产成人精品免费在线| 中文子幕无线码一区tr| 成人av在线播放网址| 中文字幕一区二区三中文字幕| 9i在线看片成人免费| 中文字幕色av一区二区三区| 成人va在线观看| 亚洲欧美偷拍三级| 91电影在线观看| 香蕉av福利精品导航| 欧美视频中文字幕| 天堂成人国产精品一区| 欧美一卡2卡三卡4卡5免费| 乱一区二区av| 国产日韩欧美a| 91视频在线观看| 亚洲高清三级视频| 精品国产一区二区精华| 国产在线视视频有精品| 欧美激情一区三区| 欧美亚洲禁片免费| 麻豆极品一区二区三区| 国产精品久久一级| 欧美日韩黄视频| 国产精品一级黄| 亚洲精选视频免费看| 欧美麻豆精品久久久久久| 精品制服美女丁香| 国产精品免费久久| 欧美日韩一区二区在线观看视频| 美脚の诱脚舐め脚责91| 中文字幕不卡在线播放| 在线中文字幕不卡| 国内精品不卡在线| 亚洲国产欧美在线人成| 精品伦理精品一区| 色婷婷久久99综合精品jk白丝 | 国产a视频精品免费观看| 一区二区三区在线影院| 日韩免费观看高清完整版在线观看| 国产成人免费xxxxxxxx| 亚洲一级二级在线| 久久男人中文字幕资源站| 色综合网站在线| 国产精品一级二级三级| 亚洲一区二区三区美女| 国产目拍亚洲精品99久久精品| 欧美精品久久久久久久久老牛影院| 午夜久久久影院| 亚洲免费视频中文字幕| 精品国产乱码久久久久久影片| 色菇凉天天综合网| 成熟亚洲日本毛茸茸凸凹| 麻豆精品在线观看| 亚洲国产精品视频| 亚洲视频一区在线| 国产欧美日本一区视频| 日韩三级在线观看| 欧美欧美欧美欧美| 一本色道久久综合亚洲aⅴ蜜桃 | 国内久久精品视频| 视频一区欧美日韩| 亚洲精品你懂的| 国产精品美女久久福利网站| 日韩欧美国产综合在线一区二区三区| 色吊一区二区三区| 日本va欧美va欧美va精品| 亚洲丝袜自拍清纯另类| 国产欧美综合在线观看第十页| 国产无人区一区二区三区| 久久久久久97三级| 综合久久一区二区三区| 玉足女爽爽91| 天天免费综合色| 蜜桃视频在线观看一区| 国产福利精品导航| 91啦中文在线观看| 欧美日本不卡视频| 精品国产凹凸成av人网站| 欧美激情一区二区三区| 亚洲欧美电影院| 日本91福利区| 岛国一区二区三区| 在线一区二区三区四区五区| 6080午夜不卡| 久久久综合网站| 夜色激情一区二区| 精品一区二区免费视频| 成人av第一页| 91精品国产色综合久久久蜜香臀| 久久影院电视剧免费观看| 中文字幕中文字幕一区二区| 亚洲高清免费视频| 国产乱一区二区| 欧美日韩国产片| 国产婷婷色一区二区三区四区 | 亚洲精品午夜久久久| 免费看欧美美女黄的网站| 国内精品国产成人国产三级粉色| 99久久婷婷国产综合精品电影 | 欧美三级视频在线播放| 久久人人爽爽爽人久久久| 亚洲欧美激情插 | 韩日欧美一区二区三区| 色噜噜夜夜夜综合网| 精品国产乱码久久久久久免费| 亚洲欧美在线视频| 久久99这里只有精品| 91福利在线看| 国产精品久久久久影院色老大 | 青青草伊人久久| 一本在线高清不卡dvd| 久久婷婷成人综合色| 亚洲va欧美va人人爽| 成人性生交大片免费看视频在线 | 麻豆freexxxx性91精品| 色天使色偷偷av一区二区 | 精品久久久久一区| 亚洲制服欧美中文字幕中文字幕| 激情图片小说一区| 欧美肥妇毛茸茸| 樱花影视一区二区| 成人国产电影网| 久久女同精品一区二区| 蜜臀久久99精品久久久画质超高清| 成人av在线资源| 久久精品一区二区三区不卡| 奇米影视在线99精品| 精品视频全国免费看| 亚洲三级久久久| 9人人澡人人爽人人精品| 国产亚洲综合性久久久影院| 美女爽到高潮91| 欧美大尺度电影在线| 蜜桃精品视频在线| 欧美一级一区二区| 青青草国产精品亚洲专区无| 91精品国产综合久久国产大片| 亚洲国产精品久久人人爱蜜臀| 色综合色综合色综合| 综合欧美亚洲日本| 色哟哟国产精品免费观看| 亚洲免费成人av| 色伊人久久综合中文字幕| 亚洲综合999| 欧美日韩亚洲综合| 日韩高清不卡在线| 69久久99精品久久久久婷婷|