Home
last modified time | relevance | path

Searched refs:allocated (Results 1 – 25 of 498) sorted by relevance

12345678910>>...20

/freebsd/contrib/libdiff/include/
H A Darraylist.h45 unsigned int allocated; \
52 (ARRAY_LIST).allocated = 0; \
57 if ((ARRAY_LIST).len && !(ARRAY_LIST).allocated) { \
62 || (ARRAY_LIST).allocated < (ARRAY_LIST).len + 1) { \
65 (ARRAY_LIST).allocated + \
66 ((ARRAY_LIST).allocated ? \
67 (ARRAY_LIST).allocated / 2 : \
75 (ARRAY_LIST).allocated += \
76 (ARRAY_LIST).allocated ? \
77 (ARRAY_LIST).allocated / 2 : \
[all …]
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_disk_set_standard_lookup.c126 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/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/lib/libthr/thread/
H A Dthr_spec.c69 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/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_libbacktrace.cpp44 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()
/freebsd/sys/crypto/via/
H A Dpadlock_cipher.c164 padlock_cipher_alloc(struct cryptop *crp, int *allocated) in padlock_cipher_alloc() argument
171 *allocated = 0; in padlock_cipher_alloc()
175 *allocated = 1; in padlock_cipher_alloc()
189 int allocated; in padlock_cipher_process() local
191 buf = padlock_cipher_alloc(crp, &allocated); in padlock_cipher_process()
218 if (allocated) { in padlock_cipher_process()
229 if (allocated) { in padlock_cipher_process()
/freebsd/contrib/xz/src/liblzma/common/
H A Doutqueue.c54 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/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp201 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/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_allocator.cpp105 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/crypto/heimdal/lib/ntlm/
H A Dntlm.c100 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/contrib/googletest/googletest/samples/
H A Dsample10_unittest.cc60 static int allocated() { return allocated_; } in allocated() function in __anon17ee14bb0111::Water
76 initially_allocated_ = Water::allocated(); in OnTestStart()
81 int difference = Water::allocated() - initially_allocated_; in OnTestEnd()
/freebsd/sys/dev/ixl/
H A Dixl_pf_qmgr.c79 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/sys/contrib/openzfs/tests/zfs-tests/tests/functional/raidz/
H A Draidz_expand_003_neg.ksh96 allocated=$(zpool list -Hp -o allocated $pool)
97 log_must set_tunable64 RAIDZ_EXPAND_MAX_REFLOW_BYTES $((allocated / 4))
/freebsd/contrib/jemalloc/src/
H A Dbase.c211 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/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cpp205 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/contrib/ncurses/ncurses/tinfo/
H A Dcomp_scan.c167 static size_t allocated; in next_char() local
176 allocated = 0; in next_char()
203 if (used + (LEXBUFSIZ / 4) >= allocated) { in next_char()
204 allocated += (allocated + LEXBUFSIZ); in next_char()
205 result = typeRealloc(char, allocated, result); in next_char()
214 if (fgets(result + used, (int) (allocated - used), yyin) != 0) { in next_char()
226 _nc_STRCAT(result, "\n", allocated); in next_char()
/freebsd/crypto/openssl/doc/man3/
H A DSSL_alloc_buffers.pod21 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
/freebsd/contrib/tcp_wrappers/
H A Denviron.c34 static int allocated = 0; /* environ is, or is not, allocated */ variable
151 envp = allocated ? in addenv()
157 allocated = 1; in addenv()
/freebsd/sys/contrib/device-tree/Bindings/powerpc/fsl/
H A Ddcsr.txt57 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/sys/crypto/aesni/
H A Daesni.c325 aesni_cipher_alloc(struct cryptop *crp, int start, int length, bool *allocated) in aesni_cipher_alloc() argument
331 *allocated = false; in aesni_cipher_alloc()
336 *allocated = true; in aesni_cipher_alloc()
339 *allocated = false; in aesni_cipher_alloc()
622 bool encflag, allocated, authallocated, outallocated, outcopy; in aesni_cipher_crypt() local
626 allocated = false; in aesni_cipher_crypt()
629 crp->crp_payload_length, &allocated); in aesni_cipher_crypt()
658 if (allocated) in aesni_cipher_crypt()
673 outcopy = allocated; in aesni_cipher_crypt()
759 if (allocated) in aesni_cipher_crypt()
/freebsd/sys/contrib/device-tree/Bindings/dma/
H A Dsnps,dma-spear1340.yaml32 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/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dwrappers_c.inc75 // 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/sys/contrib/openzfs/tests/zfs-tests/tests/functional/xattr/
H A Dxattr_012_pos.ksh67 POOL_SIZE=$(get_pool_prop allocated $TESTPOOL)
96 NEW_POOL_SIZE=$(get_pool_prop allocated $TESTPOOL)
/freebsd/sys/xdr/
H A Dxdr.c489 bool_t ret, allocated = FALSE; in xdr_bytes() local
512 allocated = TRUE; in xdr_bytes()
523 if (allocated == TRUE) { in xdr_bytes()
614 bool_t ret, allocated = FALSE; in xdr_string() local
649 allocated = TRUE; in xdr_string()
661 if (allocated == TRUE) { in xdr_string()

12345678910>>...20