Home
last modified time | relevance | path

Searched refs:needed (Results 1 – 25 of 459) sorted by relevance

12345678910>>...19

/f-stack/tools/compat/
H A Dgetifmaddrs.c55 size_t needed; in getifmaddrs() local
74 if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0) in getifmaddrs()
76 if ((buf = malloc(needed)) == NULL) in getifmaddrs()
78 if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0) { in getifmaddrs()
88 for (next = buf; next < buf + needed; next += rtm->rtm_msglen) { in getifmaddrs()
124 for (next = buf; next < buf + needed; next += rtm->rtm_msglen) { in getifmaddrs()
H A Dgetifaddrs.c89 size_t needed; in getifaddrs() local
125 if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0) in getifaddrs()
127 if ((buf = malloc(needed)) == NULL) in getifaddrs()
129 if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0) { in getifaddrs()
139 for (next = buf; next < buf + needed; next += rtm->rtm_msglen) { in getifaddrs()
222 for (next = buf; next < buf + needed; next += rtm->rtm_msglen) { in getifaddrs()
/f-stack/freebsd/kern/
H A Dkern_xxx.c173 u_int needed = 0; in ogetkerninfo() local
265 needed = sizeof(bsdi_si) + (s - bsdi_strings); in ogetkerninfo()
269 size = needed; in ogetkerninfo()
278 if (size > needed) in ogetkerninfo()
279 size = needed; in ogetkerninfo()
301 td->td_retval[0] = needed ? needed : size; in ogetkerninfo()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_create/
H A Dzfs_create_verbose.ksh55 p) create_ancestors=needed ;;
71 needed)
122 needed)
/f-stack/tools/netstat/
H A Dnhgrp.c198 size_t needed; in dump_nhgrp_sysctl() local
213 if (sysctl(mib, nitems(mib), NULL, &needed, NULL, 0) < 0) in dump_nhgrp_sysctl()
216 if ((buf = malloc(needed)) == NULL) in dump_nhgrp_sysctl()
217 errx(2, "malloc(%lu)", (unsigned long)needed); in dump_nhgrp_sysctl()
218 if (sysctl(mib, nitems(mib), buf, &needed, NULL, 0) < 0) in dump_nhgrp_sysctl()
220 lim = buf + needed; in dump_nhgrp_sysctl()
H A Dnhops.c346 size_t needed; in dump_nhops_sysctl() local
361 if (sysctl(mib, nitems(mib), NULL, &needed, NULL, 0) < 0) in dump_nhops_sysctl()
364 if ((buf = malloc(needed)) == NULL) in dump_nhops_sysctl()
365 errx(2, "malloc(%lu)", (unsigned long)needed); in dump_nhops_sysctl()
366 if (sysctl(mib, nitems(mib), buf, &needed, NULL, 0) < 0) in dump_nhops_sysctl()
368 lim = buf + needed; in dump_nhops_sysctl()
H A Droute.c247 size_t needed; in p_rtable_sysctl() local
264 if (sysctl(mib, nitems(mib), NULL, &needed, NULL, 0) < 0) in p_rtable_sysctl()
267 if ((buf = malloc(needed)) == NULL) in p_rtable_sysctl()
268 errx(2, "malloc(%lu)", (unsigned long)needed); in p_rtable_sysctl()
269 if (sysctl(mib, nitems(mib), buf, &needed, NULL, 0) < 0) in p_rtable_sysctl()
271 lim = buf + needed; in p_rtable_sysctl()
/f-stack/freebsd/contrib/device-tree/Bindings/spi/
H A Dspi_oc_tiny.txt11 The clock-frequency and baud-width properties are needed only if the divider
12 is programmable. They are not needed if the divider is fixed.
/f-stack/freebsd/contrib/device-tree/Bindings/phy/
H A Dbcm-ns-usb2-phy.txt6 - reg-names: "dmu", the only needed & supported reg right now
8 - clock-names: "phy-ref-clk", the only needed & supported clock right now
/f-stack/freebsd/contrib/device-tree/Bindings/mtd/
H A Doxnas-nand.txt10 - clocks: phandle to the NAND gate clock if needed.
11 - resets: phandle to the NAND reset control if needed.
/f-stack/freebsd/contrib/device-tree/Bindings/pci/
H A Dralink,rt3883-pci.txt12 - #address-cells: specifies the number of cells needed to encode an
37 - #address-cells: specifies the number of cells needed to encode an
41 - #interrupt-cells: specifies the number of cells needed to encode an
52 - #address-cells: specifies the number of cells needed to encode an
58 - #interrupt-cells: specifies the number of cells needed to encode an
H A Dxilinx-pcie.txt6 - #interrupt-cells: specifies the number of cells needed to encode an
27 - #address-cells: specifies the number of cells needed to encode an
29 - #interrupt-cells: specifies the number of cells needed to encode an
H A Drockchip-pcie-host.txt6 - #interrupt-cells: specifies the number of cells needed to encode an
39 - #interrupt-cells: specifies the number of cells needed to encode an
56 - aspm-no-l0s: RC won't support ASPM L0s. This property is needed if
74 - #address-cells: specifies the number of cells needed to encode an
76 - #interrupt-cells: specifies the number of cells needed to encode an
/f-stack/freebsd/mips/conf/
H A Dstd.AR934X7 # override the default options (adding devices as needed) and adding
8 # hints as needed (for example, the GPIO and LAN PHY.)
69 # XXX for now; later a separate APB mux is needed to demux PCI/WLAN interrupts.
/f-stack/freebsd/contrib/device-tree/Bindings/thermal/
H A Dmediatek-thermal.txt8 is also needed.
19 - clocks, clock-names: Clocks needed for the thermal controller. required
21 "therm": Main clock needed for register access
/f-stack/tools/arp/
H A Darp.c565 size_t needed; in search() local
583 if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0) in search()
585 if (needed == 0) /* empty table */ in search()
589 buf = reallocf(buf, needed); in search()
592 st = sysctl(mib, 6, buf, &needed, NULL, 0); in search()
595 needed += needed / 8; in search()
599 lim = buf + needed; in search()
/f-stack/freebsd/contrib/edk2/
H A DFREEBSD-upgrade7 # Generate list of the headers needed to build
16 # Merge the needed files
/f-stack/freebsd/contrib/device-tree/Bindings/iio/humidity/
H A Dhts221.txt12 IRQ_TYPE_EDGE_RISING a pull-down resistor is needed to drive the line
13 when it is not active, whereas a pull-up one is needed when interrupt
/f-stack/freebsd/contrib/openzfs/config/
H A Dkernel-rw.m44 dnl # the offset as a pointer which is needed by vn_rdwr().
34 dnl # the offset as a pointer which is needed by vn_rdwr().
/f-stack/freebsd/contrib/device-tree/Bindings/arm/marvell/
H A Dcoherency-fabric.txt24 * For "marvell,armada-375-coherency-fabric", only one pair is needed
27 * For "marvell,armada-380-coherency-fabric", only one pair is needed
H A Darmada-37xx.txt23 Power Management component is needed:
40 For AVS an other component is needed:
/f-stack/freebsd/contrib/device-tree/Bindings/gpio/
H A Dgpio-xra1403.txt16 Check documentation for SPI and GPIO controllers regarding properties needed to configure the node.
29 needed to encode interrupt source.
/f-stack/freebsd/mips/nlm/
H A Dcms.c80 int needed; /* thread needs to wake up */ member
288 mthd->needed = 1; in msgring_process_fast_intr()
339 atomic_store_rel_int(&mthd->needed, 0); in msgring_process()
352 if (mthd->needed) { in msgring_process()
/f-stack/freebsd/contrib/device-tree/Bindings/memory-controllers/
H A Dnvidia,tegra20-mc.txt16 IOMMU specifier needed to encode an address. GART supports only a single
18 information needed for the address encoding.
/f-stack/dpdk/lib/librte_eal/common/
H A Deal_common_dynmem.c302 int i, cur_pages, needed; in eal_dynmem_hugepage_init() local
304 needed = num_pages - num_pages_alloc; in eal_dynmem_hugepage_init()
306 pages = malloc(sizeof(*pages) * needed); in eal_dynmem_hugepage_init()
310 needed, hpi->hugepage_sz, in eal_dynmem_hugepage_init()

12345678910>>...19