| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/container/ |
| array.d | 31 return _length; 42 if (nlength < _length) 43 foreach (ref val; _ptr[nlength .. _length]) common.destroy(val); 45 if (nlength > _length) 46 foreach (ref val; _ptr[_length .. nlength]) common.initialize(val); 47 _length = nlength; 70 return _ptr[_length - 1]; 82 return _ptr[0 .. _length]; 128 immutable len = _length; 129 _length = other._length [all...] |
| hashtab.d | 42 _length = 0; 47 return _length; 52 return !_length; 71 if (--_length < _buckets.length && _length >= 4) 143 if (++_length >= 2 * _buckets.length) 226 size_t _length;
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/container/ |
| binaryheap.d | 90 size_t _length; 102 private @property ref size_t _length() 106 return _payload._length; 116 if (_length < 2) return; 117 for (size_t n = _length - 1; n >= 1; --n) 160 _length = min(_store.length, initialSize); 161 if (_length < 2) return; 174 _length = min(_store.length, initialSize); 187 return typeof(_store[0 .. _length]).init; 190 auto result = _store[0 .. _length]; [all...] |
| rbtree.d | 795 private size_t _length; 952 ++_length; 959 ++_length; 985 return _length; 996 return new RedBlackTree(_end.dup(), _length); 1085 if (this._length != that._length) return false; 1245 _length = 0; 1351 --_length; 1380 --_length; [all...] |
| array.d | 1776 size_t _length; 1922 _store._length = values.length; 1964 return _store.refCountedStore.isInitialized ? _store._length : 0; 2056 return cast(bool)(data.back & (cast(size_t) 1 << ((_store._length - 1) % bitsPerWord))); 2065 data.back |= (cast(size_t) 1 << ((_store._length - 1) % bitsPerWord)); 2070 ~(cast(size_t) 1 << ((_store._length - 1) % bitsPerWord)); 2186 _store._length = newLength; 2226 auto rem = _store._length % bitsPerWord; 2244 ++_store._length; 2293 enforce(_store._length); [all...] |
| /src/external/bsd/libevent/dist/include/event2/ |
| rpc_compat.h | 56 #define EVTAG_LEN(msg, member) ((msg)->member##_length)
|
| rpc.h | 148 #define EVTAG_ARRAY_LEN(msg, member) ((msg)->member##_length)
|
| /src/external/bsd/ntp/dist/sntp/libevent/include/event2/ |
| rpc_compat.h | 57 #define EVTAG_LEN(msg, member) ((msg)->member##_length)
|
| rpc.h | 148 #define EVTAG_ARRAY_LEN(msg, member) ((msg)->member##_length)
|
| /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/ |
| buffer.h | 799 #define ISC__BUFFER_INIT(_b, _base, _length) \ 803 (_b)->length = (_length); \ 934 #define ISC__BUFFER_PUTMEM(_b, _base, _length) \ 939 ISC_REQUIRE(isc_buffer_reserve(&_tmp, _length) == \ 943 (unsigned int)_length); \ 944 if (_length > 0U) { \ 945 memmove(isc_buffer_used(_b), (_base), (_length)); \ 946 (_b)->used += (_length); \ 952 unsigned int _length; \ 956 _length = (unsigned int)strlen(_source); [all...] |
| /src/external/bsd/ntp/dist/libntp/lib/isc/include/isc/ |
| buffer.h | 684 #define ISC__BUFFER_INIT(_b, _base, _length) \ 692 (_b)->length = (_length); \ 795 #define ISC__BUFFER_PUTMEM(_b, _base, _length) \ 797 memcpy(isc_buffer_used(_b), (_base), (_length)); \ 798 (_b)->used += (_length); \ 803 unsigned int _length; \ 805 _length = strlen(_source); \ 807 memcpy(_cp, (_source), _length); \ 808 (_b)->used += (_length); \
|
| /src/external/mpl/bind/include/dns/ |
| code.h | 2218 #define RDATATYPE_FROMTEXT_SW(_hash,_typename,_length,_typep) \ 2221 RDATATYPE_COMPARE("a", 1, _typename, _length, _typep); \ 2224 RDATATYPE_COMPARE("ns", 2, _typename, _length, _typep); \ 2227 RDATATYPE_COMPARE("md", 3, _typename, _length, _typep); \ 2230 RDATATYPE_COMPARE("mf", 4, _typename, _length, _typep); \ 2233 RDATATYPE_COMPARE("cname", 5, _typename, _length, _typep); \ 2234 RDATATYPE_COMPARE("mx", 15, _typename, _length, _typep); \ 2237 RDATATYPE_COMPARE("soa", 6, _typename, _length, _typep); \ 2238 RDATATYPE_COMPARE("ta", 32768, _typename, _length, _typep); \ 2241 RDATATYPE_COMPARE("mb", 7, _typename, _length, _typep); [all...] |
| /src/external/mpl/dhcp/bind/include/dns/ |
| code.h | 2150 #define RDATATYPE_FROMTEXT_SW(_hash,_typename,_length,_typep) \ 2153 RDATATYPE_COMPARE("a", 1, _typename, _length, _typep); \ 2156 RDATATYPE_COMPARE("ns", 2, _typename, _length, _typep); \ 2159 RDATATYPE_COMPARE("md", 3, _typename, _length, _typep); \ 2162 RDATATYPE_COMPARE("mf", 4, _typename, _length, _typep); \ 2165 RDATATYPE_COMPARE("cname", 5, _typename, _length, _typep); \ 2166 RDATATYPE_COMPARE("mx", 15, _typename, _length, _typep); \ 2169 RDATATYPE_COMPARE("soa", 6, _typename, _length, _typep); \ 2170 RDATATYPE_COMPARE("ta", 32768, _typename, _length, _typep); \ 2173 RDATATYPE_COMPARE("mb", 7, _typename, _length, _typep); [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/ |
| cstring.d | 92 res._length = 0; 124 res._length = str.length; 157 res._length = i; 242 return buffPtr[0 .. _length]; 258 size_t _length; // length of the string
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| parallelism.d | 2023 static if (is(typeof(source._length))) 2025 source._length -= (from.length - source.bufPos); 2058 size_t _length; 2062 return _length; 2088 _length = source.length; 2186 _length--; 2277 size_t _length; 2282 return _length; 2296 _length = source.length; 2367 _length-- [all...] |
| random.d | 3122 private immutable size_t _length; 3135 const nBytesToAlloc = size_t.sizeof * (_length / BITS_PER_WORD + int(_length % BITS_PER_WORD != 0)); 3145 _length = numChoices; 3146 hasPackedBits = _length <= size_t.sizeof * 8; 3149 const nWordsToAlloc = _length / BITS_PER_WORD + int(_length % BITS_PER_WORD != 0); 3154 size_t length() const pure nothrow @nogc @safe @property {return _length;} 3166 assert(index < _length); 3176 assert(index < _length); [all...] |
| numeric.d | 3989 size_t _length; 3996 _length = (range.length + _nSteps - 1) / nSteps; 4001 return _length; 4026 _length--; 4031 _length = 0; 4054 _length /= 2; 4062 _length = (range.length + _nSteps - 1) >> bsf(nSteps);
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/gc/impl/conservative/ |
| gc.d | 2176 _length = 0; 2186 _length = 0; 2191 if (_length == _cap) grow(); 2192 _p[_length++] = rng; 2199 return _p[--_length]; 2204 if (_length == 0) 2209 if (_length == 0) 2211 rng = _p[--_length]; 2216 in { assert(idx < _length); } 2222 @property size_t length() const { return _length; } [all...] |
| /src/external/bsd/libevent/dist/ |
| event_rpcgen.py | 593 self._length = length 601 return "(%s)" % self._length 622 dcl = ["ev_uint8_t %s_data[%s];" % (self._name, self._length)] 649 " memcpy(msg->%s_data, value, %s);" % (name, self._length), 692 if not self._length:
|
| /src/external/bsd/ntp/dist/sntp/libevent/ |
| event_rpcgen.py | 593 self._length = length 601 return "(%s)" % self._length 622 dcl = ["ev_uint8_t %s_data[%s];" % (self._name, self._length)] 649 " memcpy(msg->%s_data, value, %s);" % (name, self._length), 692 if not self._length:
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive.h | 282 const void *_buffer, size_t _length);
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/fast_float/ |
| fast_float.h | 199 span(const T* _ptr, size_t _length) : ptr(_ptr), length(_length) {}
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/fast_float/ |
| fast_float.h | 200 span(const T* _ptr, size_t _length) : ptr(_ptr), length(_length) {}
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/range/ |
| package.d | 9138 private size_t _length; 9139 alias _length this;
|