HomeSort by: relevance | last modified time | path
    Searched defs:needed_size (Results 1 - 7 of 7) sorted by relevancy

  /src/external/lgpl3/mpc/dist/src/
get_x.c 207 size_t needed_size; local
218 needed_size = strlen (real_str) + strlen (imag_str) + 4;
220 complex_str = mpc_alloc_str (needed_size);
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_cotable.c 514 size_t needed_size; local
518 needed_size = (vcotbl->seen_entries + 1) * co_info[vcotbl->type].size;
519 while (needed_size > new_size)
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_allocator.cc 428 uptr needed_size = rounded_size + rz_size; local
430 needed_size += alignment;
434 if (!PrimaryAllocator::CanAllocate(needed_size, alignment)) {
435 needed_size += rz_size;
438 CHECK(IsAligned(needed_size, min_alignment));
439 if (size > kMaxAllowedMallocSize || needed_size > kMaxAllowedMallocSize) {
445 ReportAllocationSizeTooBig(size, needed_size, kMaxAllowedMallocSize,
453 allocated = allocator.Allocate(cache, needed_size, 8);
457 allocated = allocator.Allocate(cache, needed_size, 8);
476 uptr alloc_end = alloc_beg + needed_size;
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_allocator.cpp 557 uptr needed_size = rounded_size + rz_size; local
559 needed_size += alignment;
560 bool from_primary = PrimaryAllocator::CanAllocate(needed_size, alignment);
564 needed_size += rz_size;
565 CHECK(IsAligned(needed_size, min_alignment));
566 if (size > kMaxAllowedMallocSize || needed_size > kMaxAllowedMallocSize ||
575 ReportAllocationSizeTooBig(size, needed_size, malloc_limit, stack);
582 allocated = allocator.Allocate(cache, needed_size, 8);
586 allocated = allocator.Allocate(cache, needed_size, 8);
596 uptr alloc_end = alloc_beg + needed_size;
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_allocator.cpp 512 uptr needed_size = rounded_size + rz_size; local
514 needed_size += alignment;
517 if (!PrimaryAllocator::CanAllocate(needed_size, alignment))
518 needed_size += rz_size;
519 CHECK(IsAligned(needed_size, min_alignment));
520 if (size > kMaxAllowedMallocSize || needed_size > kMaxAllowedMallocSize ||
529 ReportAllocationSizeTooBig(size, needed_size, malloc_limit, stack);
536 allocated = allocator.Allocate(cache, needed_size, 8);
540 allocated = allocator.Allocate(cache, needed_size, 8);
559 uptr alloc_end = alloc_beg + needed_size;
    [all...]
  /src/external/gpl3/binutils/dist/binutils/
objdump.c 2827 size_t needed_size = a->start.count + b->start.count;
2830 if (needed_size > a->start.max_count)
2822 size_t needed_size = a->start.count + b->start.count; local
  /src/external/gpl3/binutils.old/dist/binutils/
objdump.c 2836 size_t needed_size = a->start.count + b->start.count;
2839 if (needed_size > a->start.max_count)
2831 size_t needed_size = a->start.count + b->start.count; local

Completed in 36 milliseconds