Home
last modified time | relevance | path

Searched refs:pb (Results 1 – 25 of 57) sorted by relevance

123

/f-stack/app/redis-5.0.5/src/
H A Dpqsort.c127 pa = pb = (char *) a + es; in _pqsort()
131 while (pb <= pc && (cmp_result = cmp(pb, a)) <= 0) { in _pqsort()
133 swap(pa, pb); in _pqsort()
136 pb += es; in _pqsort()
145 if (pb > pc) in _pqsort()
147 swap(pb, pc); in _pqsort()
148 pb += es; in _pqsort()
153 r = min(pa - (char *) a, pb - pa); in _pqsort()
154 vecswap(a, pb - r, r); in _pqsort()
156 vecswap(pb, pn - r, r); in _pqsort()
[all …]
H A Dpubsub.c44 pubsubPattern *pa = a, *pb = b; in listMatchPubsubPattern() local
46 return (pa->client == pb->client) && in listMatchPubsubPattern()
47 (equalStringObjects(pa->pattern,pb->pattern)); in listMatchPubsubPattern()
/f-stack/freebsd/libkern/
H A Dqsort.c147 pa = pb = (char *)a + es; in qsort_r()
151 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { in qsort_r()
154 swap(pa, pb); in qsort_r()
157 pb += es; in qsort_r()
167 if (pb > pc) in qsort_r()
169 swap(pb, pc); in qsort_r()
171 pb += es; in qsort_r()
184 d1 = MIN(pa - (char *)a, pb - pa); in qsort_r()
185 vecswap(a, pb - d1, d1); in qsort_r()
187 vecswap(pb, pn - d1, d1); in qsort_r()
[all …]
/f-stack/freebsd/kern/
H A Dlink_elf_obj.c463 pb = 0; in link_elf_link_preload()
488 ef->progtab[pb].name = in link_elf_link_preload()
541 pb++; in link_elf_link_preload()
562 if (pb != ef->nprogtab) { in link_elf_link_preload()
666 int pb, rl, ra; in link_elf_load_file() local
961 pb = 0; in link_elf_load_file()
980 ef->progtab[pb].name = in link_elf_load_file()
996 ef->progtab[pb].addr = in link_elf_load_file()
1009 ef->progtab[pb].addr = in link_elf_load_file()
1021 ef->progtab[pb].addr = in link_elf_load_file()
[all …]
/f-stack/freebsd/contrib/dpdk_rte_lpm/
H A Drte_jhash.h76 uint32_t *pb, unsigned check_align) in __rte_jhash_2hashes() argument
82 c += *pb; in __rte_jhash_2hashes()
135 *pb = b; in __rte_jhash_2hashes()
203 *pb = b; in __rte_jhash_2hashes()
211 *pb = b; in __rte_jhash_2hashes()
230 rte_jhash_2hashes(const void *key, uint32_t length, uint32_t *pc, uint32_t *pb) in rte_jhash_2hashes() argument
232 __rte_jhash_2hashes(key, length, pc, pb, 1); in rte_jhash_2hashes()
251 rte_jhash_32b_2hashes(const uint32_t *k, uint32_t length, uint32_t *pc, uint32_t *pb) in rte_jhash_32b_2hashes() argument
253 __rte_jhash_2hashes((const void *) k, (length << 2), pc, pb, 0); in rte_jhash_32b_2hashes()
/f-stack/dpdk/lib/librte_hash/
H A Drte_jhash.h82 uint32_t *pb, unsigned check_align) in __rte_jhash_2hashes() argument
88 c += *pb; in __rte_jhash_2hashes()
141 *pb = b; in __rte_jhash_2hashes()
209 *pb = b; in __rte_jhash_2hashes()
217 *pb = b; in __rte_jhash_2hashes()
236 rte_jhash_2hashes(const void *key, uint32_t length, uint32_t *pc, uint32_t *pb) in rte_jhash_2hashes() argument
238 __rte_jhash_2hashes(key, length, pc, pb, 1); in rte_jhash_2hashes()
257 rte_jhash_32b_2hashes(const uint32_t *k, uint32_t length, uint32_t *pc, uint32_t *pb) in rte_jhash_32b_2hashes() argument
259 __rte_jhash_2hashes((const void *) k, (length << 2), pc, pb, 0); in rte_jhash_32b_2hashes()
/f-stack/freebsd/arm/nvidia/drm2/
H A Dtegra_hdmi.c342 uint8_t buf[17], *hdr, *pb; in avi_setup_infoframe() local
356 pb = buf + 3; in avi_setup_infoframe()
360 (pb[3] << 24) |(pb[2] << 16) | (pb[1] << 8) | (pb[0] << 0)); in avi_setup_infoframe()
362 (pb[6] << 16) | (pb[5] << 8) | (pb[4] << 0)); in avi_setup_infoframe()
364 (pb[10] << 24) |(pb[9] << 16) | (pb[8] << 8) | (pb[7] << 0)); in avi_setup_infoframe()
366 (pb[13] << 16) | (pb[12] << 8) | (pb[11] << 0)); in avi_setup_infoframe()
376 uint8_t buf[14], *hdr, *pb; in audio_setup_infoframe() local
387 pb = buf + 3; in audio_setup_infoframe()
391 (pb[3] << 24) |(pb[2] << 16) | (pb[1] << 8) | (pb[0] << 0)); in audio_setup_infoframe()
393 (pb[5] << 8) | (pb[4] << 0)); in audio_setup_infoframe()
/f-stack/dpdk/lib/librte_flow_classify/
H A Drte_flow_classify_parse.c84 const struct rte_flow_item *pb = pattern, *pe = pattern; in classify_pattern_skip_void_item() local
88 pb = classify_find_first_item(pb, false); in classify_pattern_skip_void_item()
89 if (pb->type == RTE_FLOW_ITEM_TYPE_END) { in classify_pattern_skip_void_item()
90 pe = pb; in classify_pattern_skip_void_item()
95 pe = classify_find_first_item(pb + 1, true); in classify_pattern_skip_void_item()
97 cpy_count = pe - pb; in classify_pattern_skip_void_item()
98 rte_memcpy(items, pb, sizeof(struct rte_flow_item) * cpy_count); in classify_pattern_skip_void_item()
103 pb = pe; in classify_pattern_skip_void_item()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/largest_pool/
H A Dlargest_pool.cfg33 export VOLSIZES=${VOLSIZES-"2pb 5pb 10pb 2eb 5eb 7eb"}
/f-stack/dpdk/drivers/net/iavf/
H A Diavf_generic_flow.c979 const struct rte_flow_item *pb = pattern, *pe = pattern; in iavf_pattern_skip_void_item() local
983 pb = iavf_find_first_item(pb, false); in iavf_pattern_skip_void_item()
984 if (pb->type == RTE_FLOW_ITEM_TYPE_END) { in iavf_pattern_skip_void_item()
985 pe = pb; in iavf_pattern_skip_void_item()
990 pe = iavf_find_first_item(pb + 1, true); in iavf_pattern_skip_void_item()
992 cpy_count = pe - pb; in iavf_pattern_skip_void_item()
993 rte_memcpy(items, pb, sizeof(struct rte_flow_item) * cpy_count); in iavf_pattern_skip_void_item()
1000 pb = pe + 1; in iavf_pattern_skip_void_item()
/f-stack/freebsd/netgraph/bluetooth/l2cap/
H A Dng_l2cap_llpi.c665 u_int16_t con_handle, length, pb; in ng_l2cap_lp_receive() local
688 pb = NG_HCI_PB_FLAG(acl_hdr->con_handle); in ng_l2cap_lp_receive()
693 __func__, NG_NODE_NAME(l2cap->node), con_handle, pb, length); in ng_l2cap_lp_receive()
716 if ((pb == NG_HCI_PACKET_START) || (pb == NG_HCI_LE_PACKET_START)) in ng_l2cap_lp_receive()
751 } else if (pb == NG_HCI_PACKET_FRAGMENT) { in ng_l2cap_lp_receive()
766 __func__, NG_NODE_NAME(l2cap->node), pb); in ng_l2cap_lp_receive()
/f-stack/freebsd/contrib/xz-embedded/linux/scripts/
H A Dxz_wrap.sh18 ia64) BCJ=--ia64; LZMA2OPTS=pb=4 ;;
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dsun5i-a10s.dtsi130 uart0_pb_pins: uart0-pb-pins {
156 spi2_pb_pins: spi2-pb-pins {
161 spi2_cs0_pb_pin: spi2-cs0-pb-pin {
H A Dversatile-pb.dts6 compatible = "arm,versatile-pb";
H A Dsun9i-a80-cubieboard4.dts195 vcc-pb-supply = <&reg_aldo2>;
236 regulator-name = "vcc-pb-io-cam";
H A Dsun9i-a80-optimus.dts192 vcc-pb-supply = <&reg_aldo2>;
233 regulator-name = "vcc-pb-io-cam";
/f-stack/freebsd/arm/ti/am335x/
H A Dtps65217x.h62 unsigned int pb:1; member
H A Dam335x_pmic.c111 if (int_reg.pbi && status_reg.pb) in am335x_pmic_intr()
/f-stack/dpdk/drivers/net/ice/
H A Dice_generic_flow.c2004 const struct rte_flow_item *pb = pattern, *pe = pattern; in ice_pattern_skip_void_item() local
2008 pb = ice_find_first_item(pb, false); in ice_pattern_skip_void_item()
2009 if (pb->type == RTE_FLOW_ITEM_TYPE_END) { in ice_pattern_skip_void_item()
2010 pe = pb; in ice_pattern_skip_void_item()
2015 pe = ice_find_first_item(pb + 1, true); in ice_pattern_skip_void_item()
2017 cpy_count = pe - pb; in ice_pattern_skip_void_item()
2018 rte_memcpy(items, pb, sizeof(struct rte_flow_item) * cpy_count); in ice_pattern_skip_void_item()
2026 pb = pe + 1; in ice_pattern_skip_void_item()
/f-stack/freebsd/arm/conf/
H A DVERSATILEPB75 makeoptions FDT_DTS_FILE=versatile-pb.dts
/f-stack/freebsd/contrib/device-tree/Bindings/arm/
H A Darm,versatile.yaml33 - const: arm,versatile-pb
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_create/
H A Dzfs_create.cfg58 "1p" "1P" "1z" "1Z" "1gb" "1gB" "1Gb" "1GB" "1pb" "1pB" "1Pb" \
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/include/
H A Dmath.shlib79 *PB|*pb|*P|*p) factor='1024^5' ;;
/f-stack/freebsd/vm/
H A Dvm_pageout.c354 vm_page_t mc[2 * vm_pageout_page_count], p, pb, ps; in vm_pageout_cluster() local
364 mc[vm_pageout_page_count] = pb = ps = m; in vm_pageout_cluster()
388 if ((p = vm_page_prev(pb)) == NULL || in vm_pageout_cluster()
409 mc[--page_base] = pb = p; in vm_pageout_cluster()
/f-stack/dpdk/drivers/net/i40e/
H A Di40e_flow.c1907 const struct rte_flow_item *pb = pattern, *pe = pattern; in i40e_pattern_skip_void_item() local
1911 pb = i40e_find_first_item(pb, false); in i40e_pattern_skip_void_item()
1912 if (pb->type == RTE_FLOW_ITEM_TYPE_END) { in i40e_pattern_skip_void_item()
1913 pe = pb; in i40e_pattern_skip_void_item()
1918 pe = i40e_find_first_item(pb + 1, true); in i40e_pattern_skip_void_item()
1920 cpy_count = pe - pb; in i40e_pattern_skip_void_item()
1921 rte_memcpy(items, pb, sizeof(struct rte_flow_item) * cpy_count); in i40e_pattern_skip_void_item()
1926 pb = pe; in i40e_pattern_skip_void_item()
1930 pb = pe + 1; in i40e_pattern_skip_void_item()

123