Home
last modified time | relevance | path

Searched refs:alloc (Results 151 – 175 of 308) sorted by relevance

12345678910>>...13

/freebsd/sys/net/
H A Dvnet.c217 SDT_PROBE_DEFINE2(vnet, functions, vnet_alloc, alloc, "int",
247 SDT_PROBE2(vnet, functions, vnet_alloc, alloc, __LINE__, vnet); in vnet_alloc()
/freebsd/sys/dev/cxgbe/cudbg/
H A Dcudbg_entity.h325 u32 alloc; member
331 u32 alloc; member
/freebsd/sys/xen/xenmem/
H A Dxenmem_if.m72 METHOD struct resource * alloc {
/freebsd/sys/contrib/dev/iwlwifi/fw/api/
H A Ddatapath.h531 struct iwl_rx_baid_cfg_cmd_alloc alloc; member
/freebsd/sys/contrib/device-tree/src/arm64/freescale/
H A Dimx93-tqma9352.dtsi22 alloc-ranges = <0 0x60000000 0 0x40000000>;
H A Dimx93-11x11-evk.dts26 alloc-ranges = <0 0x80000000 0 0x40000000>;
/freebsd/sys/dev/mthca/
H A Dmthca_qp.c1296 qp->qpn = mthca_alloc(&dev->qp_table.alloc); in mthca_alloc_qp()
1306 mthca_free(&dev->qp_table.alloc, qp->qpn); in mthca_alloc_qp()
1480 mthca_free(&dev->qp_table.alloc, qp->qpn); in mthca_free_qp()
2272 err = mthca_alloc_init(&dev->qp_table.alloc, in mthca_init_qp_table()
2283 mthca_alloc_cleanup(&dev->qp_table.alloc); in mthca_init_qp_table()
2303 mthca_alloc_cleanup(&dev->qp_table.alloc); in mthca_init_qp_table()
2316 mthca_alloc_cleanup(&dev->qp_table.alloc); in mthca_cleanup_qp_table()
H A Dmthca_memfree.c609 goto alloc; in mthca_alloc_db()
624 alloc: in mthca_alloc_db()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp66 SimpleSValBuilder(llvm::BumpPtrAllocator &alloc, ASTContext &context, in SimpleSValBuilder() argument
68 : SValBuilder(alloc, context, stateMgr) {} in SimpleSValBuilder()
100 SValBuilder *ento::createSimpleSValBuilder(llvm::BumpPtrAllocator &alloc, in createSimpleSValBuilder() argument
103 return new SimpleSValBuilder(alloc, context, stateMgr); in createSimpleSValBuilder()
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProcess.inc108 size_t alloc, sz;
110 if (mallctl("stats.allocated", &alloc, &sz, NULL, 0) == 0)
111 return alloc;
/freebsd/contrib/tcpdump/
H A DMakefile.in89 netdissect-alloc.c \
299 netdissect-alloc.h \
/freebsd/usr.sbin/tcpdump/tcpdump/
H A DMakefile22 netdissect-alloc.c \
/freebsd/contrib/unbound/util/
H A Dmodule.h492 struct alloc_cache* alloc; member
/freebsd/sys/contrib/device-tree/src/powerpc/fsl/
H A Dt2081si-post.dtsi37 alloc-ranges = <0 0 0x10000 0>;
42 alloc-ranges = <0 0 0x10000 0>;
47 alloc-ranges = <0 0 0x10000 0>;
H A Dt1040si-post.dtsi39 alloc-ranges = <0 0 0x10000 0>;
44 alloc-ranges = <0 0 0x10000 0>;
49 alloc-ranges = <0 0 0x10000 0>;
/freebsd/usr.sbin/acpi/acpidump/
H A Dacpi.c925 ACPI_MCFG_ALLOCATION *alloc; in acpi_handle_mcfg() local
933 alloc = (ACPI_MCFG_ALLOCATION *)(mcfg + 1); in acpi_handle_mcfg()
934 for (i = 0; i < entries; i++, alloc++) { in acpi_handle_mcfg()
936 printf("\tBase Address=0x%016jx\n", (uintmax_t)alloc->Address); in acpi_handle_mcfg()
937 printf("\tSegment Group=0x%04x\n", alloc->PciSegment); in acpi_handle_mcfg()
938 printf("\tStart Bus=%d\n", alloc->StartBusNumber); in acpi_handle_mcfg()
939 printf("\tEnd Bus=%d\n", alloc->EndBusNumber); in acpi_handle_mcfg()
/freebsd/contrib/tcsh/
H A Dsrc.desc43 tc.alloc.c: Malloc/Free
/freebsd/crypto/openssh/
H A Dsshkey.h169 int (*alloc)(struct sshkey *); /* optional */ member
/freebsd/contrib/unbound/
H A Dconfigure.ac574 AC_ARG_ENABLE(alloc-checks, AS_HELP_STRING([--enable-alloc-checks],[ enable to memory allocation st…
576 AC_ARG_ENABLE(alloc-lite, AS_HELP_STRING([--enable-alloc-lite],[ enable for lightweight alloc asser…
578 AC_ARG_ENABLE(alloc-nonregional, AS_HELP_STRING([--enable-alloc-nonregional],[ enable nonregional a…
585 SLDNS_ALLOCCHECK_EXTRA_OBJ="alloc.lo log.lo"
587 ASYNCLOOK_ALLOCCHECK_EXTRA_OBJ="alloc.lo"
591 AC_DEFINE(UNBOUND_ALLOC_LITE, 1, [use to enable lightweight alloc assertions, for debug use])
2284 # include "util/alloc.h"
/freebsd/sys/fs/ext2fs/
H A Dext2_extents.c607 int error, depth, i, ppos, alloc; in ext4_ext_find_extent() local
612 alloc = 0; in ext4_ext_find_extent()
627 alloc = 1; in ext4_ext_find_extent()
685 if (alloc) in ext4_ext_find_extent()
/freebsd/stand/ficl/softwords/
H A Doo.fr434 : alloc \ ( class metaclass -- instance class )
442 : alloc-array \ ( n class metaclass -- instance class )
626 \ free storage allocated to a heap instance by alloc or alloc-array
/freebsd/contrib/llvm-project/lld/COFF/
H A DDebugTypes.cpp1064 TypeMerger::TypeMerger(COFFLinkerContext &c, llvm::BumpPtrAllocator &alloc) in TypeMerger() argument
1065 : typeTable(alloc), idTable(alloc), ctx(c) {} in TypeMerger()
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp314 [](uptr chunk, void *alloc) { in InsertLiveBlocks() argument
316 Allocator *A = (Allocator *)alloc; in InsertLiveBlocks()
/freebsd/contrib/jemalloc/include/jemalloc/
H A Djemalloc.h352 extent_alloc_t *alloc; member
/freebsd/contrib/unbound/services/
H A Doutside_network.h525 struct alloc_cache* alloc; member

12345678910>>...13