HomeSort by relevance Sort by last modified time
    Searched refs:_size (Results 1 - 25 of 281) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/dasm/src/java_cup/
parse_reduce_row.java 18 if (_size <= 0 ) _size = non_terminal.number();
29 protected static int _size = 0; field in class:parse_reduce_row
32 public static int size() {return _size;}
  /external/eigen/bench/btl/actions/
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_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_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_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_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...]
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_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...]
  /external/chromium_org/third_party/mesa/src/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)
  /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)
  /bootable/recovery/minadbd/
utils.h 65 #define BUFF_DECL(_buff,_cursor,_end,_size) \
66 char _buff[_size], *_cursor=_buff, *_end = _cursor + (_size)
  /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; }
  /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) {
  /system/extras/tests/memtest/
bandwidth.h 26 : _size(0),
32 if (_size == 0) {
45 _mb_per_sec = (_size*(_num_loops/_BYTES_PER_MB))/(t/_NUM_NS_PER_SEC);
72 size_t size() { return _size; }
87 size_t _size; member in class:BandwidthBenchmark
110 _size = DEFAULT_COPY_SIZE;
112 _size = size;
115 _src = reinterpret_cast<char*>(memalign(64, _size));
120 _dst = reinterpret_cast<char*>(memalign(64, _size));
140 memset(_src, 0x23, _size);
    [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/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)
  /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)

Completed in 275 milliseconds

1 2 3 4 5 6 7 8 91011>>