Home
last modified time | relevance | path

Searched refs:pe (Results 1 – 25 of 48) sorted by relevance

12

/f-stack/dpdk/drivers/net/pfe/
H A Dpfe_hal.c14 static struct pe_info pe[MAX_PE]; variable
39 pe[CLASS0_ID].pmem_size = CLASS_IMEM_SIZE; in pfe_lib_init()
46 pe[CLASS1_ID].pmem_size = CLASS_IMEM_SIZE; in pfe_lib_init()
53 pe[CLASS2_ID].pmem_size = CLASS_IMEM_SIZE; in pfe_lib_init()
60 pe[CLASS3_ID].pmem_size = CLASS_IMEM_SIZE; in pfe_lib_init()
67 pe[CLASS4_ID].pmem_size = CLASS_IMEM_SIZE; in pfe_lib_init()
74 pe[CLASS5_ID].pmem_size = CLASS_IMEM_SIZE; in pfe_lib_init()
81 pe[TMU0_ID].pmem_size = TMU_IMEM_SIZE; in pfe_lib_init()
88 pe[TMU1_ID].pmem_size = TMU_IMEM_SIZE; in pfe_lib_init()
95 pe[TMU3_ID].pmem_size = TMU_IMEM_SIZE; in pfe_lib_init()
[all …]
/f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_radar.c333 pe->pe_firpwr = temp;
383 HAL_PHYERR_PARAM *pe) argument
414 pe->pe_firpwr = AR9300_DFS_FIRPWR;
415 pe->pe_rrssi = AR9300_DFS_RRSSI;
416 pe->pe_height = AR9300_DFS_HEIGHT;
417 pe->pe_prssi = AR9300_DFS_PRSSI;
429 pe->pe_inband = AR9300_DFS_INBAND;
430 pe->pe_relpwr = AR9300_DFS_RELPWR;
432 pe->pe_maxlen = AR9300_DFS_MAXLEN;
441 pe->pe_rrssi = AR9300_DFS_RRSSI;
[all …]
H A Dar9300_freebsd.h81 HAL_PHYERR_PARAM *pe);
H A Dar9300_stub_funcs.h224 extern void ar9300_Stub_EnableDfs(struct ath_hal *ah, HAL_PHYERR_PARAM *pe);
225 extern void ar9300_Stub_GetDfsThresh(struct ath_hal *ah, HAL_PHYERR_PARAM *pe);
H A Dar9300_stub_funcs.c1206 ar9300_Stub_EnableDfs(struct ath_hal *ah, HAL_PHYERR_PARAM *pe) in ar9300_Stub_EnableDfs() argument
1213 ar9300_Stub_GetDfsThresh(struct ath_hal *ah, HAL_PHYERR_PARAM *pe) in ar9300_Stub_GetDfsThresh() argument
/f-stack/dpdk/lib/librte_cmdline/
H A Dcmdline_parse_portlist.c37 size_t ps, pe; in parse_ports() local
57 pe = strtoul(first, &end, 10); in parse_ports()
62 pe = ps; in parse_ports()
65 if (ps > pe || pe >= sizeof (pl->map) * 8) in parse_ports()
68 parse_set_list(pl, ps, pe); in parse_ports()
/f-stack/freebsd/contrib/openzfs/lib/libzutil/
H A Dzutil_import.c280 pool_entry_t *pe; in add_config() local
333 for (pe = pl->pools; pe != NULL; pe = pe->pe_next) { in add_config()
338 if (pe == NULL) { in add_config()
342 pe->pe_guid = pool_guid; in add_config()
344 pl->pools = pe; in add_config()
362 pe->pe_vdevs = ve; in add_config()
457 pool_entry_t *pe; in get_configs() local
480 for (pe = pl->pools; pe != NULL; pe = pe->pe_next) { in get_configs()
1347 for (pe = pools.pools; pe != NULL; pe = penext) { in zpool_find_import_impl()
1348 penext = pe->pe_next; in zpool_find_import_impl()
[all …]
/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
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()
102 if (pe->type == RTE_FLOW_ITEM_TYPE_END) { in classify_pattern_skip_void_item()
103 pb = pe; in classify_pattern_skip_void_item()
108 rte_memcpy(items, pe, sizeof(struct rte_flow_item)); in classify_pattern_skip_void_item()
/f-stack/freebsd/vm/
H A Dvm_phys.c939 long pi, pe; in vm_phys_fictitious_reg_range() local
951 pe = atop(end); in vm_phys_fictitious_reg_range()
954 if ((pe - first_page) > vm_page_array_size) { in vm_phys_fictitious_reg_range()
976 } else if (pe > first_page && (pe - first_page) < vm_page_array_size) { in vm_phys_fictitious_reg_range()
982 dpage_count = pe - first_page; in vm_phys_fictitious_reg_range()
988 } else if (pi < first_page && pe > (first_page + vm_page_array_size)) { in vm_phys_fictitious_reg_range()
1021 long pi, pe; in vm_phys_fictitious_unreg_range() local
1030 pe = atop(end); in vm_phys_fictitious_unreg_range()
1032 if ((pe - first_page) <= vm_page_array_size) { in vm_phys_fictitious_unreg_range()
1048 } else if (pe > first_page && (pe - first_page) < vm_page_array_size) { in vm_phys_fictitious_unreg_range()
[all …]
/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
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()
997 if (pe->type == RTE_FLOW_ITEM_TYPE_END) in iavf_pattern_skip_void_item()
1000 pb = pe + 1; in iavf_pattern_skip_void_item()
1003 rte_memcpy(items, pe, sizeof(struct rte_flow_item)); in iavf_pattern_skip_void_item()
/f-stack/freebsd/contrib/device-tree/src/arm64/allwinner/
H A Dsun50i-a64-olinuxino.dts156 vcc-pe-supply = <&reg_aldo1>;
175 vcc-pe-supply = <&reg_aldo1>;
213 regulator-name = "vcc-pe";
H A Dsun50i-a64-pinebook.dts192 vcc-pe-supply = <&reg_aldo1>;
266 regulator-name = "vcc-pe";
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlua.c261 static int collectargs (char **argv, int *pi, int *pv, int *pe) { in collectargs() argument
280 *pe = 1; /* go through */ in collectargs()
/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
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()
2022 if (pe->type == RTE_FLOW_ITEM_TYPE_END) { in ice_pattern_skip_void_item()
2026 pb = pe + 1; in ice_pattern_skip_void_item()
2029 rte_memcpy(items, pe, sizeof(struct rte_flow_item)); in ice_pattern_skip_void_item()
/f-stack/tools/ipfw/
H A Ddummynet.c432 struct protoent *pe = NULL; in list_flow() local
436 pe = getprotobynumber(id->proto); in list_flow()
441 if (pe) in list_flow()
442 bprintf(bp, "%-4s ", pe->p_name); in list_flow()
453 if (pe != NULL) in list_flow()
454 bprintf(bp, "%9s ", pe->p_name); in list_flow()
H A Dipfw2.c885 se = getservbyport(htons(port), pe ? pe->p_name : NULL); in print_port()
986 struct protoent *pe = NULL; in strtoport() local
990 pe = getprotobynumber(proto); in strtoport()
992 se = getservbyname(buf, pe ? pe->p_name : NULL); in strtoport()
1470 struct protoent *pe; in print_instruction() local
1536 if (pe != NULL) in print_instruction()
1537 bprintf(bp, " %s", pe->p_name); in print_instruction()
2281 struct protoent *pe; in show_dyn_state() local
2310 bprintf(bp, " %s", pe->p_name); in show_dyn_state()
3604 struct protoent *pe; in add_proto0() local
[all …]
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dsuniv-f1c100s.dtsi92 uart0_pe_pins: uart0-pe-pins {
H A Dsunxi-libretech-all-h3-it.dtsi147 vcc-pe-supply = <&reg_vcc_io>;
H A Dsun9i-a80-cubieboard4.dts198 vcc-pe-supply = <&reg_eldo2>;
315 regulator-name = "vcc-pe";
H A Dsun9i-a80-optimus.dts195 vcc-pe-supply = <&reg_eldo2>;
312 regulator-name = "vcc-pe";
H A Dsun5i.dtsi552 spi2_pe_pins: spi2-pe-pins {
557 spi2_cs0_pe_pin: spi2-cs0-pe-pin {
562 uart1_pe_pins: uart1-pe-pins {
H A Dsun8i-t3-cqa3t-bv3.dts209 regulator-name = "vcc-pe";
H A Dsun7i-a20-olinuxino-lime2.dts181 vcc-pe-supply = <&reg_ldo3>;
/f-stack/freebsd/contrib/zstd/programs/
H A DMakefile341 $(RC) -o $@ -I ../lib -I windres -i $< -O coff -F pe-x86-64
343 $(RC) -o $@ -I ../lib -I windres -i $< -O coff -F pe-i386
/f-stack/freebsd/kern/
H A Dkern_exec.c385 struct pmckern_procexec pe; in do_execve() local
867 pe.pm_credentialschanged = credential_changing; in do_execve()
868 pe.pm_entryaddr = imgp->entry_addr; in do_execve()
870 PMC_CALL_HOOK_X(td, PMC_FN_PROCESS_EXEC, (void *) &pe); in do_execve()

12