Home
last modified time | relevance | path

Searched refs:current_limit (Results 1 – 4 of 4) sorted by relevance

/third_party/protobuf/php/src/Google/Protobuf/Internal/
DCodedInputStream.php44 private $current_limit; variable in Google\\Protobuf\\Internal\\CodedInputStream
63 $this->current_limit = $end;
96 $closest_limit = min($this->current_limit, $this->total_bytes_limit);
278 ($this->current_limit === $this->total_bytes_limit);
330 $old_limit = $this->current_limit;
336 $byte_limit <= $this->current_limit - $current_position) {
337 $this->current_limit = $current_position + $byte_limit;
353 $this->current_limit = $byte_limit;
377 if ($this->current_limit === PHP_INT_MAX) {
380 return $this->current_limit - $this->current;
/third_party/node/deps/v8/src/heap/
Dpaged-spaces.cc417 Address current_limit = limit(); in MarkLinearAllocationAreaBlack() local
418 if (current_top != kNullAddress && current_top != current_limit) { in MarkLinearAllocationAreaBlack()
420 ->CreateBlackArea(current_top, current_limit); in MarkLinearAllocationAreaBlack()
426 Address current_limit = limit(); in UnmarkLinearAllocationArea() local
427 if (current_top != kNullAddress && current_top != current_limit) { in UnmarkLinearAllocationArea()
429 ->DestroyBlackArea(current_top, current_limit); in UnmarkLinearAllocationArea()
435 Address current_limit = limit(); in MakeLinearAllocationAreaIterable() local
436 if (current_top != kNullAddress && current_top != current_limit) { in MakeLinearAllocationAreaIterable()
445 static_cast<int>(current_limit - current_top), in MakeLinearAllocationAreaIterable()
468 Address current_limit = limit(); in FreeLinearAllocationArea() local
[all …]
/third_party/python/Doc/library/
Dstdtypes.rst5528 ... current_limit = sys.get_int_max_str_digits()
5529 ... if current_limit == 0 or current_limit > upper_bound:
5531 ... elif current_limit < lower_bound:
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h5543 phys_addr_t current_limit; member