HomeSort by relevance Sort by last modified time
    Searched full:_size (Results 151 - 175 of 726) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
algorithmfwd.h 224 template<typename _IIter, typename _Size, typename _OIter>
226 copy_n(_IIter, _Size, _OIter);
244 template<typename _OIter, typename _Size, typename _Tp>
246 fill_n(_OIter, _Size, const _Tp&);
645 template<typename _OIter, typename _Size, typename _Generator>
647 generate_n(_OIter, _Size, _Generator);
739 template<typename _FIter, typename _Size, typename _Tp>
741 search_n(_FIter, _FIter, _Size, const _Tp&);
743 template<typename _FIter, typename _Size, typename _Tp,
746 search_n(_FIter, _FIter, _Size, const _Tp&, _BinaryPredicate)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
algorithm 77 template<typename _InputIterator, typename _Size, typename _OutputIterator>
79 __copy_n(_InputIterator __first, _Size __count,
92 template<typename _RAIterator, typename _Size, typename _OutputIterator>
94 __copy_n(_RAIterator __first, _Size __count,
118 template<typename _InputIterator, typename _Size, typename _OutputIterator>
120 copy_n(_InputIterator __first, _Size __count, _OutputIterator __result)
222 template<typename _InputIterator, typename _Tp, typename _Size>
226 _Size& __n)
240 template<typename _InputIterator, typename _Predicate, typename _Size>
244 _Size& __n
    [all...]
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/
utilities.js 1023 this._size = 0;
1038 ++this._size;
1049 --this._size;
1061 var result = new Array(this._size);
1082 return this._size;
1088 this._size = 0;
1100 this._size = 0;
1116 ++this._size;
1129 --this._size;
1156 var result = new Array(this._size);
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
entenc.c 112 void ec_enc_init(ec_enc *_this,unsigned char *_buf,opus_uint32 _size){
124 _this->storage=_size;
237 void ec_enc_shrink(ec_enc *_this,opus_uint32 _size){
238 celt_assert(_this->offs+_this->end_offs<=_size);
239 OPUS_MOVE(_this->buf+_size-_this->end_offs,
241 _this->storage=_size;
  /bionic/libc/upstream-freebsd/lib/libc/stdio/
wsetup.c 88 fp->_lbfsize = -fp->_bf._size;
90 fp->_w = fp->_flags & __SNBF ? 0 : fp->_bf._size;
setvbuf.c 117 fp->_bf._size = 1;
141 fp->_bf._size = size;
150 fp->_lbfsize = -fp->_bf._size;
  /external/chromium_org/gpu/command_buffer/service/
shader_translator.h 38 VariableInfo(int _type, int _size, int _precision,
41 size(_size),
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
nasm-std.mac 35 %{$strucname}_size EQU $ - %$strucname
50 times %{$strucname}_size-($-%$strucstart) db 0
  /external/lzma/CPP/7zip/Archive/7z/
7zIn.h 102 size_t _size; member in class:NArchive::N7z::CInByte2
108 _size = size;
  /external/srec/portable/include/
pmalloc.h 61 psize_t _Size; /* CELL_OFF <= SIZE_CELL <= _Size */
  /bionic/libc/stdio/
asprintf.c 39 f._bf._size = f._w = 127; /* Leave room for the NUL */
vasprintf.c 39 f._bf._size = f._w = 127; /* Leave room for the NUL */
freopen.c 115 fp->_bf._size = 0;
119 _UB(fp)._size = 0;
123 fp->_lb._size = 0;
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
indirect_size.c 51 _X_INTERNAL PURE FASTCALL GLint __gl ## from ## _size( GLenum e ) \
53 # define ALIAS(from,to) ALIAS2( from, __gl ## to ## _size )
56 _X_INTERNAL PURE FASTCALL GLint __gl ## from ## _size( GLenum e ) \
57 { return __gl ## to ## _size( e ); }
  /frameworks/av/media/libstagefright/include/
avc_utils.h 48 const uint8_t **_data, size_t *_size,
  /frameworks/compile/libbcc/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
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/debug/
array 59 template<std::size_t _Size>
62 std::size_t size() { return _Size; }
68 template<std::size_t _Size>
71 bool empty() { return _Size == 0; }
  /external/chromium_org/tools/deep_memory_profiler/lib/
pageframe.py 18 self._size = size
66 return self._size
69 self._size = size
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_primitive_field.cc 298 "if (this->$name$_size() > 0) {\n"
307 "for (int i = 0; i < this->$name$_size(); i++) {\n");
325 "if (this->$name$_size() > 0) {\n"
335 "for (int i = 0; i < this->$name$_size(); i++) {\n");
357 "for (int i = 0; i < this->$name$_size(); i++) {\n"
363 "data_size = $fixed_size$ * this->$name$_size();\n");
378 "total_size += $tag_size$ * this->$name$_size() + data_size;\n");
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_primitive_field.cc 295 "if (this->$name$_size() > 0) {\n"
304 "for (int i = 0; i < this->$name$_size(); i++) {\n");
322 "if (this->$name$_size() > 0) {\n"
332 "for (int i = 0; i < this->$name$_size(); i++) {\n");
354 "for (int i = 0; i < this->$name$_size(); i++) {\n"
360 "data_size = $fixed_size$ * this->$name$_size();\n");
373 "total_size += $tag_size$ * this->$name$_size() + data_size;\n");
  /external/stlport/stlport/stl/
_algo.h 104 template <class _InputIter, class _Tp, class _Size>
106 count(_InputIter __first, _InputIter __last, const _Tp& __val, _Size& __n) {
113 template <class _InputIter, class _Predicate, class _Size>
115 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) {
228 template <class _OutputIter, class _Size, class _Generator>
230 generate_n(_OutputIter __first, _Size __n, _Generator __gen) {
408 template <class _Size>
409 inline _Size __lg(_Size __n) {
410 _Size __k
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algo.h 104 template <class _InputIter, class _Tp, class _Size>
106 count(_InputIter __first, _InputIter __last, const _Tp& __val, _Size& __n) {
113 template <class _InputIter, class _Predicate, class _Size>
115 count_if(_InputIter __first, _InputIter __last, _Predicate __pred, _Size& __n) {
228 template <class _OutputIter, class _Size, class _Generator>
230 generate_n(_OutputIter __first, _Size __n, _Generator __gen) {
408 template <class _Size>
409 inline _Size __lg(_Size __n) {
410 _Size __k
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
algorithmfwd.h 253 template<typename _OIter, typename _Size, typename _Generator>
255 generate_n(_OIter, _Size, _Generator);
257 template<typename _OIter, typename _Size, typename _Generator>
259 generate_n(_OIter, _Size, _Generator, __gnu_parallel::sequential_tag);
261 template<typename _OIter, typename _Size, typename _Generator>
263 generate_n(_OIter, _Size, _Generator, __gnu_parallel::_Parallelism);
265 template<typename _OIter, typename _Size, typename _Generator,
268 generate_n_switch(_OIter, _Size, _Generator, _IterTag);
270 template<typename _RAIter, typename _Size, typename _Generator>
272 generate_n_switch(_RAIter, _Size, _Generator, random_access_iterator_tag,
    [all...]

Completed in 2243 milliseconds

1 2 3 4 5 67 8 91011>>