/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
bitset | 136 template <size_t _N_words, size_t _Size> 139 template <size_t _N_words, size_t _Size> 140 struct __has_storage_type<__bitset<_N_words, _Size> > 145 template <size_t _N_words, size_t _Size> 189 {return to_ulong(integral_constant<bool, _Size < sizeof(unsigned long) * CHAR_BIT>());} 191 {return to_ullong(integral_constant<bool, _Size < sizeof(unsigned long long) * CHAR_BIT>());} 209 template <size_t _N_words, size_t _Size> 212 __bitset<_N_words, _Size>::__bitset() _NOEXCEPT 224 template <size_t _N_words, size_t _Size> 226 __bitset<_N_words, _Size>::__init(unsigned long long __v, false_type) _NOEXCEP [all...] |
array | 120 template <class _Tp, size_t _Size> 137 value_type __elems_[_Size > 0 ? _Size : 1]; 141 {_VSTD::fill_n(__elems_, _Size, __u);} 144 {_VSTD::swap_ranges(__elems_, __elems_ + _Size, __a.__elems_);} 152 iterator end() _NOEXCEPT {return iterator(__elems_ + _Size);} 154 const_iterator end() const _NOEXCEPT {return const_iterator(__elems_ + _Size);} 176 _LIBCPP_CONSTEXPR size_type size() const _NOEXCEPT {return _Size;} 178 _LIBCPP_CONSTEXPR size_type max_size() const _NOEXCEPT {return _Size;} 180 _LIBCPP_CONSTEXPR bool empty() const _NOEXCEPT {return _Size == 0; [all...] |
/external/lzma/CPP/7zip/Archive/Common/ |
DummyOutStream.h | 14 UInt64 _size;
member in class:CDummyOutStream 18 void Init() { _size = 0; }
21 UInt64 GetSize() const { return _size; }
|
OutStreamWithCRC.h | 17 UInt64 _size;
member in class:COutStreamWithCRC 27 _size = 0;
32 UInt64 GetSize() const { return _size; }
|
InStreamWithCRC.h | 22 UInt64 _size;
member in class:CSequentialInStreamWithCRC 29 _size = 0;
35 UInt64 GetSize() const { return _size; }
50 UInt64 _size;
member in class:CInStreamWithCRC 57 _size = 0;
63 UInt64 GetSize() const { return _size; }
|
InStreamWithCRC.cpp | 11 _size += realProcessedSize;
28 _size += realProcessedSize;
39 _size = 0;
|
/external/eigen/bench/btl/actions/ |
action_matrix_matrix_product.hh | 38 Action_matrix_matrix_product( int size ):_size(size) 44 init_matrix<pseudo_random>(A_stl,_size); 45 init_matrix<pseudo_random>(B_stl,_size); 46 init_matrix<null_function>(X_stl,_size); 47 init_matrix<null_function>(resu_stl,_size); 77 Interface::free_matrix(A,_size); 78 Interface::free_matrix(B,_size); 79 Interface::free_matrix(X,_size); 81 Interface::free_matrix(A_ref,_size); 82 Interface::free_matrix(B_ref,_size); 142 int _size; member in class:Action_matrix_matrix_product [all...] |
action_hessenberg.hh | 37 Action_hessenberg( int size ):_size(size) 42 init_matrix<pseudo_random>(X_stl,_size); 44 init_matrix<null_function>(C_stl,_size); 45 init_matrix<null_function>(resu_stl,_size); 53 for (int j=0; j<_size-2; ++j) 55 double r = std::max(0,_size-j-1); 56 double b = std::max(0,_size-j-2); 57 _cost += 6 + 3*b + r*r*4 + r*_size*4; 76 Interface::free_matrix(X_ref,_size); 77 Interface::free_matrix(X,_size); 126 int _size; member in class:Action_hessenberg 229 int _size; member in class:Action_tridiagonalization [all...] |
action_aat_product.hh | 38 Action_aat_product( int size ):_size(size) 44 init_matrix<pseudo_random>(A_stl,_size); 45 init_matrix<null_function>(X_stl,_size); 46 init_matrix<null_function>(resu_stl,_size); 74 Interface::free_matrix(A,_size); 75 Interface::free_matrix(X,_size); 77 Interface::free_matrix(A_ref,_size); 78 Interface::free_matrix(X_ref,_size); 90 return double(_size)*double(_size)*double(_size) 137 int _size; member in class:Action_aat_product [all...] |
action_ata_product.hh | 38 Action_ata_product( int size ):_size(size) 44 init_matrix<pseudo_random>(A_stl,_size); 45 init_matrix<null_function>(X_stl,_size); 46 init_matrix<null_function>(resu_stl,_size); 74 Interface::free_matrix(A,_size); 75 Interface::free_matrix(X,_size); 77 Interface::free_matrix(A_ref,_size); 78 Interface::free_matrix(X_ref,_size); 90 return 2.0*_size*_size*_size 137 int _size; member in class:Action_ata_product [all...] |
action_atv_product.hh | 36 Action_atv_product( int size ) : _size(size) 42 init_matrix<pseudo_random>(A_stl,_size); 43 init_vector<pseudo_random>(B_stl,_size); 44 init_vector<null_function>(X_stl,_size); 45 init_vector<null_function>(resu_stl,_size); 69 Interface::free_matrix(A,_size); 73 Interface::free_matrix(A_ref,_size); 80 double nb_op_base( void ) { return 2.0*_size*_size; } 83 Interface::copy_matrix(A_ref,A,_size); 126 int _size; member in class:Action_atv_product [all...] |
action_symv.hh | 38 BTL_DONT_INLINE Action_symv( int size ):_size(size) 43 init_matrix_symm<pseudo_random>(A_stl,_size); 44 init_vector<pseudo_random>(B_stl,_size); 45 init_vector<null_function>(X_stl,_size); 46 init_vector<null_function>(resu_stl,_size); 68 Interface::free_matrix(A,_size); 71 Interface::free_matrix(A_ref,_size); 84 return 2.0*_size*_size; 89 Interface::copy_matrix(A_ref,A,_size); 134 int _size; member in class:Action_symv [all...] |
action_ger.hh | 32 BTL_DONT_INLINE Action_ger( int size ):_size(size) 38 init_matrix<pseudo_random>(A_stl,_size); 39 init_vector<pseudo_random>(B_stl,_size); 40 init_vector<pseudo_random>(X_stl,_size); 41 init_vector<null_function>(resu_stl,_size); 62 Interface::free_matrix(A,_size); 65 Interface::free_matrix(A_ref,_size); 78 return 2.0*_size*_size; 82 Interface::copy_matrix(A_ref,A,_size); 124 int _size; member in class:Action_ger [all...] |
action_matrix_vector_product.hh | 38 BTL_DONT_INLINE Action_matrix_vector_product( int size ):_size(size) 44 init_matrix<pseudo_random>(A_stl,_size); 45 init_vector<pseudo_random>(B_stl,_size); 46 init_vector<null_function>(X_stl,_size); 47 init_vector<null_function>(resu_stl,_size); 76 Interface::free_matrix(A,_size); 80 Interface::free_matrix(A_ref,_size); 94 return 2.0*_size*_size; 99 Interface::copy_matrix(A_ref,A,_size); 145 int _size; member in class:Action_matrix_vector_product [all...] |
action_syr2.hh | 38 BTL_DONT_INLINE Action_syr2( int size ):_size(size) 42 init_matrix<pseudo_random>(A_stl,_size); 43 init_vector<pseudo_random>(B_stl,_size); 44 init_vector<pseudo_random>(X_stl,_size); 45 init_vector<null_function>(resu_stl,_size); 65 Interface::free_matrix(A,_size); 68 Interface::free_matrix(A_ref,_size); 81 return 2.0*_size*_size; 85 Interface::copy_matrix(A_ref,A,_size); 128 int _size; member in class:Action_syr2 [all...] |
action_cholesky.hh | 37 Action_cholesky( int size ):_size(size) 42 init_matrix_symm<pseudo_random>(X_stl,_size); 43 init_matrix<null_function>(C_stl,_size); 46 for (int i=0; i<_size; ++i) 55 for (int j=0; j<_size; ++j) 57 double r = std::max(_size - j -1,0); 77 Interface::free_matrix(X_ref,_size); 78 Interface::free_matrix(X,_size); 79 Interface::free_matrix(C,_size); 94 Interface::copy_matrix(X_ref,X,_size); 124 int _size; member in class:Action_cholesky [all...] |
action_trisolve.hh | 37 Action_trisolve( int size ):_size(size) 42 init_matrix<pseudo_random>(L_stl,_size); 43 init_vector<pseudo_random>(B_stl,_size); 44 init_vector<null_function>(X_stl,_size); 45 for (int j=0; j<_size; ++j) 52 init_vector<null_function>(resu_stl,_size); 60 for (int j=0; j<_size; ++j) 81 Interface::free_matrix(L,_size); 98 //Interface::copy_vector(X_ref,X,_size); 102 Interface::trisolve_lower(L,B,X,_size); 133 int _size; member in class:Action_trisolve [all...] |
action_rot.hh | 32 BTL_DONT_INLINE Action_rot( int size ):_size(size) 38 init_vector<pseudo_random>(A_stl,_size); 39 init_vector<pseudo_random>(B_stl,_size); 71 return 6.0*_size; 75 Interface::copy_vector(A_ref,A,_size); 76 Interface::copy_vector(B_ref,B,_size); 81 Interface::rot(A,B,0.5,0.6,_size); 89 // STL_interface<typename Interface::real_type>::rot(A_stl,B_stl,X_stl,_size); 112 int _size; member in class:Action_rot
|
action_trisolve_matrix.hh | 38 Action_trisolve_matrix( int size ):_size(size) 44 init_matrix<pseudo_random>(A_stl,_size); 45 init_matrix<pseudo_random>(B_stl,_size); 46 init_matrix<null_function>(X_stl,_size); 47 init_matrix<null_function>(resu_stl,_size); 49 for (int j=0; j<_size; ++j) 67 for (int j=0; j<_size; ++j) 71 _cost *= _size; 90 Interface::free_matrix(A,_size); 91 Interface::free_matrix(B,_size); 156 int _size; member in class:Action_trisolve_matrix [all...] |
action_trmm.hh | 38 Action_trmm( int size ):_size(size) 44 init_matrix<pseudo_random>(A_stl,_size); 45 init_matrix<pseudo_random>(B_stl,_size); 46 init_matrix<null_function>(X_stl,_size); 47 init_matrix<null_function>(resu_stl,_size); 49 for (int j=0; j<_size; ++j) 67 for (int j=0; j<_size; ++j) 71 _cost *= _size; 90 Interface::free_matrix(A,_size); 91 Interface::free_matrix(B,_size); 156 int _size; member in class:Action_trmm [all...] |
/external/lzma/CPP/Common/ |
MyVector.cpp | 16 _size = 0;
21 void CBaseRecordVector::DeleteBack() { Delete(_size - 1); }
22 void CBaseRecordVector::DeleteFrom(int index) { Delete(index, _size - index); }
26 if (_size != _capacity)
52 int numRecordsToMove = (_size < newCapacity ? _size : newCapacity);
62 Reserve(_size);
69 _itemSize * (_size - srcIndex));
76 _size++;
85 _size -= num; [all...] |
/external/lzma/CPP/7zip/Common/ |
StreamObjects.h | 24 size_t _size;
member in class:CBufInStream 30 _size = size;
61 size_t _size;
member in class:CDynBufSeqOutStream 63 CDynBufSeqOutStream(): _size(0) {}
64 void Init() { _size = 0; }
65 size_t GetSize() const { return _size; }
69 void UpdateSize(size_t addSize) { _size += addSize; }
80 size_t _size;
member in class:CBufPtrSeqOutStream 87 _size = size;
100 UInt64 _size;
member in class:CSequentialOutStreamSizeCount 119 UInt64 _size; member in class:CCachedInStream [all...] |
/external/lzma/CPP/7zip/Archive/7z/ |
7zSpecStream.h | 17 UInt64 _size;
member in class:CSequentialInStreamSizeCount2 24 _size = 0;
26 UInt64 GetSize() const { return _size; }
|
/frameworks/compile/libbcc/bcinfo/Wrap/ |
in_memory_wrapper_input.cpp | 23 _buffer(buffer), _pos(0), _size(size) { 37 if (_pos >= _size) { 46 return (_pos >= _size); 50 return _size; 54 if (pos < _size) {
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/ |
os_memory_stdc.h | 43 #define os_malloc(_size) malloc(_size) 44 #define os_calloc(_count, _size ) calloc(_count, _size ) 69 #define os_malloc_aligned(_size, _align) _aligned_malloc(_size, _align)
|