/freebsd/contrib/unbound/sldns/ |
H A D | wire2str.h | 98 * @return number of characters needed. Can be larger than slen. 107 * @return number of characters needed. Can be larger than slen. 122 * @param str_len: the size of the string buffer. If more is needed, it'll 139 * returns the number of characters that are needed (except terminating null), 162 * @return number of characters (except null) needed to print. 177 * @return number of characters (except null) needed to print. 192 * @return number of characters (except null) needed to print. 207 * @return number of characters (except null) needed to print. 219 * @return number of characters (except null) needed to print. 237 * @return number of characters (except null) needed to print. [all …]
|
H A D | parseutil.h | 24 * and vice versa. The lookup tables themselves are defined wherever needed, 91 * calculates the size needed to store the result of b64_ntop 101 * calculates the size needed to store the result of sldns_b64_pton 110 * calculates the size needed to store the result of b32_ntop 123 * calculates the size needed to store the result of b32_pton
|
/freebsd/crypto/openssl/crypto/property/ |
H A D | property_parse.c | 605 static void put_char(char ch, char **buf, size_t *remain, size_t *needed) in put_char() 608 ++*needed; in put_char() 616 ++*needed; in put_char() 620 static void put_str(const char *str, char **buf, size_t *remain, size_t *needed) in put_str() 627 *needed += len; in put_str() 646 *needed += 2 * quotes; in put_str() 651 put_char(quote, buf, remain, needed); in put_str() 663 put_char(quote, buf, remain, needed); in put_str() 672 static void put_num(int64_t val, char **buf, size_t *remain, size_t *needed) in put_num() 683 *needed in put_num() 604 put_char(char ch,char ** buf,size_t * remain,size_t * needed) put_char() argument 619 put_str(const char * str,char ** buf,size_t * remain,size_t * needed) put_str() argument 671 put_num(int64_t val,char ** buf,size_t * remain,size_t * needed) put_num() argument 703 size_t needed = 0; ossl_property_list_to_string() local [all...] |
/freebsd/sys/dev/virtio/ |
H A D | virtqueue.c | 528 int needed; in virtqueue_enqueue() local 531 needed = readable + writable; in virtqueue_enqueue() 534 VQASSERT(vq, needed == sg->sg_nseg, in virtqueue_enqueue() 535 "segment count mismatch, %d, %d", needed, sg->sg_nseg); in virtqueue_enqueue() 537 needed <= vq->vq_nentries || needed <= vq->vq_max_indirect_size, in virtqueue_enqueue() 538 "too many segments to enqueue: %d, %d/%d", needed, in virtqueue_enqueue() 541 if (needed < 1) in virtqueue_enqueue() 546 if (vq_ring_use_indirect(vq, needed)) { in virtqueue_enqueue() 549 } else if (vq->vq_free_cnt < needed) in virtqueue_enqueue() 706 int i, needed; vq_ring_enqueue_segments() local 736 vq_ring_use_indirect(struct virtqueue * vq,int needed) vq_ring_use_indirect() argument 757 int needed; vq_ring_enqueue_indirect() local [all...] |
/freebsd/contrib/ntp/sntp/libevent/cmake/ |
H A D | CheckFileOffsetBits.cmake | 1 # - Check if _FILE_OFFSET_BITS macro needed for large files 35 SET(_FILE_OFFSET_BITS 64 CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files") 36 MESSAGE(STATUS "Cheking _FILE_OFFSET_BITS for large files - needed") 38 SET(_FILE_OFFSET_BITS "" CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files") 39 MESSAGE(STATUS "Cheking _FILE_OFFSET_BITS for large files - not needed")
|
/freebsd/contrib/libevent/cmake/ |
H A D | CheckFileOffsetBits.cmake | 1 # - Check if _FILE_OFFSET_BITS macro needed for large files 35 SET(_FILE_OFFSET_BITS 64 CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files") 36 MESSAGE(STATUS "Cheking _FILE_OFFSET_BITS for large files - needed") 38 SET(_FILE_OFFSET_BITS "" CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files") 39 MESSAGE(STATUS "Cheking _FILE_OFFSET_BITS for large files - not needed")
|
/freebsd/sys/contrib/openzfs/.github/workflows/ |
H A D | labels.yml | 29 …dit $ISSUE --remove-label "Status: Accepted,Status: Inactive,Status: Revision Needed,Status: Stale" 39 …--remove-label "Status: Accepted,Status: Code Review Needed,Status: Inactive,Status: Revision Need… 49 …tatus: Inactive,Status: Revision Needed,Status: Stale,Status: Work in Progress" --add-label "Statu…
|
/freebsd/contrib/llvm-project/libcxx/src/include/ |
H A D | config_elast.h | 27 // No _LIBCPP_ELAST needed on NuttX 29 // No _LIBCPP_ELAST needed on Fuchsia 31 // No _LIBCPP_ELAST needed on WASI 33 // No _LIBCPP_ELAST needed on Emscripten 37 // No _LIBCPP_ELAST needed on Apple
|
/freebsd/contrib/libder/libder/ |
H A D | libder_write.c | 172 * If the buffer is too small, *bufsz will be set to the size of buffer needed. 179 size_t needed; in libder_write() local 197 needed = libder_obj_disk_size(root, true); in libder_write() 198 if (needed == 0) in libder_write() 203 *bufsz = needed; in libder_write() 204 buf = malloc(needed); in libder_write() 207 } else if (needed > *bufsz) { in libder_write() 208 *bufsz = needed; in libder_write()
|
H A D | libder_read.c | 202 size_t bufleft, freadsz, needed, totalsz; in libder_stream_refill() local 240 needed = req - stream->stream_resid; in libder_stream_refill() 242 assert(needed <= bufleft); in libder_stream_refill() 253 while (needed != 0) { in libder_stream_refill() 254 assert(refill_buf + needed <= bufend); in libder_stream_refill() 256 freadsz = fread(refill_buf, 1, needed, stream->stream_src_file); in libder_stream_refill() 269 needed -= freadsz; in libder_stream_refill() 276 while (needed != 0) { in libder_stream_refill() 277 assert(refill_buf + needed <= bufend); in libder_stream_refill() 279 readsz = read(stream->stream_src_fd, refill_buf, needed); in libder_stream_refill() [all …]
|
/freebsd/sys/dev/ixl/ |
H A D | i40e_lan_hmc.h | 44 * The sizes of the variables may be larger than needed due to crossing byte 51 u16 cpuid; /* bigger than needed, see above for reason */ 55 u16 dbuff; /* bigger than needed, see above for reason */ 57 u16 hbuff; /* bigger than needed, see above for reason */ 66 u32 rxmax; /* bigger than needed, see above for reason */ 71 u16 lrxqthresh; /* bigger than needed, see above for reason */ 77 * The sizes of the variables may be larger than needed due to crossing byte
|
/freebsd/sbin/ipf/ipsend/ |
H A D | 44arp.c | 61 size_t needed; in arp() local 86 if (sysctl(mib, 6, NULL, &needed, NULL, 0) == -1) in arp() 91 if ((buf = malloc(needed)) == NULL) in arp() 96 if (sysctl(mib, 6, buf, &needed, NULL, 0) == -1) in arp() 101 lim = buf + needed; in arp()
|
/freebsd/contrib/ofed/opensm/include/opensm/ |
H A D | osm_madw.h | 123 * The MAD Wrapper object encapsulates the information needed by the 143 * Context needed by recipient of NodeInfo attribute. 175 * Context needed by recipient of PortInfo attribute. 194 * Context needed by recipient of GUIDInfo attribute. 211 * Context needed by recipient of NodeDescription attribute. 225 * Context needed by recipient of SwitchInfo attribute. 242 * Context needed by recipient of LinearForwardingTable attribute. 257 * Context needed by recipient of MulticastForwardingTable attribute. 272 * Context needed by recipient of SMInfo attribute. 288 * Context needed by recipient of P_Key attribute. [all …]
|
/freebsd/usr.sbin/ppp/ |
H A D | route.c | 212 size_t needed; in Index2Nam() local 231 if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0) { in Index2Nam() 236 if ((buf = malloc(needed)) == NULL) in Index2Nam() 238 if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0) { in Index2Nam() 242 end = buf + needed; in Index2Nam() 332 size_t needed; in route_Show() local 341 if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0) { in route_Show() 345 sp = malloc(needed); in route_Show() 348 if (sysctl(mib, 6, sp, &needed, NULL, 0) < 0) { in route_Show() 353 ep = sp + needed; in route_Show() [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
H A D | msm8916-pm8916.dtsi | 75 regulator-always-on; /* Needed for L2 */ 81 regulator-always-on; /* Needed for L5/L7 */ 98 regulator-always-on; /* Needed for LPDDR RAM */ 108 regulator-always-on; /* Needed for most digital I/O */ 119 regulator-always-on; /* Needed for CPU PLL */
|
H A D | msm8939-pm8916.dtsi | 54 regulator-always-on; /* Needed for L2 */ 59 regulator-always-on; /* Needed for L5/L7 */ 76 regulator-always-on; /* Needed for LPDDR RAM */ 86 regulator-always-on; /* Needed for most digital I/O */ 97 regulator-always-on; /* Needed for CPU PLL */
|
H A D | msm8929-pm8916.dtsi | 54 regulator-always-on; /* Needed for L2 */ 59 regulator-always-on; /* Needed for L5/L7 */ 76 regulator-always-on; /* Needed for LPDDR RAM */ 86 regulator-always-on; /* Needed for most digital I/O */ 97 regulator-always-on; /* Needed for CPU PLL */
|
/freebsd/contrib/unbound/util/ |
H A D | log.h | 69 * It has printf formatted arguments. No trailing newline is needed. 152 * Pass printf formatted arguments. No trailing newline is needed. 159 * Pass printf formatted arguments. No trailing newline is needed. 166 * Pass printf formatted arguments. No trailing newline is needed. 182 * Pass printf formatted arguments. No trailing newline is needed. 189 * Pass printf formatted arguments. No trailing newline is needed. 205 * Pass printf formatted arguments. No trailing newline is needed.
|
/freebsd/lib/libc/net/ |
H A D | getifmaddrs.c | 57 size_t needed; in getifmaddrs() local 76 if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0) in getifmaddrs() 78 if ((buf = malloc(needed)) == NULL) in getifmaddrs() 80 if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0) { in getifmaddrs() 90 for (next = buf; next < buf + needed; next += rtm->rtm_msglen) { in getifmaddrs() 126 for (next = buf; next < buf + needed; next += rtm->rtm_msglen) { in getifmaddrs()
|
/freebsd/sys/contrib/device-tree/Bindings/pci/ |
H A D | ralink,rt3883-pci.txt | 12 - #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 D | rockchip-pcie-host.txt | 6 - #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
|
/freebsd/tools/build/mk/ |
H A D | Makefile.boot | 36 # This is needed for code that compiles for pre-C11 C standards 44 # TODO: only needed for uuencode and uudecode 50 # Needed for sem_init, etc. on Linux (used by usr.bin/sort) 53 # Needed for fts_open, etc. on musl (used by usr.bin/grep) 65 # to get libarchive (needed for elftoolchain)
|
/freebsd/usr.bin/ldd/ |
H A D | ldd.1 | 16 utility displays all shared objects that are needed to run the given program or 22 dependencies that are the result of needed shared objects which themselves 46 option displays the list of all objects that are needed by each loaded
|
/freebsd/share/man/man9/ |
H A D | scheduler.9 | 123 needed, and 134 if needed. 159 to force a reschedule of each thread in the group if needed. 232 if needed, and the swapper process is woken up and told to swap the process in 263 priority to trigger a reschedule if needed.
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | README-Windows.txt | 55 WinPcap development package is needed for the build and this can be 82 needed) for it. Alternative, you can copy files from 84 files needed). 90 wpa_supplicant can be built for cygwin by installing the needed 94 http://winpcap.polito.it/install/default.htm is needed. 138 will be needed when starting wpa_supplicant. Alternatively, the 166 needed). It can be left out if debugging information is not needed.
|