| /freebsd-14.2/contrib/libarchive/libarchive/ |
| H A D | archive_write_disk_set_standard_lookup.c | 126 char *allocated = NULL; in lookup_gid() local 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() local 207 free(allocated); in lookup_uid() 209 if (allocated == NULL) in lookup_uid() 211 buffer = allocated; in lookup_uid() [all …]
|
| /freebsd-14.2/contrib/libcbor/src/cbor/ |
| H A D | maps.c | 18 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 D | arrays.c | 19 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-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_symbolizer_libbacktrace.cpp | 44 uptr size, allocated; member 51 if (needed > data->allocated) { in CplusV3DemangleCallback() 52 data->allocated *= 2; in CplusV3DemangleCallback() 53 if (needed > data->allocated) in CplusV3DemangleCallback() 54 data->allocated = needed; in CplusV3DemangleCallback() 55 char *buf = (char *)InternalAlloc(data->allocated); in CplusV3DemangleCallback() 72 data.allocated = 0; in CplusV3Demangle() 75 if (data.size + 64 > data.allocated) in CplusV3Demangle()
|
| H A D | sanitizer_common_libcdep.cpp | 48 stack_depot_stats.allocated) { in BackgroundThread() 50 stack_depot_stats.n_uniq_ids, stack_depot_stats.allocated >> 20); in BackgroundThread() 51 prev_reported_stack_depot_size = stack_depot_stats.allocated; in BackgroundThread()
|
| /freebsd-14.2/lib/libthr/thread/ |
| H A D | thr_spec.c | 69 if (_thread_keytable[i].allocated == 0) { in _thr_key_create() 70 _thread_keytable[i].allocated = 1; in _thr_key_create() 95 if (_thread_keytable[key].allocated) { in _thr_key_delete() 96 _thread_keytable[key].allocated = 0; in _thr_key_delete() 123 if (_thread_keytable[key].allocated && in _thread_cleanupspecific() 176 !_thread_keytable[key].allocated) in _thr_setspecific() 211 if (_thread_keytable[key].allocated && pthread->specific != NULL && in _thr_getspecific() 235 if (!_thread_keytable[key].allocated) in _thr_tsd_unload()
|
| /freebsd-14.2/sys/crypto/via/ |
| H A D | padlock_cipher.c | 165 padlock_cipher_alloc(struct cryptop *crp, int *allocated) in padlock_cipher_alloc() argument 172 *allocated = 0; in padlock_cipher_alloc() 176 *allocated = 1; in padlock_cipher_alloc() 190 int allocated; in padlock_cipher_process() local 192 buf = padlock_cipher_alloc(crp, &allocated); in padlock_cipher_process() 219 if (allocated) { in padlock_cipher_process() 230 if (allocated) { in padlock_cipher_process()
|
| /freebsd-14.2/contrib/xz/src/liblzma/common/ |
| H A D | outqueue.c | 54 if (outq->cache != NULL && outq->cache->allocated != buf->allocated) in move_head_to_cache() 61 outq->mem_in_use -= lzma_outq_outbuf_memusage(buf->allocated); in move_head_to_cache() 76 outq->mem_allocated -= lzma_outq_outbuf_memusage(buf->allocated); in free_one_cached_buffer() 105 if (outq->cache->allocated != keep_size) in lzma_outq_clear_cache2() 157 if (outq->cache != NULL && outq->cache->allocated == size) in lzma_outq_prealloc_buf() 173 outq->cache->allocated = size; in lzma_outq_prealloc_buf() 214 outq->mem_in_use += lzma_outq_outbuf_memusage(buf->allocated); in lzma_outq_get_buf()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/msan/ |
| H A D | msan_allocator.cpp | 201 void *allocated; in MsanAllocate() local 204 allocated = allocator.Allocate(cache, size, alignment); in MsanAllocate() 208 allocated = allocator.Allocate(cache, size, alignment); in MsanAllocate() 210 if (UNLIKELY(!allocated)) { in MsanAllocate() 221 if (allocator.FromPrimary(allocated)) in MsanAllocate() 222 __msan_clear_and_unpoison(allocated, size); in MsanAllocate() 224 __msan_unpoison(allocated, size); // Mem is already zeroed. in MsanAllocate() 226 __msan_poison(allocated, size); in MsanAllocate() 230 __msan_set_origin(allocated, size, o.raw_id()); in MsanAllocate() 234 RunMallocHooks(allocated, size); in MsanAllocate() [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan_allocator.cpp | 105 void *allocated; in DFsanAllocate() local 108 allocated = allocator.Allocate(cache, size, alignment); in DFsanAllocate() 112 allocated = allocator.Allocate(cache, size, alignment); in DFsanAllocate() 114 if (UNLIKELY(!allocated)) { in DFsanAllocate() 122 reinterpret_cast<Metadata *>(allocator.GetMetaData(allocated)); in DFsanAllocate() 125 internal_memset(allocated, 0, size); in DFsanAllocate() 126 dfsan_set_label(0, allocated, size); in DFsanAllocate() 128 dfsan_set_label(0, allocated, size); in DFsanAllocate() 130 return allocated; in DFsanAllocate()
|
| /freebsd-14.2/crypto/heimdal/lib/ntlm/ |
| H A D | ntlm.c | 100 uint16_t allocated; member 614 domain.allocated = domain.length; in heim_ntlm_encode_type1() 617 domain.allocated = 0; in heim_ntlm_encode_type1() 626 hostname.allocated = 0; in heim_ntlm_encode_type1() 861 if (lm.allocated) in heim_ntlm_decode_type3() 864 if (ntlm.allocated) in heim_ntlm_decode_type3() 867 if (target.allocated) in heim_ntlm_decode_type3() 870 if (username.allocated) in heim_ntlm_decode_type3() 873 if (ws.allocated) in heim_ntlm_decode_type3() 953 ws.allocated = ws.length; in heim_ntlm_encode_type3() [all …]
|
| /freebsd-14.2/contrib/googletest/googletest/samples/ |
| H A D | sample10_unittest.cc | 60 static int allocated() { return allocated_; } in allocated() function in __anondc2de8a90111::Water 76 initially_allocated_ = Water::allocated(); in OnTestStart() 81 int difference = Water::allocated() - initially_allocated_; in OnTestEnd()
|
| /freebsd-14.2/sys/dev/ixl/ |
| H A D | ixl_pf_qmgr.c | 79 qmgr->qinfo[i].allocated = true; in ixl_pf_qmgr_alloc_contiguous() 118 if (!qmgr->qinfo[i].allocated) { in ixl_pf_qmgr_alloc_scattered() 121 qmgr->qinfo[i].allocated = true; in ixl_pf_qmgr_alloc_scattered() 170 if (!qmgr->qinfo[i].allocated) in ixl_pf_qmgr_get_num_free() 186 if (qmgr->qinfo[i].allocated) in ixl_pf_qmgr_get_first_free() 306 if (!qmgr->qinfo[i].allocated) { in ixl_pf_qmgr_find_free_contiguous_block()
|
| /freebsd-14.2/contrib/jemalloc/src/ |
| H A D | base.c | 211 base->allocated += size; in base_extent_bump_alloc_post() 219 assert(base->allocated <= base->resident); in base_extent_bump_alloc_post() 327 base->allocated += sizeof(base_block_t); in base_extent_alloc() 337 assert(base->allocated <= base->resident); in base_extent_alloc() 379 base->allocated = sizeof(base_block_t); in base_new() 385 assert(base->allocated <= base->resident); in base_new() 481 base_stats_get(tsdn_t *tsdn, base_t *base, size_t *allocated, size_t *resident, in base_stats_get() argument 486 assert(base->allocated <= base->resident); in base_stats_get() 488 *allocated = base->allocated; in base_stats_get()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_allocator.cpp | 205 void *allocated; in HwasanAllocate() local 207 allocated = allocator.Allocate(t->allocator_cache(), size, alignment); in HwasanAllocate() 211 allocated = allocator.Allocate(cache, size, alignment); in HwasanAllocate() 213 if (UNLIKELY(!allocated)) { in HwasanAllocate() 222 if (allocator.FromPrimary(allocated)) in HwasanAllocate() 223 internal_memset(allocated, 0, size); in HwasanAllocate() 226 internal_memset(allocated, flags()->malloc_fill_byte, fill_size); in HwasanAllocate() 229 u8 *tail = reinterpret_cast<u8 *>(allocated) + orig_size; in HwasanAllocate() 236 void *user_ptr = allocated; in HwasanAllocate() 257 reinterpret_cast<Metadata *>(allocator.GetMetaData(allocated)); in HwasanAllocate() [all …]
|
| /freebsd-14.2/crypto/openssl/doc/man3/ |
| H A D | SSL_alloc_buffers.pod | 21 control when buffers are freed and allocated. 27 to control where and how buffers are allocated. 46 The SSL_alloc_buffers() function returns 1 if the buffers have been allocated. 47 This value is also returned if the buffers had been allocated before calling
|
| H A D | OSSL_PARAM_BLD.pod | 59 I<bld> into an allocated OSSL_PARAM array. 79 If I<bn> is marked as being securely allocated, its OSSL_PARAM representation 80 will also be securely allocated. 88 If I<bn> is marked as being securely allocated, its OSSL_PARAM representation 89 will also be securely allocated. 119 OSSL_PARAM_BLD_new() returns the allocated OSSL_PARAM_BLD structure, or NULL 122 OSSL_PARAM_BLD_to_param() returns the allocated OSSL_PARAM array, or NULL
|
| /freebsd-14.2/contrib/ncurses/ncurses/tinfo/ |
| H A D | comp_scan.c | 198 static size_t allocated; in next_char() local 207 allocated = 0; in next_char() 234 if (used + (LEXBUFSIZ / 4) >= allocated) { in next_char() 235 allocated += (allocated + LEXBUFSIZ); in next_char() 236 result = typeRealloc(char, allocated, result); in next_char() 245 if (get_text(result + used, (int) (allocated - used))) { in next_char() 257 _nc_STRCAT(result, "\n", allocated); in next_char()
|
| /freebsd-14.2/contrib/tcp_wrappers/ |
| H A D | environ.c | 34 static int allocated = 0; /* environ is, or is not, allocated */ variable 151 envp = allocated ? in addenv() 157 allocated = 1; in addenv()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/powerpc/fsl/ |
| H A D | dcsr.txt | 57 This node represents the region of DCSR space allocated to the EPU 107 This node represents the region of DCSR space allocated to the NPC 144 This node represents the region of DCSR space allocated to the NXC 168 This node represents the region of DCSR space allocated to 202 This node represents the region of DCSR space allocated to 231 This node represents the region of DCSR space allocated to 259 This node represents the region of DCSR space allocated to 291 This node represents the region of DCSR space allocated to 320 This node represents the region of DCSR space allocated to 349 This node represents the region of DCSR space allocated to
|
| /freebsd-14.2/sys/crypto/aesni/ |
| H A D | aesni.c | 326 aesni_cipher_alloc(struct cryptop *crp, int start, int length, bool *allocated) in aesni_cipher_alloc() argument 332 *allocated = false; in aesni_cipher_alloc() 337 *allocated = true; in aesni_cipher_alloc() 340 *allocated = false; in aesni_cipher_alloc() 623 bool encflag, allocated, authallocated, outallocated, outcopy; in aesni_cipher_crypt() local 627 allocated = false; in aesni_cipher_crypt() 630 crp->crp_payload_length, &allocated); in aesni_cipher_crypt() 659 if (allocated) in aesni_cipher_crypt() 674 outcopy = allocated; in aesni_cipher_crypt() 760 if (allocated) in aesni_cipher_crypt()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/dma/ |
| H A D | snps,dma-spear1340.yaml | 32 for transfers on dynamically allocated channel. Fourth cell is the 33 peripheral master identifier for transfers on an allocated channel. Fifth 34 cell is an optional mask of the DMA channels permitted to be allocated 75 (first free allocated), while one - descending (last free allocated).
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | wrappers_c.inc | 75 // Space allocated in mmapped regions (bytes) 77 // Maximum total allocated space (bytes) 81 // Total allocated space (bytes) 95 // Space allocated in mmapped regions (bytes) 97 // Maximum total allocated space (bytes) 101 // Total allocated space (bytes) 212 // pointer as allocated again. 353 // Sets whether scudo zero-initializes all allocated memory. 359 // Sets whether scudo pattern-initializes all allocated memory.
|
| /freebsd-14.2/sys/contrib/openzfs/tests/zfs-tests/tests/functional/xattr/ |
| H A D | xattr_012_pos.ksh | 67 POOL_SIZE=$(get_pool_prop allocated $TESTPOOL) 96 NEW_POOL_SIZE=$(get_pool_prop allocated $TESTPOOL)
|
| /freebsd-14.2/contrib/tcsh/nls/greek/ |
| H A D | set19 | 16 14 Total space allocated from system: %d\n 20 18 Total allocated space: %d\n
|