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

12 3 4 5 6 7 8 91011>>

  /external/eigen/bench/btl/actions/
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
  /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;
33 _size = newCap;
37 CDynamicBuffer(): _items(0), _size(0), _pos(0) {}
44 size_t rem = _size - _pos;
MyVector.h 12 unsigned _size; member in class:CRecordVector
17 memmove(_items + destIndex, _items + srcIndex, (size_t)(_size - srcIndex) * sizeof(T));
22 if (_size == _capacity)
26 if (_size != 0)
27 memcpy(p, _items, (size_t)_size * sizeof(T));
36 CRecordVector(): _items(0), _size(0), _capacity(0) {}
38 CRecordVector(const CRecordVector &v): _items(0), _size(0), _capacity(0)
44 _size = size;
50 unsigned Size() const { return _size; }
51 bool IsEmpty() const { return _size == 0; }
    [all...]
  /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)
  /cts/tools/dasm/src/java_cup/
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/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/lzma/CPP/7zip/Archive/7z/
7zSpecStream.h 17 UInt64 _size; member in class:CSequentialInStreamSizeCount2
21 _size = 0;
26 UInt64 GetSize() const { return _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; }
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; }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xalloca.h 52 * #define ALLOCATE_LOCAL_FALLBACK(_size) malloc(_size)
109 # define ALLOCATE_LOCAL(_size) ALLOCATE_LOCAL_FALLBACK(_size)
112 # define ALLOCATE_LOCAL(_size) ALLOCATE_LOCAL_FALLBACK undefined!
  /external/mesa3d/src/gallium/auxiliary/os/
os_memory_debug.h 80 #define os_malloc( _size ) \
81 debug_malloc( __FILE__, __LINE__, __FUNCTION__, _size )
82 #define os_calloc( _count, _size ) \
83 debug_calloc(__FILE__, __LINE__, __FUNCTION__, _count, _size )
  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_input.cpp 23 _name(name), _at_eof(false), _size_found(false), _size(0) {
48 if (_size_found) return _size;
52 _size = st.st_size;
53 return _size;
  /external/lzma/CPP/7zip/Common/
InOutTempBuffer.h 17 UInt64 _size; member in class:CInOutTempBuffer
31 UInt64 GetDataSize() const { return _size; }
StreamObjects.h 41 size_t _size; member in class:CBufInStream
47 _size = size;
83 size_t _size; member in class:CDynBufSeqOutStream
85 CDynBufSeqOutStream(): _size(0) {}
86 void Init() { _size = 0; }
87 size_t GetSize() const { return _size; }
91 void UpdateSize(size_t addSize) { _size += addSize; }
102 size_t _size; member in class:CBufPtrSeqOutStream
109 _size = size;
122 UInt64 _size; member in class:CSequentialOutStreamSizeCount
141 UInt64 _size; member in class:CCachedInStream
    [all...]
  /external/webrtc/talk/app/webrtc/objc/
RTCVideoRendererAdapter.mm 41 _size = CGSizeZero;
47 if (!CGSizeEqualToSize(_size, currentSize)) {
48 _size = currentSize;
49 [_adapter.videoRenderer setSize:_size];
57 CGSize _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/Include/sys/
param.h 153 #define STACK_GROW(sp, _size) (((caddr_t)(sp)) + (_size))
154 #define STACK_SHRINK(sp, _size) (((caddr_t)(sp)) - (_size))
157 #define STACK_ALLOC(sp, _size) ((caddr_t)(sp))
158 #define STACK_MAX(p, _size) (((caddr_t)(p)) + (_size))
160 #define STACK_GROW(sp, _size) (((caddr_t)(sp)) - (_size))
161 #define STACK_SHRINK(sp, _size) (((caddr_t)(sp)) + (_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...]
  /test/vts/utils/python/coverage/
sancov_parser.py 50 self._size = 0
63 self._entry_type * (self._size * 8 / self._bitness),
64 self._sancov_file.read(self._size))
78 self._size = self._sancov_file.tell() - 8
80 if self._size < 0:
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
StringProvider.java 24 int _size; field in class:StringProvider
28 _size = string.length();
33 int numCharsOutstandingInString = _size - _position;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/lld/Core/
Node.h 45 explicit GroupEnd(int size) : Node(Kind::GroupEnd), _size(size) {}
47 int getSize() const { return _size; }
54 int _size; member in class:lld::GroupEnd
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/lld/Core/
Node.h 45 explicit GroupEnd(int size) : Node(Kind::GroupEnd), _size(size) {}
47 int getSize() const { return _size; }
54 int _size; member in class:lld::GroupEnd
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/lld/Core/
Node.h 45 explicit GroupEnd(int size) : Node(Kind::GroupEnd), _size(size) {}
47 int getSize() const { return _size; }
54 int _size; member in class:lld::GroupEnd
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/lld/Core/
Node.h 45 explicit GroupEnd(int size) : Node(Kind::GroupEnd), _size(size) {}
47 int getSize() const { return _size; }
54 int _size; member in class:lld::GroupEnd
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/lld/Core/
Node.h 45 explicit GroupEnd(int size) : Node(Kind::GroupEnd), _size(size) {}
47 int getSize() const { return _size; }
54 int _size; member in class:lld::GroupEnd

Completed in 4690 milliseconds

12 3 4 5 6 7 8 91011>>