Home
last modified time | relevance | path

Searched full:allocated (Results 1 – 25 of 3320) sorted by relevance

12345678910>>...133

/freebsd/sys/contrib/edk2/Include/Library/
H A DMemoryAllocationLib.h21 allocated buffer. The buffer returned is aligned on a 4KB boundary. If Pages is 0, then NULL
27 @return A pointer to the allocated buffer or NULL if allocation fails.
40 allocated buffer. The buffer returned is aligned on a 4KB boundary. If Pages is 0, then NULL
46 @return A pointer to the allocated buffer or NULL if allocation fails.
59 allocated buffer. The buffer returned is aligned on a 4KB boundary. If Pages is 0, then NULL
65 @return A pointer to the allocated buffer or NULL if allocation fails.
75 Frees one or more 4KB pages that were previously allocated with one of the page allocation
79 must have been allocated on a previous call to the page allocation services of the Memory
80 Allocation Library. If it is not possible to free allocated pages, then this function will
83 If Buffer was not allocated with a page allocation function in the Memory Allocation Library,
[all …]
H A DDevicePathLib.h251 DevicePath is NULL, then NULL is returned. If the memory is successfully allocated, then the
252 contents of DevicePath are copied to the newly allocated buffer, and a pointer to that buffer
254 The memory for the new device path is allocated from EFI boot services memory.
255 It is the responsibility of the caller to free the memory allocated.
273 FirstDevicePath in a newly allocated buffer. Only the end-of-device-path device node from
279 If there is not enough memory for the newly allocated buffer, then NULL is returned.
280 The memory for the new device path is allocated from EFI boot services memory. It is the
281 responsibility of the caller to free the memory allocated.
286 @retval NULL If there is not enough memory for the newly allocated buffer.
303 DevicePathNode to a copy of the device path specified by DevicePath in an allocated buffer.
[all …]
/freebsd/lib/libprocstat/
H A Dlibprocstat.3304 call that cleans up the resources allocated by the
314 functions and returns a dynamically allocated (sub-)set of active processes
327 The caller is responsible to free the allocated memory with a subsequent
337 function and returns a dynamically allocated set of signals intercepted by a
341 The caller is responsible to free the allocated memory with a subsequent
375 To free the allocated memory
385 The caller may free the allocated memory with a subsequent
395 structure, and returns the auxiliary vector as a dynamically allocated array of
398 The caller is responsible to free the allocated memory with a subsequent
412 function, and returns a dynamically allocated linked list of filled in
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/alloc_class/
H A Dalloc_class_016_pos.ksh47 # Get the amount allocated to special vdev using vdev 'allocated' property
48 result=$(zpool get -Hp allocated $TESTPOOL $CLASS_DISK0)
50 allocated=$3
51 echo $allocated bytes allocated on special device $CLASS_DISK0
53 # Confirm that at least 20M was allocated
54 if [[ $allocated -lt 20971520 ]]
56 log_fail "$allocated on special vdev $CLASS_DISK0, but expecting 20M"
/freebsd/share/man/man9/
H A DOF_getprop.9182 and copies the value into the newly allocated memory region.
184 the address of the allocated memory in
191 Allocated memory should be released when no longer required
202 copies the value into the newly allocated memory region, and
206 address of allocated memory is stored in
214 Allocated memory should be released when no longer required
225 and copies the value into the newly allocated memory region.
230 the address of the allocated memory in
239 Allocated memory should be released when no longer required
250 and copies the value into the newly allocated memory region, and
[all …]
H A Dzone.9145 In a regular zone, items are allocated from a slab, which is one or more
146 virtually contiguous memory pages that have been allocated from the kernel's
157 For example, some collections of kernel objects are statically allocated
214 each time the item is freed and re-allocated.
271 Slabs allocated to the zone's keg are never freed.
308 method set to internal method that initializes a new allocated slab
352 All items allocated from the zone must be freed to the zone before the zone
368 Items are released back to the zone from which they were allocated by
429 Subsequent allocations from the zone will be satisfied using the pre-allocated
443 Reserved items may be allocated by specifying
[all …]
H A Dhashinit.980 Allocated hash tables are contiguous arrays of
82 entries, allocated using
100 that allocated the hash table.
130 function returns a pointer to an allocated hash table and sets the
138 function returns a pointer to an allocated hash table and sets the
155 The mask for the allocated hash table is returned in
188 to free a hash table allocated by
H A Dmalloc.9152 that was previously allocated by
170 that was previously allocated by
179 function changes the size of the previously allocated memory referenced by
188 If the requested memory cannot be allocated,
208 will free the passed pointer when the requested memory cannot be allocated.
227 Causes the allocated memory to be set to all zeros.
229 For allocations greater than page size, causes the allocated
370 For larger requests, one or more pages is allocated.
389 such things as writing outside the allocated area and imbalanced calls to the
/freebsd/contrib/sendmail/libsm/
H A Dheap.html42 ** Print a list of currently allocated blocks,
90 maintains a hash table describing all currently allocated
114 If the space cannot be allocated, then the object pointed to
164 following values with each currently allocated block:
175 the block was allocated, but you can specify an arbitrary
181 allocated.
186 allocated and will never be freed. The meanings of other group
188 Unless you take special action, all blocks allocated by
197 tag values associated with each allocated block.
231 will assign a newly allocated block to.
[all …]
H A Drpool.html42 allocated and freed more quickly using resource pools, because:
100 Initially, no memory is allocated for memory pools or resource lists.
116 All of the memory allocated by sm_rpool_malloc_x is freed when
125 before any pooled objects have been allocated using sm_rpool_malloc_x.
128 that will be available in the next pool object to be allocated.
132 as the poolsize, and only a single pool will be allocated
136 then more than one memory pool may be allocated by the rpool
146 pool is closed and a new memory pool is allocated, from which the
180 All memory allocated using sm_rpool_malloc_x
/freebsd/contrib/libcbor/src/cbor/
H A Dmaps.c18 return item->metadata.map_metadata.allocated; in cbor_map_allocated()
28 .metadata = {.map_metadata = {.allocated = size, in cbor_new_definite_map()
44 .metadata = {.map_metadata = {.allocated = 0, in cbor_new_indefinite_map()
58 if (metadata->end_ptr >= metadata->allocated) { in _cbor_map_add_key()
66 if (metadata->end_ptr >= metadata->allocated) { in _cbor_map_add_key()
69 if (!_cbor_safe_to_multiply(CBOR_BUFFER_GROWTH, metadata->allocated)) { in _cbor_map_add_key()
73 size_t new_allocation = metadata->allocated == 0 in _cbor_map_add_key()
75 : CBOR_BUFFER_GROWTH * metadata->allocated; in _cbor_map_add_key()
85 metadata->allocated = new_allocation; in _cbor_map_add_key()
H A Darrays.c19 return item->metadata.array_metadata.allocated; in cbor_array_allocated()
51 if (metadata->end_ptr >= metadata->allocated) { in cbor_array_push()
57 if (metadata->end_ptr >= metadata->allocated) { in cbor_array_push()
59 if (!_cbor_safe_to_multiply(CBOR_BUFFER_GROWTH, metadata->allocated)) { in cbor_array_push()
63 size_t new_allocation = metadata->allocated == 0 in cbor_array_push()
65 : CBOR_BUFFER_GROWTH * metadata->allocated; in cbor_array_push()
74 metadata->allocated = new_allocation; in cbor_array_push()
111 .allocated = size, in cbor_new_definite_array()
126 .allocated = 0, in cbor_new_indefinite_array()
/freebsd/contrib/libfido2/man/
H A Dfido_bio_template.380 type to be allocated, deallocated, changed, and inspected,
83 type to be allocated, deallocated, and inspected.
93 function returns a pointer to a newly allocated, empty
96 If memory cannot be allocated, NULL is returned.
104 must have been previously allocated by
150 function returns a pointer to a newly allocated, empty
153 If memory cannot be allocated, NULL is returned.
161 must have been previously allocated by
H A Dfido_credman_metadata_new.3113 function returns a pointer to a newly allocated, empty
116 If memory cannot be allocated, NULL is returned.
124 must have been previously allocated by
167 function returns a pointer to a newly allocated, empty
170 If memory cannot be allocated, NULL is returned.
178 must have been previously allocated by
257 function returns a pointer to a newly allocated, empty
260 If memory cannot be allocated, NULL is returned.
268 must have been previously allocated by
H A Dfido_dev_open.3111 is a freshly allocated or otherwise closed
130 as previously allocated using
150 function returns a pointer to a newly allocated, empty
152 If memory cannot be allocated, NULL is returned.
156 function returns a pointer to a newly allocated
164 If memory cannot be allocated, NULL is returned.
172 must have been previously allocated by
/freebsd/lib/libefivar/
H A Duefi-dplib.h203 allocated, then the contents of DevicePath are copied to the newly allocated
205 The memory for the new device path is allocated from EFI boot services memory.
206 It is the responsibility of the caller to free the memory allocated.
224 to a copy of FirstDevicePath in a newly allocated buffer. Only the end-of-device-path
231 If there is not enough memory for the newly allocated buffer, then NULL is returned.
232 The memory for the new device path is allocated from EFI boot services memory.
233 It is the responsibility of the caller to free the memory allocated.
238 @retval NULL If there is not enough memory for the newly allocated buffer.
256 in an allocated buffer. The end-of-device-path device node is moved after the
265 The memory is allocated from EFI boot services memory. It is the responsibility
[all …]
/freebsd/sys/contrib/openzfs/module/nvpair/
H A Dnvpair_alloc_fixed.c34 * - it uses a pre-allocated buffer for memory allocations.
35 * - it does _not_ free memory in the pre-allocated buffer.
42 /* pre-allocated buffer for memory allocations */
44 uintptr_t nvb_buf; /* address of pre-allocated buffer */
50 * Initialize the pre-allocated buffer allocator. The caller needs to supply
52 * buf address of pre-allocated buffer
53 * bufsz size of pre-allocated buffer
92 /* don't free memory in the pre-allocated buffer */ in nv_fixed_free()
/freebsd/contrib/wpa/src/eap_peer/
H A Deap_i.h84 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
85 * Returns: Pointer to allocated private data, or %NULL on failure
96 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
99 * Deinitialize the EAP method and free any allocated private data.
105 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
109 * Returns: Pointer to allocated EAP response packet (eapRespData)
124 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
132 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
145 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
162 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
[all …]
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_disk_set_standard_lookup.c126 char *allocated = NULL; in lookup_gid()
138 free(allocated); in lookup_gid()
139 allocated = malloc(bufsize); in lookup_gid()
140 if (allocated == NULL) in lookup_gid()
142 buffer = allocated; in lookup_gid()
146 free(allocated); in lookup_gid()
195 char *allocated = NULL; in lookup_uid()
207 free(allocated); in lookup_uid()
208 allocated = malloc(bufsize); in lookup_uid()
209 if (allocated in lookup_uid()
127 char *allocated = NULL; lookup_gid() local
196 char *allocated = NULL; lookup_uid() local
[all...]
/freebsd/share/man/man4/
H A Dhwpmc.477 PMCs are allocated using the
83 Subsequent operations on the allocated PMC use this handle to denote
85 A process that has successfully allocated a PMC is termed an
88 PMCs may be allocated with process or system scope.
98 PMCs may be allocated for counting or for sampling:
151 they are allocated on, and will write the sample to a log for further
170 Allocated PMCs are started using the
212 of an allocated PMC:
222 This modifier is valid only for a PMC being allocated in process-private
227 This modifier is valid only for a PMC being allocated in process-private
[all …]
/freebsd/lib/libpmc/
H A Dpmc_allocate.352 and writes the allocated handle to the location pointed to by argument
99 PMCs allocated with flags
108 that the PMC is to be allocated on.
122 specifies the initial value of the allocated PMC.
136 to the handle of the allocated PMC and returns 0.
176 a PMC being allocated by a call to
184 was called without first having allocated a PMC.
190 did not specify a PMC previously allocated by this process.
/freebsd/crypto/krb5/src/util/
H A Dt_array.pm47 size_t allocated;
58 arr->allocated = 10;
65 return arr->allocated;
82 size_t oldsize = sizeof(*arr->elts) * arr->allocated;
88 if (newcount < arr->allocated)
99 arr->allocated = newcount;
106 if (idx < 0 || (unsigned long) idx >= arr->allocated)
/freebsd/sys/contrib/openzfs/man/man1/
H A Darcstat.1178 L2ARC prefetch allocated size per second
180 L2ARC prefetch allocated size percentage
182 L2ARC MFU allocated size per second
184 L2ARC MFU allocated size percentage
186 L2ARC MRU allocated size per second
188 L2ARC MRU allocated size percentage
190 L2ARC data (buf content) allocated size per second
192 L2ARC data (buf content) allocated size percentage
194 L2ARC metadata (buf content) allocated size per second
196 L2ARC metadata (buf content) allocated size percentage
/freebsd/lib/libpmc/pmu-events/arch/x86/haswell/
H A Duncore-other.json12 …"BriefDescription": "Number of entries allocated. Account for Any type: e.g. Snoop, Core aperture,…
17 …"PublicDescription": "Number of entries allocated. Account for Any type: e.g. Snoop, Core aperture…
41 …"BriefDescription": "Total number of Core outgoing entries allocated. Accounts for Coherent and no…
46 …"PublicDescription": "Total number of Core outgoing entries allocated. Accounts for Coherent and n…
51 …"BriefDescription": "Number of Writes allocated - any write transactions: full/partials writes and…
56 …"PublicDescription": "Number of Writes allocated - any write transactions: full/partials writes an…
/freebsd/sys/contrib/xz-embedded/linux/include/linux/
H A Dxz.h41 * dictionary doesn't need to be allocated as
43 * structures are allocated at initialization,
47 * allocated at initialization, so xz_dec_run()
50 * allocated once the required size has been
85 * tried to be allocated was no more than the
192 * Multi-call mode with dynamically allocated dictionary (XZ_DYNALLOC):
207 * @s: Decoder state allocated using xz_dec_init()
232 * @s: Decoder state allocated using xz_dec_init()
268 * xz_dec_reset() - Reset an already allocated decoder state
269 * @s: Decoder state allocated using xz_dec_init()
[all …]

12345678910>>...133