Home
last modified time | relevance | path

Searched refs:allocation (Results 1 – 25 of 368) sorted by relevance

12345678910>>...15

/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DIRMemoryMap.cpp473 Allocation &allocation = iter->second; in Leak() local
475 allocation.m_leak = true; in Leak()
488 Allocation &allocation = iter->second; in Free() local
490 switch (allocation.m_policy) { in Free()
497 allocation.m_process_alloc); // FindSpace allocated this for real in Free()
506 process_sp->DeallocateMemory(allocation.m_process_alloc); in Free()
564 Allocation &allocation = iter->second; in WriteMemory() local
566 uint64_t offset = process_address - allocation.m_process_start; in WriteMemory()
570 switch (allocation.m_policy) { in WriteMemory()
576 if (!allocation.m_data.GetByteSize()) { in WriteMemory()
[all …]
/freebsd/contrib/expat/tests/
H A Dmemcheck.c47 void *allocation; member
66 entry->allocation = malloc(size); in tracking_malloc()
67 if (entry->allocation == NULL) { in tracking_malloc()
83 return entry->allocation; in tracking_malloc()
91 if (entry->allocation == ptr) { in find_allocation()
150 entry->allocation = realloc(ptr, size); in tracking_realloc()
151 if (entry->allocation == NULL) { in tracking_realloc()
171 entry->allocation = reallocated; in tracking_realloc()
175 return entry->allocation; in tracking_realloc()
188 entry->allocation); in tracking_report()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dflags.inc28 "Terminate on a type mismatch in allocation-deallocation functions, "
35 SCUDO_FLAG(bool, zero_contents, false, "Zero chunk contents on allocation.")
38 "Pattern fill chunk contents on allocation.")
43 "invalid allocation alignments, etc.")
50 "Entries to keep in the allocation ring buffer for scudo. "
/freebsd/contrib/tcsh/nls/french/
H A Dset194 2 free(%lx) appelé avant allocation.
10 8 %s allocation mémoire actuelle:\nfree:\t
15 13 %s current memory allocation:\n
/freebsd/crypto/openssl/doc/man3/
H A DASN1_OBJECT_new.pod5 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
H A DX509_new.pod9 - X509 certificate ASN1 allocation and deallocation functions
24 The X509 ASN1 allocation routines allocate and free an
64 If the allocation fails, X509_new() returns NULL and sets an error
H A DSSL_alloc_buffers.pod26 avoid allocation during data processing or with CRYPTO_set_mem_functions()
42 an allocation failure.
H A DASN1_INTEGER_get_int64.pod99 fail if a memory allocation error occurs.
108 only fail due to a memory allocation error.
112 (due to programming error) or due to a memory allocation failure.
H A DBN_CTX_new.pod23 library functions. Since dynamic memory allocation to create B<BIGNUM>s
51 If the allocation fails,
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Djson-encoder.md10 representation and is expected to be zero-allocation in most cases. This enables
12 allocation.
52 The zero-allocation, immediate-output design means that most API calls
61 headers and can be incorporated into other objects without a heap allocation.
/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Doptions.inc31 "The probability (1 / SampleRate) that an allocation is "
45 "allows better error reports by providing stack traces for allocation and "
56 "crash. Only one crash per sampled allocation will ever be recorded, and "
57 "if a sampled allocation does actually cause a crash, it'll permanently "
/freebsd/contrib/jemalloc/
H A DChangeLog24 - Support C++17 over-aligned allocation. (@marksantaniello)
146 usage is improved with certain allocation patterns. As usual, the release and
262 - Allow arena index lookup based on allocation addresses via mallctl.
267 allocation. (@interwq, @davidtgoldblatt)
326 - Improve the fit for aligned allocation. (@interwq, @edwinsmith)
373 only allocation activity is to call free() after TLS destructors have been
473 - Improve reentrant allocation support, such that deadlock is less likely if
485 - Unify the allocation paths, and merge most fast-path branching decisions.
578 a single allocation's size exceeds the interval. (@jasone)
598 - Fix DSS (sbrk(2)-based) allocation
[all...]
H A DTUNING.md30 with large memory footprint and frequent allocation / deallocation
34 Suggested for allocation intensive programs: `metadata_thp:auto` or
91 allocation activity is very rare:
127 access / allocation patterns. Threads with heavy workloads often benefit
/freebsd/contrib/tcsh/nls/russian/
H A Dset1910 8 %s current memory allocation:\nfree:\t
15 13 %s current memory allocation:\n
/freebsd/contrib/tcsh/nls/C/
H A Dset1910 8 %s current memory allocation:\nfree:\t
15 13 %s current memory allocation:\n
/freebsd/sys/contrib/device-tree/Bindings/reserved-memory/
H A Dqcom,rmtfs-mem.txt14 Usage: required for static allocation
20 Usage: required for dynamic allocation
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Djemalloc_internal_defs.h.in126 * triggering allocation in order for threaded allocation to be safe.
133 * to avoid recursive allocation during mutex initialization.
152 /* JEMALLOC_PROF enables allocation profiling. */
186 * Minimum allocation alignment is 2^LG_QUANTUM bytes (ignoring tiny size
245 * If defined, explicitly attempt to more uniformly distribute large allocation
/freebsd/crypto/krb5/src/util/
H A Dt_array.pm32 * int init() -> nonzero if fail initial allocation
34 * int grow(newsize) -> negative if fail allocation, memset(,0,) new space
/freebsd/sys/contrib/openzfs/config/
H A Dkernel-kmap-atomic-args.m45 dnl # push/pop based dynamical allocation.
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Drenesas,h8300h-intc.txt12 - any properties, listed in interrupts.txt, and any standard resource allocation
H A Drenesas,h8s-intc.txt12 - any properties, listed in interrupts.txt, and any standard resource allocation
/freebsd/contrib/tcsh/nls/greek/
H A Dset1915 13 %s current memory allocation:\n
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_flags.inc46 "if the allocation size is not a divident of the granule size")
67 // allocation size and stack trace is between malloc_bisect_left and
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenCXXExpr.cpp292 Address allocation = Address::invalid(); in emitCXXNewExpr() local
341 allocation = Address( in emitCXXNewExpr()
367 allocation, elementTy); in emitCXXNewExpr()
/freebsd/sys/contrib/device-tree/Bindings/soc/fsl/
H A Dbman.txt14 BMan supports hardware allocation and deallocation of buffers belonging to pools
97 The example below shows a BMan FBPR dynamic allocation memory node

12345678910>>...15