Home
last modified time | relevance | path

Searched refs:need (Results 1 – 25 of 530) sorted by relevance

12345678910>>...22

/f-stack/freebsd/contrib/ngatm/netnatm/misc/
H A Dunimsg_common.c41 size_t need; in uni_msg_prepend() local
47 need = len - uni_msg_leading(msg); in uni_msg_prepend()
48 if (uni_msg_ensure(msg, need)) in uni_msg_prepend()
50 memcpy(msg->b_rptr + need, msg->b_rptr, uni_msg_len(msg)); in uni_msg_prepend()
51 msg->b_rptr += need - len; in uni_msg_prepend()
52 msg->b_wptr += need; in uni_msg_prepend()
/f-stack/freebsd/contrib/openzfs/module/icp/algs/modes/
H A Dcbc.c42 size_t need = 0; in cbc_encrypt_contiguous_blocks() local
68 need = block_size - ctx->cbc_remainder_len; in cbc_encrypt_contiguous_blocks()
70 if (need > remainder) in cbc_encrypt_contiguous_blocks()
74 [ctx->cbc_remainder_len], need); in cbc_encrypt_contiguous_blocks()
106 datap += need; in cbc_encrypt_contiguous_blocks()
149 size_t need = 0; in cbc_decrypt_contiguous_blocks() local
175 need = block_size - ctx->cbc_remainder_len; in cbc_decrypt_contiguous_blocks()
177 if (need > remainder) in cbc_decrypt_contiguous_blocks()
181 [ctx->cbc_remainder_len], need); in cbc_decrypt_contiguous_blocks()
218 datap += need; in cbc_decrypt_contiguous_blocks()
H A Decb.c40 size_t need = 0; in ecb_cipher_contiguous_blocks() local
66 need = block_size - ctx->ecb_remainder_len; in ecb_cipher_contiguous_blocks()
68 if (need > remainder) in ecb_cipher_contiguous_blocks()
72 [ctx->ecb_remainder_len], need); in ecb_cipher_contiguous_blocks()
94 datap += need; in ecb_cipher_contiguous_blocks()
H A Dctr.c42 size_t need = 0; in ctr_mode_contiguous_blocks() local
69 need = block_size - ctx->ctr_remainder_len; in ctr_mode_contiguous_blocks()
71 if (need > remainder) in ctr_mode_contiguous_blocks()
75 [ctx->ctr_remainder_len], need); in ctr_mode_contiguous_blocks()
127 datap += need; in ctr_mode_contiguous_blocks()
H A Dccm.c48 size_t need = 0; in ccm_mode_encrypt_contiguous_blocks() local
78 need = block_size - ctx->ccm_remainder_len; in ccm_mode_encrypt_contiguous_blocks()
80 if (need > remainder) in ccm_mode_encrypt_contiguous_blocks()
84 [ctx->ccm_remainder_len], need); in ccm_mode_encrypt_contiguous_blocks()
147 datap += need; in ccm_mode_encrypt_contiguous_blocks()
354 size_t need = 0; in ccm_mode_decrypt_contiguous_blocks() local
440 need = block_size - ctx->ccm_remainder_len; in ccm_mode_decrypt_contiguous_blocks()
442 if (need > remainder) in ccm_mode_decrypt_contiguous_blocks()
446 [ctx->ccm_remainder_len], need); in ccm_mode_decrypt_contiguous_blocks()
486 datap += need; in ccm_mode_decrypt_contiguous_blocks()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/
H A Dcrypto_scrypt-common.c147 size_t need; in escrypt_r() local
167 need = prefixlen + saltlen + 1 + in escrypt_r()
169 if (need > buflen || need < saltlen) { in escrypt_r()
205 size_t need; in escrypt_gensalt_r() local
207 need = prefixlen + saltlen + 1; in escrypt_gensalt_r()
208 if (need > buflen || need < saltlen || saltlen < srclen) { in escrypt_gensalt_r()
/f-stack/freebsd/contrib/device-tree/Bindings/display/tegra/
H A Dnvidia,tegra114-mipi.txt11 that need to be calibrated for a given device.
13 User nodes need to contain an nvidia,mipi-calibrate property that has a
15 that need to be calibrated.
/f-stack/app/redis-5.0.5/deps/lua/
H A DINSTALL41 These are the only directories you need for development.
45 useful stuff in etc. You don't need these directories for development.
59 You don't actually need to edit the Makefiles because you may set the
62 On the other hand, if you need to select some Lua features, you'll need
73 building Lua depend on the compiler you use. You'll need to create
93 To use Lua as a library in your own programs, you'll need to know how to
/f-stack/dpdk/lib/librte_eal/windows/
H A Deal_memalloc.c192 unsigned int msl_idx, need, i; in alloc_seg_walk() local
204 need = wa->n_segs; in alloc_seg_walk()
210 &cur_msl->memseg_arr, 0, need); in alloc_seg_walk()
231 need = RTE_MIN(need, (unsigned int)cur_len); in alloc_seg_walk()
234 for (i = 0; i < need; i++, cur_idx++) { in alloc_seg_walk()
243 "but only %i were allocated\n", need, i); in alloc_seg_walk()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/
H A Dpwhash_scryptsalsa208sha256_nosse.c298 size_t B_size, V_size, XY_size, need; in escrypt_kdf_nosse() local
339 need = B_size + V_size; in escrypt_kdf_nosse()
340 if (need < V_size) { in escrypt_kdf_nosse()
345 need += XY_size; in escrypt_kdf_nosse()
346 if (need < XY_size) { in escrypt_kdf_nosse()
350 if (local->size < need) { in escrypt_kdf_nosse()
354 if (!alloc_region(local, need)) { in escrypt_kdf_nosse()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/
H A Dpwhash_scryptsalsa208sha256_sse.c313 size_t B_size, V_size, XY_size, need; in escrypt_kdf_sse() local
358 need = B_size + V_size; in escrypt_kdf_sse()
360 if (need < V_size) { in escrypt_kdf_sse()
366 need += XY_size; in escrypt_kdf_sse()
368 if (need < XY_size) { in escrypt_kdf_sse()
373 if (local->size < need) { in escrypt_kdf_sse()
377 if (!alloc_region(local, need)) { in escrypt_kdf_sse()
/f-stack/freebsd/netpfil/ipfw/
H A Dip_dn_glue.c562 int need = 0; in dn_compat_calc_size() local
570 need += dn_cfg.schk_count * sizeof(struct dn_pipe8) / 2; in dn_compat_calc_size()
571 need += dn_cfg.fsk_count * sizeof(struct dn_flow_set); in dn_compat_calc_size()
575 return need; in dn_compat_calc_size()
666 int need = 0; in dn_compat_copy_pipe() local
678 need = pipe_size + queue_size * n_queue; in dn_compat_copy_pipe()
679 if (have < need) { in dn_compat_copy_pipe()
680 D("have %d < need %d", have, need); in dn_compat_copy_pipe()
722 int need = 0; in dn_compat_copy_queue() local
732 need = fs_size + queue_size * n_queue; in dn_compat_copy_queue()
[all …]
/f-stack/dpdk/drivers/net/virtio/
H A Dvirtio_rxtx.c1784 if (unlikely(need > 0)) { in virtio_xmit_pkts_packed()
1787 if (unlikely(need > 0)) { in virtio_xmit_pkts_packed()
1866 if (unlikely(need > 0)) { in virtio_xmit_pkts()
1869 need = RTE_MIN(need, (int)nb_used); in virtio_xmit_pkts()
1873 if (unlikely(need > 0)) { in virtio_xmit_pkts()
1926 int need; in virtio_xmit_pkts_inorder() local
1964 need); in virtio_xmit_pkts_inorder()
1979 if (unlikely(need > 0)) { in virtio_xmit_pkts_inorder()
1997 if (unlikely(need > 0)) { in virtio_xmit_pkts_inorder()
1999 need); in virtio_xmit_pkts_inorder()
[all …]
H A Dvirtio_rxtx_packed_avx.c211 int16_t need; in virtqueue_enqueue_single_packed_vec() local
230 need = slots - vq->vq_free_cnt; in virtqueue_enqueue_single_packed_vec()
233 if (unlikely(need > 0)) { in virtqueue_enqueue_single_packed_vec()
234 virtio_xmit_cleanup_inorder_packed(vq, need); in virtqueue_enqueue_single_packed_vec()
235 need = slots - vq->vq_free_cnt; in virtqueue_enqueue_single_packed_vec()
236 if (unlikely(need > 0)) { in virtqueue_enqueue_single_packed_vec()
/f-stack/freebsd/netgraph/bluetooth/l2cap/
H A DTODO11 it should be fine as long as Netgraph is SMP safe. Just need to
35 to get data from kernel to user space. For example if we need to pass
36 1K of information for every channel, then worst case is that we need
/f-stack/freebsd/contrib/device-tree/src/powerpc/
H A Diss4xx.dts38 i-cache-line-size = <32>; // may need fixup in sim
39 d-cache-line-size = <32>; // may need fixup in sim
40 i-cache-size = <32768>; /* may need fixup in sim */
41 d-cache-size = <32768>; /* may need fixup in sim */
/f-stack/freebsd/contrib/device-tree/Bindings/sound/
H A Dsirf-audio.txt9 - hp-pa-gpios: Need to be present if the board need control external
11 - spk-pa-gpios: Need to be present if the board need control external
/f-stack/freebsd/mips/conf/
H A DTP-WN1043ND57 # Remove everything we don't need. We need a _really_ small kernel!
/f-stack/freebsd/contrib/device-tree/Bindings/input/touchscreen/
H A Dimx6ul_tsc.txt15 Before X-axis or Y-axis measurement, the screen need some time before
18 - pre-charge-time: the touch screen need some time to precharge.
/f-stack/freebsd/contrib/device-tree/Bindings/thermal/
H A Dzx2967-thermal.txt13 Please note: slope coefficient defined in thermal-zones section need to be
52 * slope need to be multiplied by 1000.
/f-stack/freebsd/contrib/xz-embedded/
H A DREADME46 Most people don't need the xz_dec_test module. You can skip building
95 If you want support for CRC64, you need to copy linux/lib/xz/xz_crc64.c
99 When using the internal CRC32 or CRC64, their lookup tables need to be
125 If you want support for one or more BCJ filters, you need to copy also
127 #defines in xz_config.h or in compiler flags. You don't need these
147 there is a need for such filters in real-world applications.
/f-stack/tools/libxo/doc/
H A Dintro.rst65 You want to prepare for the future, but you need to live in the
66 present. You'd love a flying car, but need to get work done today.
68 allow integration with NETCONF, REST, and web browsers, but you need
/f-stack/dpdk/doc/guides/cryptodevs/
H A Docteontx.rst90 by using dpdk-devbind.py script. The OCTEON TX crypto PF device need to be
96 identify the VFs. To be accessible from DPDK, VFs need to be bound to vfio-pci
105 Appropriate huge page need to be setup in order to run the DPDK example
/f-stack/dpdk/lib/librte_eal/common/
H A Deal_common_fbarray.c222 unsigned int s_idx, need; in find_next_n() local
230 need = RTE_MIN(left, MASK_ALIGN); in find_next_n()
232 for (s_idx = 0; s_idx < need - 1; s_idx++) in find_next_n()
242 ignore_msk = ~((1ULL << need) - 1); in find_next_n()
247 left -= need; in find_next_n()
496 unsigned int s_idx, need; in find_prev_n() local
505 need = RTE_MIN(left, MASK_ALIGN); in find_prev_n()
507 for (s_idx = 0; s_idx < need - 1; s_idx++) in find_prev_n()
517 ignore_msk = -1ULL << need; in find_prev_n()
522 left -= need; in find_prev_n()
/f-stack/freebsd/contrib/openzfs/config/
H A Dgettext.m430 dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext
33 dnl 'need-formatstring-macros', then GNU gettext implementations that don't
64 ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], ,
86 dnl the configure script would need to contain the same shell code
111 *" need-formatstring-macros "*) gt_api_version=3 ;;
112 *" need-ngettext "*) gt_api_version=2 ;;
340 dnl We need to process the po/ directory.

12345678910>>...22