| /f-stack/freebsd/contrib/openzfs/module/icp/include/sys/crypto/ |
| H A D | ops_impl.h | 321 #define IS_INIT_OP(ftype) ((ftype) == KCF_OP_INIT) argument 322 #define IS_SINGLE_OP(ftype) ((ftype) == KCF_OP_SINGLE) argument 323 #define IS_UPDATE_OP(ftype) ((ftype) == KCF_OP_UPDATE) argument 324 #define IS_FINAL_OP(ftype) ((ftype) == KCF_OP_FINAL) argument 325 #define IS_ATOMIC_OP(ftype) ( \ argument 326 (ftype) == KCF_OP_ATOMIC || (ftype) == KCF_OP_MAC_VERIFY_ATOMIC || \ 372 (req)->rp_optype = ftype; \ 389 (req)->rp_optype = ftype; \ 407 (req)->rp_optype = ftype; \ 425 (req)->rp_optype = ftype; \ [all …]
|
| /f-stack/freebsd/contrib/libnv/ |
| H A D | cnvlist.c | 72 #define CNVLIST_GET(ftype, type, NVTYPE) \ argument 73 ftype \ 94 #define CNVLIST_GET_ARRAY(ftype, type, NVTYPE) \ in CNVLIST_GET() argument 95 ftype \ in CNVLIST_GET() 125 #define CNVLIST_TAKE(ftype, type, NVTYPE) \ argument 126 ftype \ 129 ftype value; \ 137 value = (ftype)(intptr_t)nvpair_get_##type(cookie); \ 153 #define CNVLIST_TAKE_ARRAY(ftype, type, NVTYPE) \ argument 154 ftype \ [all …]
|
| H A D | dnvlist.c | 57 #define DNVLIST_GET(ftype, type) \ argument 58 ftype \ 59 dnvlist_get_##type(const nvlist_t *nvl, const char *name, ftype defval) \ 94 #define DNVLIST_TAKE(ftype, type) \ argument 95 ftype \ 96 dnvlist_take_##type(nvlist_t *nvl, const char *name, ftype defval) \
|
| H A D | nvlist.c | 1890 #define NVLIST_GET(ftype, type, TYPE) \ argument 1891 ftype \ 1924 #define NVLIST_GET_ARRAY(ftype, type, TYPE) \ argument 1925 ftype \ 1947 #define NVLIST_TAKE(ftype, type, TYPE) \ in NVLIST_GET_ARRAY() argument 1948 ftype \ in NVLIST_GET_ARRAY() 1952 ftype value; \ in NVLIST_GET_ARRAY() 1957 value = (ftype)(intptr_t)nvpair_get_##type(nvp); \ in NVLIST_GET_ARRAY() 1989 #define NVLIST_TAKE_ARRAY(ftype, type, TYPE) \ argument 1990 ftype \ [all …]
|
| /f-stack/freebsd/i386/i386/ |
| H A D | trap.c | 743 vm_prot_t ftype; in trap_pfault() local 844 ftype = VM_PROT_WRITE; in trap_pfault() 846 ftype = VM_PROT_EXECUTE; in trap_pfault() 848 ftype = VM_PROT_READ; in trap_pfault() 851 rv = vm_fault_trap(map, eva, ftype, VM_FAULT_NORMAL, signo, ucode); in trap_pfault() 854 if (ftype == VM_PROT_READ || ftype == VM_PROT_WRITE) { in trap_pfault() 856 if (ftype == VM_PROT_READ) in trap_pfault()
|
| /f-stack/freebsd/amd64/amd64/ |
| H A D | trap.c | 687 vm_prot_t ftype; in trap_pfault() local 810 ftype = VM_PROT_WRITE; in trap_pfault() 812 ftype = VM_PROT_EXECUTE; in trap_pfault() 814 ftype = VM_PROT_READ; in trap_pfault() 817 rv = vm_fault_trap(map, eva, ftype, VM_FAULT_NORMAL, signo, ucode); in trap_pfault() 820 if (ftype == VM_PROT_READ || ftype == VM_PROT_WRITE) { in trap_pfault() 822 if (ftype == VM_PROT_READ) in trap_pfault()
|
| H A D | pmap.c | 9814 pmap_emulate_accessed_dirty(pmap_t pmap, vm_offset_t va, int ftype) in pmap_emulate_accessed_dirty() argument 9824 KASSERT(ftype == VM_PROT_READ || ftype == VM_PROT_WRITE, in pmap_emulate_accessed_dirty() 9825 ("pmap_emulate_accessed_dirty: invalid fault type %d", ftype)); in pmap_emulate_accessed_dirty() 9844 if (ftype == VM_PROT_READ) { in pmap_emulate_accessed_dirty() 9858 if (ftype == VM_PROT_WRITE) { in pmap_emulate_accessed_dirty() 9896 if (ftype == VM_PROT_WRITE) in pmap_emulate_accessed_dirty()
|
| /f-stack/freebsd/arm/arm/ |
| H A D | trap-v6.c | 290 vm_prot_t ftype; in abort_handler() local 494 ftype = (fsr & FSR_WNR) ? VM_PROT_WRITE : VM_PROT_READ; in abort_handler() 496 ftype |= VM_PROT_EXECUTE; in abort_handler() 508 rv = vm_fault_trap(map, va, ftype, VM_FAULT_NORMAL, &ksig.sig, in abort_handler()
|
| /f-stack/freebsd/arm64/arm64/ |
| H A D | trap.c | 239 vm_prot_t ftype; in data_abort() local 300 ftype = VM_PROT_EXECUTE; in data_abort() 303 ftype = (esr & ISS_DATA_WnR) == 0 ? VM_PROT_READ : in data_abort() 309 error = vm_fault_trap(map, far, ftype, VM_FAULT_NORMAL, &sig, &ucode); in data_abort()
|
| /f-stack/freebsd/mips/mips/ |
| H A D | trap.c | 518 vm_prot_t ftype; in trap() local 646 ftype = VM_PROT_WRITE; in trap() 656 ftype = VM_PROT_WRITE; in trap() 665 ftype = (type == T_TLB_ST_MISS) ? VM_PROT_WRITE : VM_PROT_READ; in trap() 673 rv = vm_fault_trap(kernel_map, va, ftype, in trap() 695 ftype = VM_PROT_READ; in trap() 699 ftype = VM_PROT_WRITE; in trap() 718 rv = vm_fault_trap(map, va, ftype, VM_FAULT_NORMAL, in trap() 726 ftype, VM_FAULT_NORMAL, rv, (void *)(intptr_t)trapframe->pc); in trap()
|
| /f-stack/tools/libxo/libxo/ |
| H A D | libxo.c | 5316 switch (ftype) { in xo_class_name() 5331 switch (ftype) { in xo_tag_name() 5342 switch (ftype) { in xo_role_wants_default_format() 5535 ftype = *sp; in xo_parse_roles() 5615 if (ftype == 'N' || ftype == 'U') { in xo_parse_roles() 5900 unsigned ftype; in xo_gettext_simplify_format() local 5916 switch (ftype) { in xo_gettext_simplify_format() 5938 ch = ftype; in xo_gettext_simplify_format() 6291 unsigned ftype; in xo_do_emit_fields() local 6363 if (ftype == 'N' || ftype == 'U') { in xo_do_emit_fields() [all …]
|
| /f-stack/freebsd/amd64/vmm/ |
| H A D | vmm.c | 1420 int rv, ftype; in vm_handle_paging() local 1431 ftype = vme->u.paging.fault_type; in vm_handle_paging() 1432 KASSERT(ftype == VM_PROT_READ || in vm_handle_paging() 1433 ftype == VM_PROT_WRITE || ftype == VM_PROT_EXECUTE, in vm_handle_paging() 1434 ("vm_handle_paging: invalid fault_type %d", ftype)); in vm_handle_paging() 1436 if (ftype == VM_PROT_READ || ftype == VM_PROT_WRITE) { in vm_handle_paging() 1438 vme->u.paging.gpa, ftype); in vm_handle_paging() 1441 ftype == VM_PROT_READ ? "accessed" : "dirty", in vm_handle_paging() 1448 rv = vm_fault(map, vme->u.paging.gpa, ftype, VM_FAULT_NORMAL, NULL); in vm_handle_paging() 1451 "ftype = %d", rv, vme->u.paging.gpa, ftype); in vm_handle_paging()
|
| /f-stack/freebsd/amd64/include/ |
| H A D | pmap.h | 405 int pmap_emulate_accessed_dirty(pmap_t pmap, vm_offset_t va, int ftype);
|
| /f-stack/freebsd/contrib/octeon-sdk/ |
| H A D | cvmx-sriomaintx-defs.h | 1871 uint32_t ftype : 4; /**< Format Type associated with the error */ member 1905 uint32_t ftype : 4;
|
| /f-stack/dpdk/drivers/net/mlx5/ |
| H A D | mlx5_flow.c | 6155 enum mlx5_flow_drv_type ftype; in flow_drv_query() local 6163 ftype = flow->drv_type; in flow_drv_query() 6164 MLX5_ASSERT(ftype > MLX5_FLOW_TYPE_MIN && ftype < MLX5_FLOW_TYPE_MAX); in flow_drv_query() 6165 fops = flow_get_drv_ops(ftype); in flow_drv_query()
|
| /f-stack/dpdk/app/test-pmd/ |
| H A D | config.c | 4662 uint16_t ftype; in flowtype_to_str() member 4689 if (flowtype_str_table[i].ftype == flow_type) in flowtype_to_str()
|