HomeSort by relevance Sort by last modified time
    Searched defs:required_capacity (Results 1 - 6 of 6) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
node.c 83 int required_capacity; local
90 required_capacity = XXXROUNDUP(nch + 1);
91 if (current_capacity < 0 || required_capacity < 0)
93 if (current_capacity < required_capacity) {
94 if (required_capacity > PY_SIZE_MAX / sizeof(node)) {
99 required_capacity * sizeof(node));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
node.c 83 int required_capacity; local
90 required_capacity = XXXROUNDUP(nch + 1);
91 if (current_capacity < 0 || required_capacity < 0)
93 if (current_capacity < required_capacity) {
94 if (required_capacity > PY_SIZE_MAX / sizeof(node)) {
99 required_capacity * sizeof(node));
  /external/libmojo/mojo/edk/system/
channel.cc 483 size_t required_capacity = *buffer_capacity; local
484 if (!required_capacity)
485 required_capacity = kReadBufferSize;
487 *buffer_capacity = required_capacity;
488 return read_buffer_->Reserve(required_capacity);
  /art/compiler/utils/arm/
assembler_thumb2.cc 270 size_t required_capacity = orig_size + table.GetSize(); local
271 if (required_capacity > buffer_.Capacity()) {
272 buffer_.ExtendCapacity(required_capacity);
    [all...]
  /art/compiler/utils/mips/
assembler_mips.cc 2633 size_t required_capacity = orig_size + table.GetSize(); local
    [all...]
  /art/compiler/utils/mips64/
assembler_mips64.cc 2293 size_t required_capacity = orig_size + table.GetSize(); local
    [all...]

Completed in 643 milliseconds