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

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

?? stl_bvector.h

?? 粗慥集成算法集合 ,并有詳細的文檔資料和測試數據處
?? H
?? 第 1 頁 / 共 3 頁
字號:
/*
 *
 * Copyright (c) 1994
 * Hewlett-Packard Company
 *
 * Copyright (c) 1996,1997
 * Silicon Graphics Computer Systems, Inc.
 *
 * Copyright (c) 1997
 * Moscow Center for SPARC Technology
 *
 * Copyright (c) 1999 
 * Boris Fomitchev
 *
 * This material is provided "as is", with absolutely no warranty expressed
 * or implied. Any use is at your own risk.
 *
 * Permission to use or copy this software for any purpose is hereby granted 
 * without fee, provided the above notices are retained on all copies.
 * Permission to modify the code and to distribute modified code is granted,
 * provided the above notices are retained, and a notice that the code was
 * modified is included with the above copyright notice.
 *
 */

/* NOTE: This is an internal header file, included by other STL headers.
 *   You should not attempt to use it directly.
 */

#ifndef __SGI_STL_INTERNAL_BVECTOR_H
#define __SGI_STL_INTERNAL_BVECTOR_H

#ifndef __SGI_STL_INTERNAL_VECTOR_H
#  include <stl_vector.h>
#endif

__STL_BEGIN_NAMESPACE 

#define __WORD_BIT (int(CHAR_BIT*sizeof(unsigned int)))

#if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
#pragma set woff 1174
#pragma set woff 1375
#endif

struct _Bit_reference {
  unsigned int* _M_p;
  unsigned int _M_mask;
  _Bit_reference(unsigned int* __x, unsigned int __y) 
    : _M_p(__x), _M_mask(__y) {}

public:
  _Bit_reference() : _M_p(0), _M_mask(0) {}
  operator bool() const { return !(!(*_M_p & _M_mask)); }
  _Bit_reference& operator=(bool __x)
  {
    if (__x)  *_M_p |= _M_mask;
    else      *_M_p &= ~_M_mask;
    return *this;
  }
  _Bit_reference& operator=(const _Bit_reference& __x) 
    { return *this = bool(__x); }
  bool operator==(const _Bit_reference& __x) const
    { return bool(*this) == bool(__x); }
  bool operator<(const _Bit_reference& __x) const {
    return !bool(*this) && bool(__x);
  }
  void flip() { *_M_p ^= _M_mask; }
};

__STL_END_NAMESPACE

# if defined (__SGI_STL_NO_ARROW_OPERATOR) && ! defined (__STL_NO_PROXY_ARROW_OPERATOR)

__STL_TEMPLATE_NULL struct __arrow_op_dispatch<_Bit_reference, _Bit_reference*> {
  __arrow_op_dispatch(_Bit_reference) {}
  __arrow_op_dummy operator ->() const { return __arrow_op_dummy(); }
};

__STL_TEMPLATE_NULL struct __arrow_op_dispatch<bool, const bool*> {
  __arrow_op_dispatch(bool) {}
  __arrow_op_dummy operator ->() const { return __arrow_op_dummy(); }
};

# endif

__STL_BEGIN_NAMESPACE

inline void swap(_Bit_reference __x, _Bit_reference __y)
{
  bool __tmp = __x;
  __x = __y;
  __y = __tmp;
}

struct _Bit_iterator_base;

# ifdef __STL_DEBUG
template <class _Dummy> 
struct _Bv_global {
  static bool _Dereferenceable(const _Bit_iterator_base& __x);
  static bool _Nonsingular(const _Bit_iterator_base& __x );
};
typedef _Bv_global<bool> _Bv_global_inst;
# endif

struct _Bit_iterator_base
# if defined (__STL_DEBUG)
 : public __owned_link
# endif
{
  typedef ptrdiff_t difference_type;

  unsigned int* _M_p;
  unsigned int _M_offset;

  void _M_bump_up() {
    if (_M_offset++ == __WORD_BIT - 1) {
      _M_offset = 0;
      ++_M_p;
    }
    __stl_debug_check(_Bv_global_inst::_Nonsingular(*this));  
  }

  void _M_bump_down() {
    if (_M_offset-- == 0) {
      _M_offset = __WORD_BIT - 1;
      --_M_p;
    }
    __stl_debug_check(_Bv_global_inst::_Nonsingular(*this));
  }

# if defined ( __STL_DEBUG )
  bool _M_unsafe;
  bool _Overrun_ok() const { return _M_unsafe; } 
  void _Set_overrun(bool __val) { _M_unsafe = __val; } 
  _Bit_iterator_base() : __owned_link(0), _M_p(0),_M_offset(0), _M_unsafe(false) {}
  _Bit_iterator_base(const __owned_list* __root,unsigned int* __x, 
		 unsigned int __y, bool __over = false) : 
    __owned_link(__root), _M_p(__x), _M_offset(__y), _M_unsafe(__over) {}
  /*
  // these are trivial copy constructor and assignment. egcs chokes
  // on compiler-generated ones.
  _Bit_iterator_base(const _Bit_iterator_base& __it) : __owned_link(__it){
    _M_p = __it._M_p;
    _M_offset = __it._M_offset;
    _M_unsafe = __it._M_unsafe;
  }
 _Bit_iterator_base& operator=(const _Bit_iterator_base& __it) {
   __owned_link::operator=(__it);
   _M_p = __it._M_p;
   _M_offset = __it._M_offset;
   _M_unsafe = __it._M_unsafe;
   return *this;
 }
 */
# else
  _Bit_iterator_base() : _M_p(0), _M_offset(0) {}
  _Bit_iterator_base(unsigned int* __x, unsigned int __y) : _M_p(__x), _M_offset(__y) {}
# endif

  void _M_advance (difference_type __i) {
    difference_type __n = __i + _M_offset;
    _M_p += __n / __WORD_BIT;
    __n = __n % __WORD_BIT;
    if (__n < 0) {
      _M_offset = (unsigned int) __n + __WORD_BIT;
      --_M_p;
    } else
      _M_offset = (unsigned int) __n;
    __stl_debug_check(_Bv_global_inst::_Nonsingular(*this));
  }

  difference_type _M_subtract(const _Bit_iterator_base& __x) const {
    __stl_debug_check(__check_same_owner(*this,__x));    
    return __WORD_BIT * (_M_p - __x._M_p) + _M_offset - __x._M_offset;
  }
};

inline bool operator==(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) {
  __stl_debug_check(__check_same_owner_or_null(__x, __y));    
  return __y._M_p == __x._M_p && __y._M_offset == __x._M_offset;
}
inline bool operator!=(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) {
  __stl_debug_check(__check_same_owner_or_null(__x, __y));    
  return __y._M_p != __x._M_p || __y._M_offset != __x._M_offset;
}

inline bool operator<(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) {
  __stl_debug_check(__check_same_owner(__y,__x));    
  return __x._M_p < __y._M_p || (__x._M_p == __y._M_p && __x._M_offset < __y._M_offset);
}

inline bool operator>(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y)  { 
  return __STLPORT_STD::operator <(__y , __x); 
}
inline bool operator<=(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) { 
  return !(__y < __x); 
}
inline bool operator>=(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) { 
  return !(__x < __y); 
}

# ifdef __STL_DEBUG
template <class _Dummy>
bool _Bv_global<_Dummy>::_Dereferenceable(const _Bit_iterator_base& __x) {
  __stl_verbose_return(__x._Valid(), _StlMsg_INVALID_ITERATOR);
  // hack : assumes _M_start is followed by _M_finish 
  _Bit_iterator_base* __start = (_Bit_iterator_base*)(__x._Owner()->_Owner());
  if (__x._Overrun_ok()) return true;
  __stl_verbose_return(__x >= *__start && __x < *(__start+1),
		       _StlMsg_NOT_DEREFERENCEABLE);    
  return true;
}

template <class _Dummy>
bool _Bv_global<_Dummy>::_Nonsingular(const _Bit_iterator_base& __x ) {
    __stl_verbose_return(__x._Valid(), _StlMsg_INVALID_ITERATOR);
    // hack : assumes _M_start is followed by _M_finish 
    _Bit_iterator_base* __start = (_Bit_iterator_base*)(__x._Owner()->_Owner());
    if (__x._Overrun_ok()) return true;
    __stl_verbose_return(__x >= *__start && __x <= *(__start+1),
			 _StlMsg_SINGULAR_ITERATOR);    
    return true;
}
# endif /* __STL_DEBUG */

template <class _Ref, class _Ptr>
struct _Bit_iter : public _Bit_iterator_base
{
  typedef _Ref  reference;
  typedef _Ptr  pointer;
  typedef _Bit_iter<_Bit_reference, _Bit_reference*> iterator;
  typedef _Bit_iter<bool, const bool*> const_iterator;
  typedef _Bit_iter<_Ref, _Ptr> _Self;
  typedef random_access_iterator_tag iterator_category;
  typedef bool value_type;
  typedef ptrdiff_t difference_type;
  typedef size_t size_type;

# if defined ( __STL_DEBUG )
  _Bit_iter(const __owned_list* __root,unsigned int* __x, 
	    unsigned int __y, bool __over = false) : _Bit_iterator_base(__root, __x, __y, __over) {}
# else
  _Bit_iter(unsigned int* __x, unsigned int __y) : _Bit_iterator_base(__x, __y) {}
# endif
  _Bit_iter() {}
  _Bit_iter(const _Bit_iter<_Bit_reference, _Bit_reference*>& __x): 
    _Bit_iterator_base((const _Bit_iterator_base&)__x) {}
  reference operator*() const { 
    __stl_debug_check(_Bv_global_inst::_Dereferenceable(*this));    
    return _Bit_reference(_M_p, 1UL << _M_offset); 
  }
  _Self& operator++() {
    _M_bump_up();
    return *this;
  }
  _Self operator++(int) {
    _Self __tmp = *this;
    _M_bump_up();
    return __tmp;
  }
  _Self& operator--() {
    _M_bump_down();
    return *this;
  }
  _Self operator--(int) {
    _Self __tmp = *this;
    _M_bump_down();
    return __tmp;
  }
  _Self& operator+=(difference_type __i) {
    _M_advance(__i);
    return *this;
  }
  _Self& operator-=(difference_type __i) {
    *this += -__i;
    return *this;
  }
  _Self operator+(difference_type __i) const {
    _Self __tmp = *this;
    return __tmp += __i;
  }
  _Self operator-(difference_type __i) const {
    _Self __tmp = *this;
    return __tmp -= __i;
  }
  difference_type operator-(const _Self& __x) const {
    return _M_subtract(__x);
  }
  reference operator[](difference_type __i) { return *(*this + __i); }
};

# ifndef __STL_CLASS_PARTIAL_SPECIALIZATION
inline random_access_iterator_tag 
iterator_category(const _Bit_iterator_base&) {return random_access_iterator_tag();}
inline ptrdiff_t* 
distance_type(const _Bit_iterator_base&) {return (ptrdiff_t*)0;}
inline bool* value_type(const _Bit_iter<_Bit_reference, _Bit_reference*>&) {return (bool*)0;}
inline bool* value_type(const _Bit_iter<bool, const bool*>&) {return (bool*)0;}
# endif

typedef _Bit_iter<bool, const bool*> _Bit_const_iterator;
typedef _Bit_iter<_Bit_reference, _Bit_reference*> _Bit_iterator;

// Bit-vector base class, which encapsulates the difference between
//  old SGI-style allocators and standard-conforming allocators.


template <class _Alloc>
class _Bvector_base
{
public:
  typedef typename _Alloc_traits<bool, _Alloc>::allocator_type allocator_type;
  typedef unsigned int __chunk_type;
  typedef typename _Alloc_traits<__chunk_type, 
          _Alloc>::allocator_type __chunk_allocator_type;
  allocator_type get_allocator() const { 
    return __STL_CONVERT_ALLOCATOR((const __chunk_allocator_type&)_M_end_of_storage, bool); 
  }
  _Bvector_base(const allocator_type& __a)
    : _M_start(), _M_finish(), _M_end_of_storage(__STL_CONVERT_ALLOCATOR(__a, __chunk_type),
						 (__chunk_type*)0) {
      __stl_debug_do(_M_iter_list._Safe_init(&_M_start));        
      __stl_debug_do(_Init_bounds());
  }
  ~_Bvector_base() { _M_deallocate();
  __stl_debug_do(_M_start._Invalidate()); 
  __stl_debug_do(_M_finish._Invalidate());
  }

protected:

  unsigned int* _M_bit_alloc(size_t __n) 
    { return _M_end_of_storage.allocate((__n + __WORD_BIT - 1)/__WORD_BIT); }
  void _M_deallocate() {
    if (_M_start._M_p)
      _M_end_of_storage.deallocate(_M_start._M_p,
				   _M_end_of_storage._M_data - _M_start._M_p);
    __stl_debug_do(_Invalidate_all());
  }

  _Bit_iterator _M_start;
  _Bit_iterator _M_finish;
  _STL_alloc_proxy<__chunk_type*, __chunk_type, __chunk_allocator_type> _M_end_of_storage;  

# if defined (__STL_DEBUG)
  __owned_list _M_iter_list;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91小视频免费看| 国产午夜亚洲精品羞羞网站| 精品久久久久久久一区二区蜜臀| 国产视频一区在线播放| 亚洲综合在线电影| 国产一区福利在线| 精品视频一区二区不卡| 欧美激情在线一区二区| 美国毛片一区二区三区| 欧美性一级生活| 国产精品电影一区二区| 精品在线免费观看| 欧美福利电影网| 亚洲美腿欧美偷拍| 粉嫩13p一区二区三区| 欧美成人艳星乳罩| 日本视频免费一区| 国产在线不卡一区| 成人app在线观看| 精品少妇一区二区三区日产乱码 | 免费在线看成人av| 色欧美乱欧美15图片| 国产欧美日韩综合| 国产精品夜夜嗨| 欧美一区二区啪啪| 日韩精品福利网| 欧美日韩亚洲综合在线| 洋洋成人永久网站入口| 色综合天天综合网天天狠天天| 国产精品无人区| 国产一区二区在线电影| 2017欧美狠狠色| 国产一区高清在线| 久久久99久久精品欧美| 亚洲美女在线国产| 色偷偷88欧美精品久久久| 中文字幕五月欧美| 99久久精品国产导航| 综合久久给合久久狠狠狠97色| 成人黄色大片在线观看| 亚洲丝袜美腿综合| 欧美日韩一区二区三区免费看| 夜夜嗨av一区二区三区| 欧美精品一二三| 久久99精品国产91久久来源| 久久精子c满五个校花| 国产成人免费在线观看| 国产精品欧美精品| 99re免费视频精品全部| 一区二区三区中文字幕| 欧美电影在线免费观看| 国产中文一区二区三区| 国产精品久久久久永久免费观看 | 欧美日韩在线三区| 美国av一区二区| 国产欧美精品一区aⅴ影院| 97久久精品人人澡人人爽| 亚洲一区视频在线观看视频| 日韩美一区二区三区| 成人晚上爱看视频| 亚洲国产日韩av| 精品国产乱码久久久久久1区2区 | 亚洲电影中文字幕在线观看| 日韩精品一区二区三区在线播放| 国产成人在线视频网址| 一区二区三区中文字幕电影| 日韩欧美国产午夜精品| 91丨九色丨蝌蚪丨老版| 无码av免费一区二区三区试看| 精品国产乱码久久| 一本大道久久精品懂色aⅴ| 亚洲蜜臀av乱码久久精品| 黑人精品欧美一区二区蜜桃| 亚洲丝袜另类动漫二区| 欧美群妇大交群中文字幕| 久久99国产精品尤物| 亚洲欧美色图小说| 精品国精品自拍自在线| 色呦呦日韩精品| 精品一区二区三区免费观看| 一区二区三区精品在线| 久久久久久**毛片大全| 在线播放视频一区| 99免费精品在线观看| 狠狠色丁香婷婷综合久久片| 亚洲成av人片在线| 亚洲视频在线观看一区| 欧美xfplay| 欧美精品丝袜中出| 欧美性色欧美a在线播放| 成人自拍视频在线观看| 精品一区二区久久久| 亚洲高清不卡在线观看| 亚洲欧美日韩精品久久久久| 久久久综合精品| 精品蜜桃在线看| 欧美群妇大交群中文字幕| 91黄色激情网站| 99久久99精品久久久久久| 国产成a人亚洲精品| 麻豆精品在线看| 免费人成黄页网站在线一区二区 | av一二三不卡影片| 黄色精品一二区| 久久er99热精品一区二区| 日韩精品一二三区| 亚洲成人激情自拍| 午夜av一区二区三区| 一区二区国产盗摄色噜噜| 亚洲少妇最新在线视频| 中文字幕亚洲电影| 亚洲欧美国产77777| 国产精品久久久久影院亚瑟 | 丰满白嫩尤物一区二区| 国产成人日日夜夜| 国产成人啪午夜精品网站男同| 国产美女av一区二区三区| 国产在线国偷精品免费看| 九九九久久久精品| 精品综合久久久久久8888| 极品美女销魂一区二区三区| 精品一区在线看| 国产激情视频一区二区在线观看| 国产99精品视频| 成人免费视频一区二区| 91污在线观看| 在线视频中文字幕一区二区| 欧美午夜精品免费| 91精品免费在线| 精品久久久久香蕉网| 中文字幕精品在线不卡| 中文字幕一区日韩精品欧美| 亚洲影视在线观看| 免费高清成人在线| 成人综合在线观看| 在线中文字幕一区二区| 欧美一二区视频| 国产午夜精品一区二区三区四区| 日本一区二区电影| 亚洲一区中文在线| 美女网站视频久久| caoporen国产精品视频| 欧美色涩在线第一页| 欧美一级精品在线| 国产无人区一区二区三区| 亚洲美女淫视频| 九九热在线视频观看这里只有精品| 国产在线播放一区| 日本久久一区二区| 欧美va亚洲va| 亚洲日本一区二区| 美女一区二区视频| 91在线国产福利| 欧美一二三区精品| 亚洲日本一区二区三区| 久久精品国产在热久久| 一本到一区二区三区| 欧美videos中文字幕| 亚洲欧美另类小说视频| 韩国精品主播一区二区在线观看 | 大尺度一区二区| 欧美精品亚洲一区二区在线播放| 国产日韩av一区| 日韩极品在线观看| 成人99免费视频| 精品乱人伦一区二区三区| 一区二区在线观看视频在线观看| 麻豆国产精品777777在线| 91丨porny丨首页| 26uuu国产日韩综合| 风间由美性色一区二区三区| 51精品久久久久久久蜜臀| 自拍偷拍欧美激情| 国产高清成人在线| 91精品国产高清一区二区三区蜜臀 | 久久久欧美精品sm网站| 午夜精品在线看| 色婷婷狠狠综合| 国产精品电影一区二区三区| 精品一区二区三区免费| 欧美一区二区三区婷婷月色| 一区二区三区四区蜜桃| 成人性生交大片免费 | 在线91免费看| 洋洋成人永久网站入口| 国产精品香蕉一区二区三区| 日韩精品资源二区在线| 亚洲国产精品久久一线不卡| 91麻豆福利精品推荐| 亚洲欧洲另类国产综合| 国产精品一品二品| 久久综合狠狠综合| 九色|91porny| 欧美大胆一级视频| 精品一区二区三区在线播放| 91精品国产综合久久福利软件 | 一区二区三区在线观看视频| 成人激情免费电影网址| 国产精品日韩成人| 成人毛片视频在线观看|