| /f-stack/app/redis-5.0.5/deps/jemalloc/src/ |
| H A D | extent_dss.c | 112 extent_t *gap; in extent_alloc_dss() local 126 gap = extent_alloc(tsdn, arena); in extent_alloc_dss() 127 if (gap == NULL) { in extent_alloc_dss() 156 extent_init(gap, arena, gap_addr_page, in extent_alloc_dss() 188 extent_dalloc_gap(tsdn, arena, gap); in extent_alloc_dss() 190 extent_dalloc(tsdn, arena, gap); in extent_alloc_dss() 226 extent_dalloc(tsdn, arena, gap); in extent_alloc_dss()
|
| /f-stack/tools/compat/include/netinet/ |
| H A D | sctp_constants.h | 873 #define SCTP_IS_TSN_PRESENT(arry, gap) ((arry[(gap >> 3)] >> (gap & 0x07)) & 0x01) argument 874 #define SCTP_SET_TSN_PRESENT(arry, gap) (arry[(gap >> 3)] |= (0x01 << ((gap & 0x07)))) argument 875 #define SCTP_UNSET_TSN_PRESENT(arry, gap) (arry[(gap >> 3)] &= ((~(0x01 << ((gap & 0x07)))) & 0xff)) argument 876 #define SCTP_CALC_TSN_TO_GAP(gap, tsn, mapping_tsn) do { \ argument 878 gap = tsn - mapping_tsn; \ 880 gap = (MAX_TSN - mapping_tsn) + tsn + 1; \
|
| /f-stack/freebsd/netinet/ |
| H A D | sctp_constants.h | 873 #define SCTP_IS_TSN_PRESENT(arry, gap) ((arry[(gap >> 3)] >> (gap & 0x07)) & 0x01) argument 874 #define SCTP_SET_TSN_PRESENT(arry, gap) (arry[(gap >> 3)] |= (0x01 << ((gap & 0x07)))) argument 875 #define SCTP_UNSET_TSN_PRESENT(arry, gap) (arry[(gap >> 3)] &= ((~(0x01 << ((gap & 0x07)))) & 0xff)) argument 876 #define SCTP_CALC_TSN_TO_GAP(gap, tsn, mapping_tsn) do { \ argument 878 gap = tsn - mapping_tsn; \ 880 gap = (MAX_TSN - mapping_tsn) + tsn + 1; \
|
| H A D | sctp_indata.c | 288 uint32_t gap, i; in sctp_mark_non_revokable() local 302 in_r = SCTP_IS_TSN_PRESENT(asoc->mapping_array, gap); in sctp_mark_non_revokable() 306 SCTP_SET_TSN_PRESENT(asoc->nr_mapping_array, gap); in sctp_mark_non_revokable() 312 SCTP_UNSET_TSN_PRESENT(asoc->mapping_array, gap); in sctp_mark_non_revokable() 1697 uint32_t tsn, fsn, gap, mid; in sctp_process_a_data_chunk() local 1776 if (gap >= (SCTP_MAPPING_ARRAY << 3)) { in sctp_process_a_data_chunk() 1782 if (sctp_expand_mapping_array(asoc, gap)) { in sctp_process_a_data_chunk() 2189 SCTP_SET_TSN_PRESENT(asoc->mapping_array, gap); in sctp_process_a_data_chunk() 5493 uint32_t new_cum_tsn, gap; in sctp_handle_forward_tsn() local 5521 if (gap >= m_size) { in sctp_handle_forward_tsn() [all …]
|
| H A D | sctp_pcb.c | 6779 uint32_t gap, i; in sctp_drain_mbufs() local 6804 SCTP_CALC_TSN_TO_GAP(gap, control->sinfo_tsn, asoc->mapping_array_base_tsn); in sctp_drain_mbufs() 6816 SCTP_UNSET_TSN_PRESENT(asoc->mapping_array, gap); in sctp_drain_mbufs() 6831 SCTP_CALC_TSN_TO_GAP(gap, chk->rec.data.tsn, asoc->mapping_array_base_tsn); in sctp_drain_mbufs() 6843 SCTP_UNSET_TSN_PRESENT(asoc->mapping_array, gap); in sctp_drain_mbufs() 6864 SCTP_CALC_TSN_TO_GAP(gap, control->sinfo_tsn, asoc->mapping_array_base_tsn); in sctp_drain_mbufs() 6876 SCTP_UNSET_TSN_PRESENT(asoc->mapping_array, gap); in sctp_drain_mbufs() 6891 SCTP_CALC_TSN_TO_GAP(gap, chk->rec.data.tsn, asoc->mapping_array_base_tsn); in sctp_drain_mbufs() 6903 SCTP_UNSET_TSN_PRESENT(asoc->mapping_array, gap); in sctp_drain_mbufs() 6918 SCTP_CALC_TSN_TO_GAP(gap, i, asoc->mapping_array_base_tsn); in sctp_drain_mbufs() [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/net/ |
| H A D | marvell-bt-8xxx.txt | 22 - marvell,wakeup-gap-ms: wakeup gap represents wakeup latency of the host 39 wakeup pin 13 and gap 100ms are configured so that firmware can wakeup host 64 marvell,wakeup-gap-ms = /bits/ 16 <0x64>; 81 marvell,wakeup-gap-ms = /bits/ 16 <0x64>;
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | range_tree.c | 193 uint64_t gap) in range_tree_create_impl() argument 220 rt->rt_gap = gap; in range_tree_create_impl() 283 uint64_t end = start + size, gap = rt->rt_gap; in range_tree_add_impl() local 304 if (gap == 0) { in range_tree_add_impl() 345 start - gap); in range_tree_add_impl() 347 gap); in range_tree_add_impl() 349 if (merge_before && gap != 0) in range_tree_add_impl() 351 if (merge_after && gap != 0) in range_tree_add_impl() 406 if (gap != 0) { in range_tree_add_impl()
|
| H A D | zfs_fm.c | 720 uint32_t gap = nstart - end; in zei_shrink_ranges() local 721 if (gap < new_allowed_gap) { in zei_shrink_ranges() 725 if (gap < mingap) in zei_shrink_ranges() 726 mingap = gap; in zei_shrink_ranges() 753 int gap = start - r[count - 1].zr_end; in zei_add_range() local 755 if (gap < eip->zei_allowed_mingap) { in zei_add_range() 759 if (gap < eip->zei_mingap) in zei_add_range() 760 eip->zei_mingap = gap; in zei_add_range()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/thermal/ |
| H A D | ti_soc_thermal.txt | 5 gap voltage and temperature sensor (VBGAPTS) module. The band 6 gap provides current and voltage reference for its internal
|
| /f-stack/freebsd/contrib/ncsw/Peripherals/QM/ |
| H A D | qm_portal_fqr.c | 972 int gap, tmp; in qm_new_fq() local 1107 gap = tmp; in qm_new_fq() 1415 int gap, tmp; in CalcWredCurve() local 1427 if (tmp < gap) in CalcWredCurve() 1431 gap = tmp; in CalcWredCurve() 1467 gap = (int)slope; in CalcWredCurve() 1472 if (tmp < gap) in CalcWredCurve() 1476 gap = tmp; in CalcWredCurve() 2707 gap = (int)threshold; in QM_CG_ModifyTailDropThreshold() 2712 if (tmp < gap) in QM_CG_ModifyTailDropThreshold() [all …]
|
| /f-stack/freebsd/sys/ |
| H A D | fdcio.h | 89 int gap; /* gap len between sectors */ member
|
| /f-stack/dpdk/doc/guides/prog_guide/ |
| H A D | reorder_lib.rst | 64 to the Ready buffer continues beyond the minimum required until a gap, 68 buffer first and then from the Order buffer until a gap is found (mbufs that
|
| H A D | packet_framework.rst | 524 By increasing the gap between two consecutive accesses to the same data structure, the data depende…
|
| /f-stack/freebsd/contrib/openzfs/include/sys/ |
| H A D | range_tree.h | 283 int (*zfs_btree_compare) (const void *, const void *), uint64_t gap);
|
| /f-stack/dpdk/doc/guides/cryptodevs/ |
| H A D | scheduler.rst | 107 the throughput gap between the physical core and the existing cryptodevs
|
| /f-stack/freebsd/kern/ |
| H A D | imgact_elf.c | 2828 uintptr_t range, rbase, gap; in __elfN() local 2838 gap = rbase % range; in __elfN() 2839 gap &= ~(sizeof(u_long) - 1); in __elfN() 2840 *stack_base -= gap; in __elfN()
|
| /f-stack/freebsd/vm/ |
| H A D | vm_map.c | 2130 int gap, pidx, rv, try; in vm_map_find() local 2208 gap = vm_map_max(map) > MAP_32BIT_MAX_ADDR && in vm_map_find() 2212 length + gap * pagesizes[pidx]); in vm_map_find() 2213 if (*addr + length + gap * pagesizes[pidx] > in vm_map_find() 2217 *addr += (arc4random() % gap) * pagesizes[pidx]; in vm_map_find()
|
| /f-stack/freebsd/contrib/device-tree/src/arm64/mediatek/ |
| H A D | mt8173-elm.dtsi | 418 marvell,wakeup-gap-ms = /bits/ 16 <0x64>;
|
| /f-stack/dpdk/doc/guides/rel_notes/ |
| H A D | release_2_2.rst | 319 This is to enlarge the gap between read and write pointers in the TX FIFO.
|