| /src/external/mit/expat/dist/tests/ |
| memcheck.c | 46 void *allocation; member in struct:allocation_entry 66 entry->allocation = malloc(size); 67 if (entry->allocation == NULL) { 83 return entry->allocation; 91 if (entry->allocation == ptr) { 110 /* This is the relevant allocation. Unlink it */ 141 /* Find the allocation entry for this memory */ 150 entry->allocation = realloc(ptr, size); 151 if (entry->allocation == NULL) { 171 entry->allocation = reallocated [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| gdbarch.h | 123 /* Allocation tag, the tag that is associated with every granule of memory in 124 the physical address space. Allocation tags are used to validate memory 126 allocation, member in class:memtag_type
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| gdbarch.h | 122 /* Allocation tag, the tag that is associated with every granule of memory in 123 the physical address space. Allocation tags are used to validate memory 125 allocation, member in class:memtag_type
|
| /src/external/gpl3/gcc/dist/gcc/ |
| lto-compress.cc | 51 size_t allocation; member in struct:lto_compression_stream 209 if (stream->allocation < required) 211 if (stream->allocation == 0) 212 stream->allocation = MIN_STREAM_ALLOCATION; 213 while (stream->allocation < required) 214 stream->allocation *= 2; 216 stream->buffer = (char *) xrealloc (stream->buffer, stream->allocation);
|
| ggc-page.cc | 62 of an allocation request is rounded up to the next power of two 67 allocation state of a particular object to be flipped without 71 pushing and popping of allocation contexts. Only objects allocated 75 array is indexed by the allocation size, in bits, of the pages on 128 /* The number of objects per allocation page, for objects on a page of 139 offset in the allocation bitmap, by precalculating numbers M, S 178 thing you need to do to add a new special allocation size. */ 238 /* A page_entry records the status of an allocation page. This 274 next allocation from this page. */ 290 /* A page_group describes a large allocation from malloc, from whic 297 char *allocation; member in struct:page_group 853 char *allocation, *a, *enda; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| lto-compress.cc | 51 size_t allocation; member in struct:lto_compression_stream 209 if (stream->allocation < required) 211 if (stream->allocation == 0) 212 stream->allocation = MIN_STREAM_ALLOCATION; 213 while (stream->allocation < required) 214 stream->allocation *= 2; 216 stream->buffer = (char *) xrealloc (stream->buffer, stream->allocation);
|
| ggc-page.cc | 62 of an allocation request is rounded up to the next power of two 67 allocation state of a particular object to be flipped without 71 pushing and popping of allocation contexts. Only objects allocated 75 array is indexed by the allocation size, in bits, of the pages on 128 /* The number of objects per allocation page, for objects on a page of 139 offset in the allocation bitmap, by precalculating numbers M, S 178 thing you need to do to add a new special allocation size. */ 238 /* A page_entry records the status of an allocation page. This 274 next allocation from this page. */ 290 /* A page_group describes a large allocation from malloc, from whic 297 char *allocation; member in struct:page_group 853 char *allocation, *a, *enda; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/bios/ |
| amdgpu_command_table.c | 950 SET_PIXEL_CLOCK_PS_ALLOCATION allocation; local 952 memset(&allocation, 0, sizeof(allocation)); 955 allocation.sPCLKInput.ucPpll = ATOM_PPLL1; 957 allocation.sPCLKInput.ucPpll = ATOM_PPLL2; 961 allocation.sPCLKInput.usRefDiv = 963 allocation.sPCLKInput.usFbDiv = 965 allocation.sPCLKInput.ucFracFbDiv = 967 allocation.sPCLKInput.ucPostDiv = 971 allocation.sPCLKInput.usPixelClock [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/ |
| amdgpu_ppatomctrl.c | 1461 SET_VOLTAGE_PS_ALLOCATION allocation; local 1463 (SET_VOLTAGE_PARAMETERS_V1_3 *)&allocation.sASICSetVoltage;
|
| /src/external/bsd/jemalloc.old/dist/src/ |
| jemalloc.c | 287 * situations that cannot tolerate TLS variable access (TLS allocation and very 536 * allocation. 538 * choose[0]: For application allocation. 539 * choose[1]: For internal metadata allocation. 698 * code (in a "broad" sense that doesn't count a reentrant allocation as an 712 * allocation. 1347 * Create enough scaffolding to allow recursive allocation in 1376 /* Initialize data structures which may trigger recursive allocation. */ 1554 /* Recursive allocation relies on functional tsd. */ 1566 /* Initialize narenas before prof_boot2 (for allocation). * 1821 void *allocation = NULL; local 1929 prof_malloc(tsd_tsdn(tsd), allocation, usize, &alloc_ctx, tctx); local [all...] |
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGExprCXX.cpp | 856 // Don't allow allocation of fewer elements than we have initializers. 878 // allocation fails. 1017 // We know this can't overflow; we check this when doing the allocation. 1036 // literal. The allocation must be for at least this much; we emitted a 1320 /// to a replaceable global allocation function. 1338 // Find the allocation or deallocation function that we're calling. 1447 // if the placement allocation function was, but is never passed a size. 1558 // 1. Build a call to the allocation function. 1580 // Emit the allocation call. If the allocator is a global placement 1582 Address allocation = Address::invalid() local [all...] |
| /src/external/bsd/jemalloc/dist/src/ |
| jemalloc.c | 363 * situations that cannot tolerate TLS variable access (TLS allocation and very 549 * allocation. 551 * choose[0]: For application allocation. 552 * choose[1]: For internal metadata allocation. 698 * code (in a "broad" sense that doesn't count a reentrant allocation as an 712 * allocation. 1902 * Create enough scaffolding to allow recursive allocation in 1950 /* Initialize data structures which may trigger recursive allocation. */ 2161 /* Recursive allocation relies on functional tsd. */ 2173 /* Initialize narenas before prof_boot2 (for allocation). * 2508 void *allocation = NULL; local [all...] |