/netbsd-src/external/mit/expat/dist/tests/ |
H A D | memcheck.c | 45 void *allocation; member 64 entry->allocation = malloc(size); in tracking_malloc() 65 if (entry->allocation == NULL) { in tracking_malloc() 81 return entry->allocation; in tracking_malloc() 89 if (entry->allocation == ptr) { in find_allocation() 148 entry->allocation = realloc(ptr, size); in tracking_realloc() 149 if (entry->allocation == NULL) { in tracking_realloc() 165 entry->allocation = realloc(ptr, size); in tracking_realloc() 166 if (entry->allocation == NULL) { in tracking_realloc() 168 entry->allocation = ptr; in tracking_realloc() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | lto-compress.cc | 51 size_t allocation; member 209 if (stream->allocation < required) in lto_append_to_compression_stream() 211 if (stream->allocation == 0) in lto_append_to_compression_stream() 212 stream->allocation = MIN_STREAM_ALLOCATION; in lto_append_to_compression_stream() 213 while (stream->allocation < required) in lto_append_to_compression_stream() 214 stream->allocation *= 2; in lto_append_to_compression_stream() 216 stream->buffer = (char *) xrealloc (stream->buffer, stream->allocation); in lto_append_to_compression_stream()
|
H A D | ggc-page.cc | 297 char *allocation; member 737 page_group_index (char *allocation, char *page) in page_group_index() argument 739 return (size_t) (page - allocation) >> G.lg_pagesize; in page_group_index() 747 group->in_use |= 1 << page_group_index (group->allocation, page); in set_page_group_in_use() 753 group->in_use &= ~(1 << page_group_index (group->allocation, page)); in clear_page_group_in_use() 853 char *allocation, *a, *enda; in alloc_page() local 861 allocation = XNEWVEC (char, alloc_size); in alloc_page() 863 page = (char *) (((uintptr_t) allocation + G.pagesize - 1) & -G.pagesize); in alloc_page() 864 head_slop = page - allocation; in alloc_page() 866 tail_slop = ((size_t) allocation + alloc_size) & (G.pagesize - 1); in alloc_page() [all …]
|
/netbsd-src/external/bsd/nvi/dist/gtk/ |
H A D | gtkviscreen.c | 50 GtkAllocation *allocation); 465 attributes.x = widget->allocation.x; in gtk_vi_screen_realize() 466 attributes.y = widget->allocation.y; in gtk_vi_screen_realize() 467 attributes.width = widget->allocation.width; in gtk_vi_screen_realize() 468 attributes.height = widget->allocation.height; in gtk_vi_screen_realize() 487 attributes.width = MAX (1, (gint)widget->allocation.width - (gint)attributes.x * 2); in gtk_vi_screen_realize() 488 attributes.height = MAX (1, (gint)widget->allocation.height - (gint)attributes.y * 2); in gtk_vi_screen_realize() 543 GtkAllocation *allocation) in gtk_vi_screen_size_allocate() argument 549 g_return_if_fail (allocation != NULL); in gtk_vi_screen_size_allocate() 553 widget->allocation = *allocation; in gtk_vi_screen_size_allocate() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | lto-compress.c | 51 size_t allocation; member 209 if (stream->allocation < required) in lto_append_to_compression_stream() 211 if (stream->allocation == 0) in lto_append_to_compression_stream() 212 stream->allocation = MIN_STREAM_ALLOCATION; in lto_append_to_compression_stream() 213 while (stream->allocation < required) in lto_append_to_compression_stream() 214 stream->allocation *= 2; in lto_append_to_compression_stream() 216 stream->buffer = (char *) xrealloc (stream->buffer, stream->allocation); in lto_append_to_compression_stream()
|
H A D | ggc-page.c | 297 char *allocation; member 737 page_group_index (char *allocation, char *page) in page_group_index() argument 739 return (size_t) (page - allocation) >> G.lg_pagesize; in page_group_index() 747 group->in_use |= 1 << page_group_index (group->allocation, page); in set_page_group_in_use() 753 group->in_use &= ~(1 << page_group_index (group->allocation, page)); in clear_page_group_in_use() 853 char *allocation, *a, *enda; in alloc_page() local 861 allocation = XNEWVEC (char, alloc_size); in alloc_page() 863 page = (char *) (((uintptr_t) allocation + G.pagesize - 1) & -G.pagesize); in alloc_page() 864 head_slop = page - allocation; in alloc_page() 866 tail_slop = ((size_t) allocation + alloc_size) & (G.pagesize - 1); in alloc_page() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/HistoricalNotes/ |
H A D | 2003-06-26-Reoptimizer2.txt | 7 allocation. It allows you to add, modify, or delete some instructions, 20 register allocation on just the trace, and stitch the trace back into 22 it does its register allocation. (On exits from the trace we have 35 does not handle floating-point register allocation. 96 allocation. 110 5. After the last section is the register allocation output.
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | GwpAsan.rst | 86 The core of GWP-ASan is the guarded allocation pool. Each sampled allocation is 90 allocation pool*. 98 handled by the internal crash handler. Because each allocation is recorded with 108 The guarded allocation pool also provides use-after-free detection. Whenever a 109 sampled allocation is deallocated, we map its guarded slot as inaccessible. Any 113 Please note that the use-after-free detection for a sampled allocation is 175 | | | page boundary? By default (false), we round up allocation … 187 … | | allows better error reports by providing stack traces for allocation and | 225 …| Use after free at 0x7feccab26000 (0 bytes into a 41-byte allocation at 0x7feccab26000) by thread… 262 …| Use after free at 0x7feccab26000 (0 bytes into a 41-byte allocation at 0x7feccab26000) by thread…
|
H A D | ScudoHardenedAllocator.rst | 37 - the Primary allocator: fast and efficient, it services smaller allocation 42 - the Secondary allocator: slower, it services larger allocation sizes via the 79 - the allocation type (malloc, new, new[] or memalign), to detect potential 80 mismatches in the allocation APIs used; 86 the returned chunk to the beginning of the backend allocation (the "block"); 91 small overhead for each allocation. 143 Your linked binary should now make use of the Scudo allocation and deallocation 241 | | | | allocation. … 244 | | | | byte pattern on allocation. … 321 - ``"allocation type mismatch"``: when the optional deallocation type mismatch [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
H A D | ASN1_OBJECT_new.pod | 5 ASN1_OBJECT_new, ASN1_OBJECT_free - object allocation functions 16 The B<ASN1_OBJECT> allocation routines, allocate and free an 32 If the allocation fails, ASN1_OBJECT_new() returns NULL and sets an error
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/ |
H A D | ASN1_OBJECT_new.pod | 5 ASN1_OBJECT_new, ASN1_OBJECT_free - object allocation functions 16 The ASN1_OBJECT allocation routines, allocate and free an 32 If the allocation fails, ASN1_OBJECT_new() returns B<NULL> and sets an error
|
H A D | X509_new.pod | 6 X509_new, X509_free, X509_up_ref - X509 certificate ASN1 allocation functions 19 The X509 ASN1 allocation routines, allocate and free an 46 If the allocation fails, X509_new() returns B<NULL> and sets an error
|
/netbsd-src/external/mit/libcbor/dist/ |
H A D | CHANGELOG.md | 7 - BREAKING: Fix handling & cleanup of failed memory allocation in constructor 10 when memory allocation fails 26 - Reworked (re)allocation to handle huge inputs and overflows in size_t [#16]
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/ |
H A D | free_tree.d | 460 byte[] allocation; 463 if (allocation.ptr) return null; in allocate() 464 allocation = new byte[](s); in allocate() 465 return allocation; in allocate() 470 allocation = null; in deallocate()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/building_blocks/ |
H A D | free_tree.d | 466 byte[] allocation; 469 if (allocation.ptr) return null; in allocate() 470 allocation = new byte[](s); in allocate() 471 return allocation; in allocate() 476 allocation = null; in deallocate()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/internal/ |
H A D | memory.d | 20 of the allocation is null, with the consequence that errno will not be 23 it is a programmer error to use this function if the requested allocation
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/AMDGPU/ |
H A D | gfx90a_hwreg.rst | 51 HW_REG_GPR_ALLOC Per-wave SGPR and VGPR allocation. 52 HW_REG_LDS_ALLOC Per-wave LDS allocation.
|
H A D | gfx7_hwreg.rst | 51 HW_REG_GPR_ALLOC Per-wave SGPR and VGPR allocation. 52 HW_REG_LDS_ALLOC Per-wave LDS allocation.
|
H A D | gfx8_hwreg.rst | 51 HW_REG_GPR_ALLOC Per-wave SGPR and VGPR allocation. 52 HW_REG_LDS_ALLOC Per-wave LDS allocation.
|
H A D | gfx9_hwreg.rst | 51 HW_REG_GPR_ALLOC Per-wave SGPR and VGPR allocation. 52 HW_REG_LDS_ALLOC Per-wave LDS allocation.
|
H A D | gfx10_hwreg.rst | 51 HW_REG_GPR_ALLOC Per-wave SGPR and VGPR allocation. 52 HW_REG_LDS_ALLOC Per-wave LDS allocation.
|
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/bios/ |
H A D | amdgpu_command_table.c | 950 SET_PIXEL_CLOCK_PS_ALLOCATION allocation; in set_pixel_clock_v3() local 952 memset(&allocation, 0, sizeof(allocation)); in set_pixel_clock_v3() 955 allocation.sPCLKInput.ucPpll = ATOM_PPLL1; in set_pixel_clock_v3() 957 allocation.sPCLKInput.ucPpll = ATOM_PPLL2; in set_pixel_clock_v3() 961 allocation.sPCLKInput.usRefDiv = in set_pixel_clock_v3() 963 allocation.sPCLKInput.usFbDiv = in set_pixel_clock_v3() 965 allocation.sPCLKInput.ucFracFbDiv = in set_pixel_clock_v3() 967 allocation.sPCLKInput.ucPostDiv = in set_pixel_clock_v3() 971 allocation.sPCLKInput.usPixelClock = in set_pixel_clock_v3() 974 params = (PIXEL_CLOCK_PARAMETERS_V3 *)&allocation.sPCLKInput; in set_pixel_clock_v3() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libiberty/ |
H A D | obstacks.texi | 13 are implemented with macros, so allocation is usually very fast as long as 54 of object. Dynamic allocation of obstacks allows your program to have a 118 Initialize obstack @var{obstack-ptr} for allocation of objects. This 120 allocation of memory fails, the function pointed to by 123 obstack returned 0 if allocation failed). 156 alignment, and memory allocation functions. A @var{chunk_size} or 165 allocation functions that take an extra first argument, @var{arg}. 188 @cindex allocation (obstacks) 204 @code{obstack_alloc_failed_handler} if allocation of memory by 231 @code{obstack_alloc_failed_handler} if allocation of memory by [all …]
|
/netbsd-src/external/gpl3/binutils/dist/libiberty/ |
H A D | obstacks.texi | 13 are implemented with macros, so allocation is usually very fast as long as 54 of object. Dynamic allocation of obstacks allows your program to have a 118 Initialize obstack @var{obstack-ptr} for allocation of objects. This 120 allocation of memory fails, the function pointed to by 123 obstack returned 0 if allocation failed). 156 alignment, and memory allocation functions. A @var{chunk_size} or 165 allocation functions that take an extra first argument, @var{arg}. 188 @cindex allocation (obstacks) 204 @code{obstack_alloc_failed_handler} if allocation of memory by 231 @code{obstack_alloc_failed_handler} if allocation of memory by [all …]
|
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/ |
H A D | obstacks.texi | 13 are implemented with macros, so allocation is usually very fast as long as 54 of object. Dynamic allocation of obstacks allows your program to have a 118 Initialize obstack @var{obstack-ptr} for allocation of objects. This 120 allocation of memory fails, the function pointed to by 123 obstack returned 0 if allocation failed). 156 alignment, and memory allocation functions. A @var{chunk_size} or 165 allocation functions that take an extra first argument, @var{arg}. 188 @cindex allocation (obstacks) 204 @code{obstack_alloc_failed_handler} if allocation of memory by 231 @code{obstack_alloc_failed_handler} if allocation of memory by [all …]
|