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

1 2 3 4 5 6 7 8 9

  /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;}
parse_action_row.java 19 if (_size <= 0 ) _size = terminal.number();
25 for (int i=0; i<_size; i++)
34 protected static int _size = 0; field in class:parse_action_row
37 public static int size() {return _size;}
  /external/lzma/CPP/7zip/Archive/7z/
7zSpecStream.h 17 UInt64 _size; member in class:CSequentialInStreamSizeCount2
24 _size = 0;
26 UInt64 GetSize() const { return _size; }
  /external/opencv/
WLNonFileByteStream.h 43 int _size; member in class:WLNonFileByteStream
  /frameworks/compile/libbcc/bcinfo/include/bcinfo/Wrap/
file_wrapper_input.h 51 off_t _size; member in class:FileWrapperInput
in_memory_wrapper_input.h 51 size_t _size; member in class:InMemoryWrapperInput
  /external/lzma/CPP/7zip/Archive/Common/
DummyOutStream.h 15 UInt64 _size; member in class:CDummyOutStream
19 void Init() { _size = 0; }
22 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; }
OutStreamWithCRC.h 17 UInt64 _size; member in class:COutStreamWithCRC
27 _size = 0;
33 UInt64 GetSize() const { return _size; }
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fvwrite.c 95 * one _bf._size byte chunk directly (without copying).
109 int _size; local
112 _size = fp->_bf._size;
114 _size = (_size << 1) + 1;
115 } while (_size < blen + len);
116 _base = realloc(fp->_bf._base, _size + 1);
119 fp->_w += _size - fp->_bf._size;
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fvwrite.c 119 * one _bf._size byte chunk directly (without copying).
133 int _size; local
136 _size = fp->_bf._size;
138 _size = (_size << 1) + 1;
139 } while (_size < (int)(blen + len));
141 (size_t)(_size + 1));
144 fp->_w += _size - fp->_bf._size;
    [all...]
  /external/compiler-rt/test/asan/TestCases/
speculative_load.cc 16 unsigned char _size; member in struct:S::_short
26 _data._s._size = 0;
31 return _data._s._size & 1;
  /external/eigen/bench/btl/actions/
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_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_axpby.hh 36 Action_axpby( int size ):_alpha(0.5),_beta(0.95),_size(size)
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 ):_coef(1.0),_size(size)
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_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_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_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.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...]
  /external/lzma/CPP/7zip/Common/
InOutTempBuffer.h 18 UInt64 _size; member in class:CInOutTempBuffer
31 UInt64 GetDataSize() const { return _size; }
  /external/ImageMagick/Magick++/lib/Magick++/
Pixels.h 119 ::ssize_t _size; // Size of the data member in class:Magick::PixelData
  /external/lzma/CPP/Common/
DynamicBuffer.h 9 size_t _size; member in class:CDynamicBuffer
17 size_t delta = _size >= 64 ? _size : 64;
20 size_t newCap = _size + delta;
23 newCap = _size + size;
32 _size = newCap;
36 CDynamicBuffer(): _items(0), _size(0), _pos(0) {}
43 size_t rem = _size - _pos;

Completed in 478 milliseconds

1 2 3 4 5 6 7 8 9