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

1 23 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sec_api/
stdlib_s.h 18 _CRTIMP errno_t __cdecl _itoa_s(int _Value,char *_DstBuf,size_t _Size,int _Radix);
19 _CRTIMP errno_t __cdecl _i64toa_s(__int64 _Val,char *_DstBuf,size_t _Size,int _Radix);
20 _CRTIMP errno_t __cdecl _ui64toa_s(unsigned __int64 _Val,char *_DstBuf,size_t _Size,int _Radix);
21 _CRTIMP errno_t __cdecl _ltoa_s(long _Val,char *_DstBuf,size_t _Size,int _Radix);
24 _CRTIMP errno_t __cdecl _ultoa_s(unsigned long _Val,char *_DstBuf,size_t _Size,int _Radix);
41 _CRTIMP errno_t __cdecl _ecvt_s(char *_DstBuf,size_t _Size,double _Val,int _NumOfDights,int *_PtDec,int *_PtSign);
42 _CRTIMP errno_t __cdecl _fcvt_s(char *_DstBuf,size_t _Size,double _Val,int _NumOfDec,int *_PtDec,int *_PtSign);
43 _CRTIMP errno_t __cdecl _gcvt_s(char *_DstBuf,size_t _Size,double _Val,int _NumOfDigits);
44 _CRTIMP errno_t __cdecl _makepath_s(char *_PathResult,size_t _Size,const char *_Drive,const char *_Dir,const char *_Filename,const char *_Ext);
string_s.h 20 _CRTIMP errno_t __cdecl _strlwr_s(char *_Str,size_t _Size);
21 _CRTIMP errno_t __cdecl _strlwr_s_l(char *_Str,size_t _Size,_locale_t _Locale);
22 _CRTIMP errno_t __cdecl _strnset_s(char *_Str,size_t _Size,int _Val,size_t _MaxCount);
23 _CRTIMP errno_t __cdecl _strupr_s(char *_Str,size_t _Size);
24 _CRTIMP errno_t __cdecl _strupr_s_l(char *_Str,size_t _Size,_locale_t _Locale);
45 _CRTIMP errno_t __cdecl _wcsupr_s(wchar_t *_Str,size_t _Size);
46 _CRTIMP errno_t __cdecl _wcsupr_s_l(wchar_t *_Str,size_t _Size,_locale_t _Locale);
  /prebuilts/ndk/current/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...]
  /external/lzma/CPP/7zip/Common/
StreamObjects.cpp 17 if (_pos >= _size)
19 size_t rem = _size - (size_t)_pos;
35 case STREAM_SEEK_END: offset += _size; break;
97 addSize += _size;
98 if (addSize < _size)
102 return (Byte *)_buffer + _size;
107 dest.CopyFrom((const Byte *)_buffer, _size);
128 size_t rem = _size - _pos;
142 _size += realProcessedSize;
186 _size = size;
    [all...]
InOutTempBuffer.h 18 UInt64 _size; member in class:CInOutTempBuffer
31 UInt64 GetDataSize() const { return _size; }
InOutTempBuffer.cpp 37 _size = 0;
55 _size += processed;
69 _size += cur;
93 while (size < _size)
105 return (_crc == crc && size == _size) ? S_OK : E_FAIL;
LimitedStreams.cpp 11 UInt32 sizeToRead = (UInt32)MyMin((_size - _pos), (UInt64)size);
29 if (_virtPos >= _size)
33 // return (_virtPos == _size) ? S_OK: E_FAIL; // ERROR_HANDLE_EOF
35 UInt64 rem = _size - _virtPos;
58 case STREAM_SEEK_END: offset += _size; break;
203 if (size > _size)
205 if (_size == 0)
214 size = (UInt32)_size;
218 _size -= size;
266 if (_virtPos >= _size)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
malloc.h 48 size_t _size; member in struct:_heapinfo
78 void *__cdecl malloc(size_t _Size);
80 _CRTIMP void *__cdecl _recalloc(void *_Memory,size_t _Count,size_t _Size);
84 _CRTIMP void *__cdecl _aligned_malloc(size_t _Size,size_t _Alignment);
87 _CRTIMP void *__cdecl _aligned_offset_malloc(size_t _Size,size_t _Alignment,size_t _Offset);
88 _CRTIMP void *__cdecl _aligned_realloc(void *_Memory,size_t _Size,size_t _Alignment);
89 _CRTIMP void *__cdecl _aligned_recalloc(void *_Memory,size_t _Count,size_t _Size,size_t _Alignment);
90 _CRTIMP void *__cdecl _aligned_offset_realloc(void *_Memory,size_t _Size,size_t _Alignment,size_t _Offset);
91 _CRTIMP void *__cdecl _aligned_offset_recalloc(void *_Memory,size_t _Count,size_t _Size,size_t _Alignment,size_t _Offset);
103 void * __mingw_aligned_malloc (size_t _Size, size_t _Alignment)
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zSpecStream.cpp 11 _size += realProcessedSize;
  /external/mesa3d/src/gallium/auxiliary/os/
os_memory_debug.h 71 #define os_malloc( _size ) \
72 debug_malloc( __FILE__, __LINE__, __FUNCTION__, _size )
73 #define os_calloc( _count, _size ) \
74 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/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/Common/
InStreamWithCRC.cpp 13 _size += realProcessed;
28 _size += realProcessed;
43 _size = 0;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
memory 73 template<typename _InputIter, typename _Size, typename _ForwardIter>
75 __uninitialized_copy_n(_InputIter __first, _Size __count,
92 template<typename _RandomAccessIter, typename _Size, typename _ForwardIter>
94 __uninitialized_copy_n(_RandomAccessIter __first, _Size __count,
103 template<typename _InputIter, typename _Size, typename _ForwardIter>
105 __uninitialized_copy_n(_InputIter __first, _Size __count,
120 template<typename _InputIter, typename _Size, typename _ForwardIter>
122 uninitialized_copy_n(_InputIter __first, _Size __count,
130 template<typename _InputIter, typename _Size, typename _ForwardIter,
133 __uninitialized_copy_n_a(_InputIter __first, _Size __count
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
memory 73 template<typename _InputIter, typename _Size, typename _ForwardIter>
75 __uninitialized_copy_n(_InputIter __first, _Size __count,
92 template<typename _RandomAccessIter, typename _Size, typename _ForwardIter>
94 __uninitialized_copy_n(_RandomAccessIter __first, _Size __count,
103 template<typename _InputIter, typename _Size, typename _ForwardIter>
105 __uninitialized_copy_n(_InputIter __first, _Size __count,
120 template<typename _InputIter, typename _Size, typename _ForwardIter>
122 uninitialized_copy_n(_InputIter __first, _Size __count,
130 template<typename _InputIter, typename _Size, typename _ForwardIter,
133 __uninitialized_copy_n_a(_InputIter __first, _Size __count
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
memory 73 template<typename _InputIter, typename _Size, typename _ForwardIter>
75 __uninitialized_copy_n(_InputIter __first, _Size __count,
92 template<typename _RandomAccessIter, typename _Size, typename _ForwardIter>
94 __uninitialized_copy_n(_RandomAccessIter __first, _Size __count,
103 template<typename _InputIter, typename _Size, typename _ForwardIter>
105 __uninitialized_copy_n(_InputIter __first, _Size __count,
120 template<typename _InputIter, typename _Size, typename _ForwardIter>
122 uninitialized_copy_n(_InputIter __first, _Size __count,
130 template<typename _InputIter, typename _Size, typename _ForwardIter,
133 __uninitialized_copy_n_a(_InputIter __first, _Size __count
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
memory 73 template<typename _InputIter, typename _Size, typename _ForwardIter>
75 __uninitialized_copy_n(_InputIter __first, _Size __count,
92 template<typename _RandomAccessIter, typename _Size, typename _ForwardIter>
94 __uninitialized_copy_n(_RandomAccessIter __first, _Size __count,
103 template<typename _InputIter, typename _Size, typename _ForwardIter>
105 __uninitialized_copy_n(_InputIter __first, _Size __count,
120 template<typename _InputIter, typename _Size, typename _ForwardIter>
122 uninitialized_copy_n(_InputIter __first, _Size __count,
130 template<typename _InputIter, typename _Size, typename _ForwardIter,
133 __uninitialized_copy_n_a(_InputIter __first, _Size __count
    [all...]
  /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...]
  /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;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_uninitialized.h 178 template<typename _ForwardIterator, typename _Size, typename _Tp>
180 __uninit_fill_n(_ForwardIterator __first, _Size __n,
200 template<typename _ForwardIterator, typename _Size, typename _Tp>
202 __uninit_fill_n(_ForwardIterator __first, _Size __n,
216 template<typename _ForwardIterator, typename _Size, typename _Tp>
218 uninitialized_fill_n(_ForwardIterator __first, _Size __n, const _Tp& __x)
309 template<typename _ForwardIterator, typename _Size, typename _Tp,
312 __uninitialized_fill_n_a(_ForwardIterator __first, _Size __n,
329 template<typename _ForwardIterator, typename _Size, typename _Tp,
332 __uninitialized_fill_n_a(_ForwardIterator __first, _Size __n,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_uninitialized.h 178 template<typename _ForwardIterator, typename _Size, typename _Tp>
180 __uninit_fill_n(_ForwardIterator __first, _Size __n,
200 template<typename _ForwardIterator, typename _Size, typename _Tp>
202 __uninit_fill_n(_ForwardIterator __first, _Size __n,
216 template<typename _ForwardIterator, typename _Size, typename _Tp>
218 uninitialized_fill_n(_ForwardIterator __first, _Size __n, const _Tp& __x)
309 template<typename _ForwardIterator, typename _Size, typename _Tp,
312 __uninitialized_fill_n_a(_ForwardIterator __first, _Size __n,
329 template<typename _ForwardIterator, typename _Size, typename _Tp,
332 __uninitialized_fill_n_a(_ForwardIterator __first, _Size __n,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_uninitialized.h 178 template<typename _ForwardIterator, typename _Size, typename _Tp>
180 __uninit_fill_n(_ForwardIterator __first, _Size __n,
200 template<typename _ForwardIterator, typename _Size, typename _Tp>
202 __uninit_fill_n(_ForwardIterator __first, _Size __n,
216 template<typename _ForwardIterator, typename _Size, typename _Tp>
218 uninitialized_fill_n(_ForwardIterator __first, _Size __n, const _Tp& __x)
309 template<typename _ForwardIterator, typename _Size, typename _Tp,
312 __uninitialized_fill_n_a(_ForwardIterator __first, _Size __n,
329 template<typename _ForwardIterator, typename _Size, typename _Tp,
332 __uninitialized_fill_n_a(_ForwardIterator __first, _Size __n,
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_uninitialized.h 192 template<typename _ForwardIterator, typename _Size, typename _Tp>
194 __uninit_fill_n(_ForwardIterator __first, _Size __n,
214 template<typename _ForwardIterator, typename _Size, typename _Tp>
216 __uninit_fill_n(_ForwardIterator __first, _Size __n,
230 template<typename _ForwardIterator, typename _Size, typename _Tp>
232 uninitialized_fill_n(_ForwardIterator __first, _Size __n, const _Tp& __x)
329 template<typename _ForwardIterator, typename _Size, typename _Tp,
332 __uninitialized_fill_n_a(_ForwardIterator __first, _Size __n,
349 template<typename _ForwardIterator, typename _Size, typename _Tp,
352 __uninitialized_fill_n_a(_ForwardIterator __first, _Size __n,
    [all...]
  /system/extras/tests/memtest/
bandwidth.h 30 : _size(0),
36 if (_size == 0) {
49 _mb_per_sec = (_size*(_num_loops/_BYTES_PER_MB))/(t/_NUM_NS_PER_SEC);
76 size_t size() { return _size; }
91 size_t _size; member in class:BandwidthBenchmark
114 _size = DEFAULT_COPY_SIZE;
116 _size = size;
119 _src = reinterpret_cast<char*>(memalign(64, _size));
124 _dst = reinterpret_cast<char*>(memalign(64, _size));
144 memset(_src, 0x23, _size);
    [all...]
  /bionic/libc/malloc_debug/
README_api.md 18 <i>overall\_size</i> is set to the total size of the buffer returned. If this
19 <i>info\_size</i>
24 <i>backtrace\_size</i> is set to the maximum number of backtrace entries
48 <i>backtrace\_size</i> as returned by the original call to
60 <i>overall\_size</i> divided by <i>info\_size</i>.

Completed in 567 milliseconds

1 23 4 5 6 7 8 91011>>