Searched refs:_limit (Results 1 – 8 of 8) sorted by relevance
/third_party/lzma/CPP/Common/ |
D | MyString.cpp | 413 _limit = newLimit; in ReAlloc() 424 _limit = newLimit; in ReAlloc2() 433 _limit = len; in SetStartLen() 453 const unsigned freeSize = _limit - _len; in Grow() 516 _limit = kStartStringCapacity - 1; in AString() 542 if (1 > _limit) in operator =() 547 _limit = 1; in operator =() 559 if (len > _limit) in operator =() 564 _limit = len; in operator =() 576 if (len > _limit) in operator =() [all …]
|
D | MyString.h | 272 unsigned _limit; variable 347 if (minLen > _limit) in GetBuf() 353 if (minLen > _limit) in GetBuf_SetEnd() 378 if (_limit == _len) 494 memset(_chars, 0, (_limit + 1) * sizeof(*_chars)); in Wipe_and_Empty() 553 unsigned _limit; variable 639 if (minLen > _limit) in GetBuf() 645 if (minLen > _limit) in GetBuf_SetEnd() 673 if (_limit == _len) 779 memset(_chars, 0, (_limit + 1) * sizeof(*_chars)); in Wipe_and_Empty()
|
/third_party/python/Lib/asyncio/ |
D | streams.py | 386 self._limit = limit 407 if self._limit != _DEFAULT_LIMIT: 444 if self._paused and len(self._buffer) <= self._limit: 467 len(self._buffer) > 2 * self._limit): 602 if offset > self._limit: 619 if isep > self._limit: 662 block = await self.read(self._limit)
|
D | subprocess.py | 23 self._limit = limit 45 self.stdout = streams.StreamReader(limit=self._limit, 52 self.stderr = streams.StreamReader(limit=self._limit,
|
/third_party/libwebsockets/lib/misc/ |
D | lws-struct-sqlite.c | 182 struct lwsac **ac, int start, int _limit) in lws_struct_sq3_deserialize() argument 184 int limit = _limit < 0 ? -_limit : _limit; in lws_struct_sq3_deserialize() 219 _limit < 0 ? "desc " : "", limit); in lws_struct_sq3_deserialize()
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | uformattedvaluetst.c | 163 int32_t _start, _limit; in AssertAllPartsEqual() local 164 ucfpos_getIndexes(ucfpos, &_start, &_limit, &status); in AssertAllPartsEqual() 167 assertIntEquals(AAPE_MSG("limit"), limit, _limit); in AssertAllPartsEqual()
|
/third_party/node/deps/v8/tools/system-analyzer/view/ |
D | helper.mjs | 243 this._limit = limit; 247 for (let i = 0; i < (limit ?? this._limit); i++) {
|
/third_party/python/Lib/test/ |
D | test_zipfile.py | 683 self._limit = zipfile.ZIP64_LIMIT 812 zipfile.ZIP64_LIMIT = self._limit
|