HomeSort by relevance Sort by last modified time
    Searched full:_size (Results 26 - 50 of 730) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/eigen/bench/btl/actions/
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...]
action_axpby.hh 36 Action_axpby( int size ):_size(size),_alpha(0.5),_beta(0.95)
41 init_vector<pseudo_random>(X_stl,_size);
42 init_vector<pseudo_random>(Y_stl,_size);
43 init_vector<null_function>(resu_stl,_size);
79 return 3.0*_size;
83 Interface::copy_vector(X_ref,X,_size);
84 Interface::copy_vector(Y_ref,Y,_size);
89 Interface::axpby(_alpha,X,_beta,Y,_size);
94 if (_size>128) return;
98 STL_interface<typename Interface::real_type>::axpby(_alpha,X_stl,_beta,Y_stl,_size);
124 int _size; member in class:Action_axpby
    [all...]
action_axpy.hh 38 Action_axpy( int size ):_size(size),_coef(1.0)
44 init_vector<pseudo_random>(X_stl,_size);
45 init_vector<pseudo_random>(Y_stl,_size);
46 init_vector<null_function>(resu_stl,_size);
90 return 2.0*_size;
94 Interface::copy_vector(X_ref,X,_size);
95 Interface::copy_vector(Y_ref,Y,_size);
100 Interface::axpy(_coef,X,Y,_size);
105 if (_size>128) return;
110 STL_interface<typename Interface::real_type>::axpy(_coef,X_stl,Y_stl,_size);
136 int _size; member in class:Action_axpy
    [all...]
action_lu_decomp.hh 37 Action_lu_decomp( 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);
70 Interface::free_matrix(X_ref,_size);
71 Interface::free_matrix(X,_size);
72 Interface::free_matrix(C,_size);
87 Interface::copy_matrix(X_ref,X,_size);
91 Interface::lu_decomp(X,C,_size);
98 // STL_interface<typename Interface::real_type>::lu_decomp(X_stl,C_stl,_size);
120 int _size; member in class:Action_lu_decomp
    [all...]
action_partial_lu.hh 37 Action_partial_lu( int size ):_size(size)
42 init_matrix<pseudo_random>(X_stl,_size);
43 init_matrix<null_function>(C_stl,_size);
46 for (int i=0; i<_size; ++i)
72 Interface::free_matrix(X_ref,_size);
73 Interface::free_matrix(X,_size);
74 Interface::free_matrix(C,_size);
89 Interface::copy_matrix(X_ref,X,_size);
93 Interface::partial_lu_decomp(X,C,_size);
100 // STL_interface<typename Interface::real_type>::lu_decomp(X_stl,C_stl,_size);
121 int _size; member in class:Action_partial_lu
    [all...]
  /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) {
  /prebuilts/misc/common/swig/include/2.0.11/octave/
std_carray.i 19 %fragment(SWIG_Traits_frag(std::carray<_Type, _Size >), "header",
24 template <> struct traits<std::carray<_Type, _Size > > {
27 return "std::carray<" #_Type "," #_Size " >";
34 SWIG_Traits_frag(std::carray<_Type, _Size >),
35 std::carray<_Type, _Size >);
  /prebuilts/misc/common/swig/include/2.0.11/python/
std_carray.i 19 %fragment(SWIG_Traits_frag(std::carray<_Type, _Size >), "header",
24 template <> struct traits<std::carray<_Type, _Size > > {
27 return "std::carray<" #_Type "," #_Size " >";
34 SWIG_Traits_frag(std::carray<_Type, _Size >),
35 std::carray<_Type, _Size >);
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_carray.swg 19 template <class _Type, size_t _Size>
41 iterator end() { return v + _Size; }
44 const_iterator end() const { return v + _Size; }
49 static size_t size() { return _Size; }
61 _Type v[_Size];
  /external/lzma/CPP/7zip/Archive/Common/
OutStreamWithCRC.h 17 UInt64 _size; member in class:COutStreamWithCRC
27 _size = 0;
33 UInt64 GetSize() const { return _size; }
DummyOutStream.cpp 13 _size += realProcessedSize;
OutStreamWithCRC.cpp 14 _size += size;
  /external/mesa3d/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)
  /external/mesa3d/src/gallium/auxiliary/util/
u_memory.h 48 #define MALLOC(_size) os_malloc(_size)
50 #define CALLOC(_count, _size) os_calloc(_count, _size)
54 #define REALLOC(_ptr, _old_size, _size) os_realloc(_ptr, _old_size, _size)
63 #define align_malloc(_size, _alignment) os_malloc_aligned(_size, _alignment)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sec_api/
io_s.h 18 errno_t __cdecl _chsize_s (int _FileHandle,__int64 _Size);
19 errno_t __cdecl _mktemp_s (char *_TemplateName,size_t _Size);
  /external/lzma/CPP/Common/
MyVector.h 10 unsigned _size; member in class:CRecordVector
15 memmove(_items + destIndex, _items + srcIndex, (size_t)(_size - srcIndex) * (size_t)sizeof(T));
20 if (_size == _capacity)
24 memcpy(p, _items, (size_t)_size * (size_t)sizeof(T));
33 CRecordVector(): _items(0), _size(0), _capacity(0) {}
35 CRecordVector(const CRecordVector &v): _items(0), _size(0), _capacity(0)
41 _size = size;
47 unsigned Size() const { return _size; }
48 bool IsEmpty() const { return _size == 0; }
64 memcpy(p, _items, (size_t)_size * (size_t)sizeof(T));
    [all...]
  /external/lzma/CPP/7zip/Common/
LimitedStreams.h 16 UInt64 _size; member in class:CLimitedSequentialInStream
24 _size = streamSize;
43 UInt64 _size; member in class:CLimitedInStream
54 _size = size;
141 UInt64 _size; member in class:CLimitedSequentialOutStream
151 _size = size;
155 bool IsFinishedOK() const { return (_size == 0 && !_overflow); }
156 UInt64 GetRem() const { return _size; }
189 UInt64 _size; member in class:CLimitedCachedInStream
214 _size = size;
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_uninitialized.h 159 template <class _InputIter, class _Size, class _ForwardIter>
162 __ucopy_n(_InputIter __first, _Size __count, _ForwardIter __result,
175 template <class _InputIter, class _Size, class _ForwardIterator>
177 __ucopy_n(_InputIter __first, _Size __count,
182 template <class _InputIter, class _Size, class _ForwardIterator>
184 __ucopy_n(_InputIter __first, _Size __count,
190 template <class _RandomAccessIter, class _Size, class _ForwardIter>
192 __ucopy_n(_RandomAccessIter __first, _Size __count, _ForwardIter __result,
199 template <class _InputIter, class _Size, class _ForwardIter>
201 __ucopy_n(_InputIter __first, _Size __count, _ForwardIter __result
    [all...]

Completed in 1700 milliseconds

12 3 4 5 6 7 8 91011>>