Hackfut Security File Manager
Current Path:
/usr/include/c++/4.4.4/bits
usr
/
include
/
c++
/
4.4.4
/
bits
/
📁
..
📄
algorithmfwd.h
(20.26 KB)
📄
allocator.h
(5.07 KB)
📄
atomic_0.h
(13.64 KB)
📄
atomic_2.h
(12.48 KB)
📄
atomicfwd_c.h
(4.64 KB)
📄
atomicfwd_cxx.h
(2.85 KB)
📄
basic_ios.h
(14.6 KB)
📄
basic_ios.tcc
(5.9 KB)
📄
basic_string.h
(97.38 KB)
📄
basic_string.tcc
(38.41 KB)
📄
boost_concept_check.h
(26.38 KB)
📄
char_traits.h
(16.03 KB)
📄
cmath.tcc
(1.61 KB)
📄
codecvt.h
(16.12 KB)
📄
concept_check.h
(3.24 KB)
📄
cpp_type_traits.h
(9.44 KB)
📄
deque.tcc
(26.29 KB)
📄
forward_list.h
(43.7 KB)
📄
forward_list.tcc
(15.44 KB)
📄
fstream.tcc
(26.6 KB)
📄
functexcept.h
(2.67 KB)
📄
functional_hash.h
(2 KB)
📄
gslice.h
(5.32 KB)
📄
gslice_array.h
(7.54 KB)
📄
hashtable.h
(1.83 KB)
📄
indirect_array.h
(7.63 KB)
📄
ios_base.h
(27.54 KB)
📄
istream.tcc
(28.77 KB)
📄
list.tcc
(11.01 KB)
📄
locale_classes.h
(23 KB)
📄
locale_classes.tcc
(7.12 KB)
📄
locale_facets.h
(88.42 KB)
📄
locale_facets.tcc
(37.85 KB)
📄
locale_facets_nonio.h
(63.95 KB)
📄
locale_facets_nonio.tcc
(40.15 KB)
📄
localefwd.h
(4.94 KB)
📄
mask_array.h
(7.37 KB)
📄
move.h
(2.64 KB)
📄
ostream.tcc
(12.15 KB)
📄
ostream_insert.h
(3.86 KB)
📄
postypes.h
(8.01 KB)
📄
shared_ptr.h
(47.51 KB)
📄
slice_array.h
(9.07 KB)
📄
sstream.tcc
(8.84 KB)
📄
stl_algo.h
(203 KB)
📄
stl_algobase.h
(39.03 KB)
📄
stl_bvector.h
(25.58 KB)
📄
stl_construct.h
(4.84 KB)
📄
stl_deque.h
(59.5 KB)
📄
stl_function.h
(21.74 KB)
📄
stl_heap.h
(19.59 KB)
📄
stl_iterator.h
(32.24 KB)
📄
stl_iterator_base_funcs.h
(6.65 KB)
📄
stl_iterator_base_types.h
(6.33 KB)
📄
stl_list.h
(48.04 KB)
📄
stl_map.h
(30.72 KB)
📄
stl_multimap.h
(28.77 KB)
📄
stl_multiset.h
(24.12 KB)
📄
stl_numeric.h
(12.96 KB)
📄
stl_pair.h
(8.23 KB)
📄
stl_queue.h
(18.34 KB)
📄
stl_raw_storage_iter.h
(3.31 KB)
📄
stl_relops.h
(4.38 KB)
📄
stl_set.h
(24.3 KB)
📄
stl_stack.h
(9.51 KB)
📄
stl_tempbuf.h
(6.34 KB)
📄
stl_tree.h
(42.62 KB)
📄
stl_uninitialized.h
(14.76 KB)
📄
stl_vector.h
(41.33 KB)
📄
stream_iterator.h
(6.27 KB)
📄
streambuf.tcc
(4.81 KB)
📄
streambuf_iterator.h
(11.89 KB)
📄
stringfwd.h
(2.15 KB)
📄
unique_ptr.h
(12.41 KB)
📄
valarray_after.h
(22.02 KB)
📄
valarray_array.h
(21.23 KB)
📄
valarray_array.tcc
(7.02 KB)
📄
valarray_before.h
(17.78 KB)
📄
vector.tcc
(20.63 KB)
Editing: atomicfwd_c.h
// -*- C++ -*- header. // Copyright (C) 2008, 2009 // Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // Under Section 7 of GPL version 3, you are granted additional // permissions described in the GCC Runtime Library Exception, version // 3.1, as published by the Free Software Foundation. // You should have received a copy of the GNU General Public License and // a copy of the GCC Runtime Library Exception along with this program; // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see // <http://www.gnu.org/licenses/>. /** @file bits/atomicfwd_c.h * This is an internal header file, included by other library headers. * You should not attempt to use it directly. */ // "C" only bits. #define _ATOMIC_MEMBER_ ((__a)->_M_i) // POD base classes for atomic intgral types. struct __atomic_bool_base { bool _M_i; }; struct __atomic_char_base { char _M_i; }; struct __atomic_schar_base { signed char _M_i; }; struct __atomic_uchar_base { unsigned char _M_i; }; struct __atomic_short_base { short _M_i; }; struct __atomic_ushort_base { unsigned short _M_i; }; struct __atomic_int_base { int _M_i; }; struct __atomic_uint_base { unsigned int _M_i; }; struct __atomic_long_base { long _M_i; }; struct __atomic_ulong_base { unsigned long _M_i; }; struct __atomic_llong_base { long long _M_i; }; struct __atomic_ullong_base { unsigned long long _M_i; }; struct __atomic_wchar_t_base { wchar_t _M_i; }; typedef struct __atomic_flag_base atomic_flag; typedef struct __atomic_address_base atomic_address; typedef struct __atomic_bool_base atomic_bool; typedef struct __atomic_char_base atomic_char; typedef struct __atomic_schar_base atomic_schar; typedef struct __atomic_uchar_base atomic_uchar; typedef struct __atomic_short_base atomic_short; typedef struct __atomic_ushort_base atomic_ushort; typedef struct __atomic_int_base atomic_int; typedef struct __atomic_uint_base atomic_uint; typedef struct __atomic_long_base atomic_long; typedef struct __atomic_ulong_base atomic_ulong; typedef struct __atomic_llong_base atomic_llong; typedef struct __atomic_ullong_base atomic_ullong; typedef struct __atomic_wchar_t_base atomic_wchar_t; typedef struct __atomic_short_base atomic_char16_t; typedef struct __atomic_int_base atomic_char32_t; #define atomic_is_lock_free(__a) \ false #define atomic_load_explicit(__a, __x) \ _ATOMIC_LOAD_(__a, __x) #define atomic_load(__a) \ atomic_load_explicit(__a, memory_order_seq_cst) #define atomic_store_explicit(__a, __m, __x) \ _ATOMIC_STORE_(__a, __m, __x) #define atomic_store(__a, __m) \ atomic_store_explicit(__a, __m, memory_order_seq_cst) #define atomic_exchange_explicit(__a, __m, __x) \ _ATOMIC_MODIFY_(__a, =, __m, __x) #define atomic_exchange(__a, __m) \ atomic_exchange_explicit(__a, __m, memory_order_seq_cst) #define atomic_compare_exchange_explicit(__a, __e, __m, __x, __y) \ _ATOMIC_CMPEXCHNG_(__a, __e, __m, __x) #define atomic_compare_exchange(__a, __e, __m) \ _ATOMIC_CMPEXCHNG_(__a, __e, __m, memory_order_seq_cst) #define atomic_fetch_add_explicit(__a, __m, __x) \ _ATOMIC_MODIFY_(__a, +=, __m, __x) #define atomic_fetch_add(__a, __m) \ atomic_fetch_add_explicit(__a, __m, memory_order_seq_cst) #define atomic_fetch_sub_explicit(__a, __m, __x) \ _ATOMIC_MODIFY_(__a, -=, __m, __x) #define atomic_fetch_sub(__a, __m) \ atomic_fetch_sub_explicit(__a, __m, memory_order_seq_cst) #define atomic_fetch_and_explicit(__a, __m, __x) \ _ATOMIC_MODIFY_(__a, &=, __m, __x) #define atomic_fetch_and(__a, __m) \ atomic_fetch_and_explicit(__a, __m, memory_order_seq_cst) #define atomic_fetch_or_explicit(__a, __m, __x) \ _ATOMIC_MODIFY_(__a, |=, __m, __x) #define atomic_fetch_or(__a, __m) \ atomic_fetch_or_explicit(__a, __m, memory_order_seq_cst) #define atomic_fetch_xor_explicit(__a, __m, __x) \ _ATOMIC_MODIFY_(__a, ^=, __m, __x) #define atomic_fetch_xor(__a, __m) \ atomic_fetch_xor_explicit(__a, __m, memory_order_seq_cst)
Upload File
Create Folder