Searched refs:_limit (Results 1 - 7 of 7) sorted by relevance
/third_party/lzma/CPP/Common/ |
H A 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...] |
H A D | MyString.h | 272 unsigned _limit;
member in AString 347 if (minLen > _limit)
in GetBuf() 353 if (minLen > _limit)
in GetBuf_SetEnd() 378 if (_limit == _len)
in operator +=() 494 memset(_chars, 0, (_limit + 1) * sizeof(*_chars));
in Wipe_and_Empty() 553 unsigned _limit;
member in UString 632 availBufLen = _limit;
639 if (minLen > _limit)
in GetBuf() 645 if (minLen > _limit)
in GetBuf_SetEnd() 673 if (_limit in operator +=() [all...] |
/third_party/python/Lib/asyncio/ |
H A D | streams.py | 406 self._limit = limit 427 if self._limit != _DEFAULT_LIMIT: 428 info.append(f'limit={self._limit}') 464 if self._paused and len(self._buffer) <= self._limit: 487 len(self._buffer) > 2 * self._limit): 515 # This is essential for readexactly(n) for case when n > self._limit. 622 if offset > self._limit: 639 if isep > self._limit: 680 # bytes. So just call self.read(self._limit) until EOF. 683 block = await self.read(self._limit) [all...] |
H A 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/icu/icu4c/source/test/cintltst/ |
H A 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/libwebsockets/lib/misc/ |
H A D | lws-struct-sqlite.c | 182 struct lwsac **ac, int start, int _limit) in lws_struct_sq3_deserialize() 184 int limit = _limit < 0 ? -_limit : _limit; in lws_struct_sq3_deserialize() 219 _limit < 0 ? "desc " : "", limit); in lws_struct_sq3_deserialize() 180 lws_struct_sq3_deserialize(sqlite3 *pdb, const char *filter, const char *order, const lws_struct_map_t *schema, lws_dll2_owner_t *o, struct lwsac **ac, int start, int _limit) lws_struct_sq3_deserialize() argument
|
/third_party/python/Lib/test/ |
H A D | test_zipfile.py | 689 self._limit = zipfile.ZIP64_LIMIT 818 zipfile.ZIP64_LIMIT = self._limit
|
Completed in 12 milliseconds