| /f-stack/freebsd/contrib/openzfs/module/unicode/ |
| H A D | uconv.c | 322 uint32_t lo; in uconv_u16tou32() local 381 if (lo >= UCONV_U16_HI_MIN && lo <= UCONV_U16_HI_MAX) { in uconv_u16tou32() 384 hi = lo; in uconv_u16tou32() 386 } else if (lo >= UCONV_U16_LO_MIN && lo <= UCONV_U16_LO_MAX) { in uconv_u16tou32() 400 u32s[u32l++] = (outendian) ? lo : BSWAP_32(lo); in uconv_u16tou32() 432 uint32_t lo; in uconv_u16tou8() local 460 if (lo >= UCONV_U16_HI_MIN && lo <= UCONV_U16_HI_MAX) { in uconv_u16tou8() 463 hi = lo; in uconv_u16tou8() 526 uint32_t lo; in uconv_u32tou16() local 608 uint32_t lo; in uconv_u32tou8() local [all …]
|
| /f-stack/dpdk/examples/vhost_crypto/ |
| H A D | main.c | 91 struct lcore_option *lo; in parse_socket_arg() local 111 lo->lcore_id = lcore_id; in parse_socket_arg() 114 lo = &options.los[idx]; in parse_socket_arg() 129 lo->nb_sockets++; in parse_socket_arg() 137 struct lcore_option *lo; in parse_config() local 183 lo = &options.los[i]; in parse_config() 186 lo->cid = flds[FLD_CID]; in parse_config() 486 lo->lcore_id)); in main() 492 info->cid = lo->cid; in main() 493 info->qid = lo->qid; in main() [all …]
|
| /f-stack/dpdk/drivers/net/qede/base/ |
| H A D | ecore_utils.h | 27 (x).lo = DMA_LO_LE((val)) 29 #define HILO_GEN(hi, lo, type) ((((type)(hi)) << 32) + (lo)) argument 30 #define HILO_DMA(hi, lo) HILO_GEN(hi, lo, dma_addr_t) argument 31 #define HILO_64(hi, lo) HILO_GEN(hi, lo, u64) argument 32 #define HILO_DMA_REGPAIR(regpair) (HILO_DMA(regpair.hi, regpair.lo)) 33 #define HILO_64_REGPAIR(regpair) (HILO_64(regpair.hi, regpair.lo))
|
| /f-stack/freebsd/sys/ |
| H A D | lock.h | 134 #define LOCK_LOG_TEST(lo, flags) \ argument 137 #define LOCK_LOG_TEST(lo, flags) 0 argument 141 if (LOCK_LOG_TEST((lo), (flags))) \ 143 LOCK_CLASS(lo)->lc_name, (lo)->lo_name, \ 148 if (LOCK_LOG_TEST((lo), (flags))) \ 150 LOCK_CLASS(lo)->lc_name, (lo)->lo_name, \ 154 #define LOCK_LOG_INIT(lo, flags) do { \ argument 155 if (LOCK_LOG_TEST((lo), (flags))) \ 157 LOCK_CLASS(lo)->lc_name, (lo)->lo_name); \ 160 #define LOCK_LOG_DESTROY(lo, flags) LOCK_LOG_INIT(lo, flags) argument [all …]
|
| H A D | lock_profile.h | 49 void lock_profile_obtain_lock_success(struct lock_object *lo, int contested, 51 void lock_profile_release_lock(struct lock_object *lo); 55 lock_profile_obtain_lock_failed(struct lock_object *lo, int *contested, in lock_profile_obtain_lock_failed() argument 58 if (!lock_prof_enable || (lo->lo_flags & LO_NOPROFILE) || *contested) in lock_profile_obtain_lock_failed() 66 #define lock_profile_release_lock(lo) (void)0 argument 67 #define lock_profile_obtain_lock_failed(lo, contested, waittime) (void)0 argument 68 #define lock_profile_obtain_lock_success(lo, contested, waittime, file, line) (void)0 argument
|
| H A D | blockcount.h | 80 _blockcount_wait(blockcount_t *bc, struct lock_object *lo, const char *wmesg, in _blockcount_wait() argument 85 while (_blockcount_sleep(bc, lo, wmesg, prio) == EAGAIN) in _blockcount_wait() 89 #define blockcount_sleep(bc, lo, wmesg, prio) \ argument 90 _blockcount_sleep((bc), (struct lock_object *)(lo), (wmesg), (prio)) 91 #define blockcount_wait(bc, lo, wmesg, prio) \ argument 92 _blockcount_wait((bc), (struct lock_object *)(lo), (wmesg), (prio))
|
| /f-stack/freebsd/mips/nlm/hal/ |
| H A D | cpucontrol.h | 125 uint32_t hi, lo; in nlm_mfcr() local 136 : "=r"(hi), "=r"(lo) in nlm_mfcr() 139 return (((uint64_t)hi) << 32) | lo; in nlm_mfcr() 145 uint32_t hi, lo; in nlm_mtcr() local 148 lo = val & 0xffffffff; in nlm_mtcr() 162 : :"r"(hi), "r"(lo), "r"(reg) in nlm_mtcr()
|
| /f-stack/dpdk/lib/librte_ethdev/ |
| H A D | ethdev_private.c | 93 uint16_t lo, hi, val; in rte_eth_devargs_process_range() local 96 result = sscanf(str, "%hu-%hu", &lo, &hi); in rte_eth_devargs_process_range() 100 list[(*len_list)++] = lo; in rte_eth_devargs_process_range() 102 if (lo >= hi || lo > RTE_MAX_ETHPORTS || hi > RTE_MAX_ETHPORTS) in rte_eth_devargs_process_range() 104 for (val = lo; val <= hi; val++) { in rte_eth_devargs_process_range()
|
| /f-stack/freebsd/kern/ |
| H A D | kern_lockf.c | 347 if (lo) { in lf_alloc_lock() 349 lo->lo_refs++; in lf_alloc_lock() 371 if (lo) { in lf_free_lock() 379 lo->lo_refs--; in lf_free_lock() 384 lo); in lf_free_lock() 505 if (!lo) { in lf_advlockasync() 518 lo->lo_refs = 1; in lf_advlockasync() 520 lo->lo_id = id; in lf_advlockasync() 550 lo->lo_refs++; in lf_advlockasync() 2430 v->v_owner = lo; in graph_alloc_vertex() [all …]
|
| H A D | subr_blist.c | 193 int hi, lo, mid; in generic_bitpos() local 195 lo = 0; in generic_bitpos() 202 lo = mid; in generic_bitpos() 204 return (lo); in generic_bitpos() 453 int hi, lo, mid; in update_gap_stats() local 468 lo = 0; in update_gap_stats() 471 lo = hi; in update_gap_stats() 479 lo = mid; in update_gap_stats() 483 stats->histo[lo]++; in update_gap_stats() 752 *count = hi - lo; in blst_leaf_alloc() [all …]
|
| H A D | subr_lock.c | 549 lp->name == lo->lo_name) in lock_profile_lookup() 560 lp->class = LOCK_CLASS(lo); in lock_profile_lookup() 561 lp->name = lo->lo_name; in lock_profile_lookup() 576 if (l->lpo_obj == lo && l->lpo_file == file && in lock_profile_object_lookup() 586 l->lpo_obj = lo; in lock_profile_object_lookup() 607 if (!lock_prof_enable || (lo->lo_flags & LO_NOPROFILE)) in lock_profile_obtain_lock_success() 612 spin = (LOCK_CLASS(lo)->lc_flags & LC_SPINLOCK) ? 1 : 0; in lock_profile_obtain_lock_success() 619 l = lock_profile_object_lookup(lo, spin, file, line); in lock_profile_obtain_lock_success() 665 lock_profile_release_lock(struct lock_object *lo) in lock_profile_release_lock() argument 676 if (lo->lo_flags & LO_NOPROFILE) in lock_profile_release_lock() [all …]
|
| H A D | kern_lockstat.c | 78 lockstat_nsecs(struct lock_object *lo) in lockstat_nsecs() argument 85 if ((lo->lo_flags & LO_NOPROFILE) != 0) in lockstat_nsecs()
|
| /f-stack/freebsd/contrib/octeon-sdk/ |
| H A D | cvmx-ixf18201.c | 107 uint32_t hi, lo; in cvmx_ixf18201_read32() local 113 lo = cvmx_ixf18201_read16(reg_addr); in cvmx_ixf18201_read32() 115 return((hi << 16) | lo); in cvmx_ixf18201_read32() 119 uint16_t hi, lo; in cvmx_ixf18201_write32() local 125 lo = data & 0xFFFF; in cvmx_ixf18201_write32() 127 cvmx_ixf18201_write16(reg_addr, lo); in cvmx_ixf18201_write32()
|
| /f-stack/freebsd/vm/ |
| H A D | vm_reserv.c | 954 int bitpos, hi, i, lo; in vm_reserv_break() local 961 hi = lo = -1; in vm_reserv_break() 970 changes = lo != hi; in vm_reserv_break() 984 if (lo == hi) in vm_reserv_break() 989 vm_phys_enqueue_contig(&rv->pages[lo], hi - lo); in vm_reserv_break() 991 lo = hi; in vm_reserv_break() 1249 lo = (pa < low) ? in vm_reserv_test_contig() 1251 i = lo / NBPOPMAP; in vm_reserv_test_contig() 1257 hi = lo = -1; in vm_reserv_test_contig() 1274 if (lo == hi) { in vm_reserv_test_contig() [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/iio/accel/ |
| H A D | lis302.txt | 47 - st,wakeup-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for 50 - st,wakeup2-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for 82 st,wakeup-x-lo; 84 st,wakeup-y-lo; 86 st,wakeup-z-lo; 106 st,wakeup-x-lo; 108 st,wakeup-y-lo; 110 st,wakeup-z-lo;
|
| /f-stack/freebsd/arm/allwinner/a20/ |
| H A D | a20_cpu_cfg.c | 127 uint32_t lo, hi; in a20_read_counter64() local 135 lo = cpu_cfg_read_4(a20_cpu_cfg_sc, OSC24M_CNT64_LOW_REG); in a20_read_counter64() 137 return (((uint64_t)hi << 32) | lo); in a20_read_counter64()
|
| /f-stack/freebsd/contrib/device-tree/src/arm/ |
| H A D | omap3-gta04a3.dts | 32 st,wakeup-x-lo; 34 st,wakeup-y-lo; 36 st,wakeup-z-lo;
|
| H A D | omap3-overo-common-peripherals.dtsi | 68 st,wakeup-x-lo; 70 st,wakeup-y-lo; 72 st,wakeup-z-lo;
|
| /f-stack/dpdk/lib/librte_acl/ |
| H A D | acl_vect.h | 25 #define ACL_TR_HILO(P, TC, tr0, tr1, lo, hi) do { \ argument 26 lo = (typeof(lo))_##P##_shuffle_ps((TC)(tr0), (TC)(tr1), 0x88); \
|
| /f-stack/freebsd/crypto/openssl/arm/ |
| H A D | ghashv8-armx.S | 72 .byte 0x86,0x0e,0xa8,0xf2 @ pmull q0,q12,q3 @ H.lo·Xi.lo 75 .byte 0xa2,0x2e,0xaa,0xf2 @ pmull q1,q13,q9 @ (H.lo+H.hi)·(Xi.lo+Xi.hi) 149 .byte 0x86,0x0e,0xac,0xf2 @ pmull q0,q14,q3 @ H^2.lo·Xi.lo 156 .byte 0xa5,0x2e,0xab,0xf2 @ pmull2 q1,q13,q10 @ (H^2.lo+H^2.hi)·(Xi.lo+Xi.hi) 202 .byte 0x86,0x0e,0xa8,0xf2 @ pmull q0,q12,q3 @ H.lo·Xi.lo 205 .byte 0xa2,0x2e,0xaa,0xf2 @ pmull q1,q13,q9 @ (H.lo+H.hi)·(Xi.lo+Xi.hi)
|
| /f-stack/freebsd/i386/include/xen/ |
| H A D | hypercall.h | 260 uint32_t hi, lo; in HYPERVISOR_update_va_mapping() local 262 lo = (uint32_t)(new_val & 0xffffffff); in HYPERVISOR_update_va_mapping() 266 lo, hi, flags); in HYPERVISOR_update_va_mapping() 329 uint32_t hi, lo; in HYPERVISOR_update_va_mapping_otherdomain() local 331 lo = (uint32_t)(new_val & 0xffffffff); in HYPERVISOR_update_va_mapping_otherdomain() 335 lo, hi, flags, domid); in HYPERVISOR_update_va_mapping_otherdomain()
|
| /f-stack/dpdk/drivers/net/cxgbe/ |
| H A D | clip_tbl.c | 17 u64 lo = ((u64)lip[3]) << 32 | lip[2]; in clip6_get_mbox() local 24 c.ip_lo = lo; in clip6_get_mbox() 36 u64 lo = ((u64)lip[3]) << 32 | lip[2]; in clip6_release_mbox() local 43 c.ip_lo = lo; in clip6_release_mbox()
|
| /f-stack/freebsd/netpfil/ipfw/test/ |
| H A D | test_dn_sched.c | 73 ipdn_bound_var(int *v, int dflt, int lo, int hi, const char *msg) in ipdn_bound_var() argument 76 if (*v < lo) { in ipdn_bound_var()
|
| /f-stack/freebsd/crypto/openssl/aarch64/ |
| H A D | armv8-mont.S | 196 csel x14,x23,x8,lo 888 csel x14,x19,x6,lo 890 csel x15,x20,x7,lo 943 csel x6,x19,x6,lo 944 csel x7,x20,x7,lo 945 csel x8,x21,x8,lo 946 csel x9,x22,x9,lo 1389 csel x6,x19,x6,lo 1390 csel x7,x20,x7,lo 1391 csel x8,x21,x8,lo [all …]
|
| /f-stack/lib/ |
| H A D | ff_lock.c | 91 ff_mtx_init(struct lock_object *lo, const char *name, const char *type, int opts) in ff_mtx_init() argument 93 lock_init(lo, &lock_class_mtx_sleep, name, type, opts); in ff_mtx_init() 165 ff_rw_init_flags(struct lock_object *lo, const char *name, int opts) in ff_rw_init_flags() argument 184 lock_init(lo, &lock_class_rw, name, NULL, flags); in ff_rw_init_flags()
|