| /f-stack/freebsd/mips/cavium/usb/ |
| H A D | octusb.c | 326 uint32_t rem; in octusb_host_control_data_tx() local 356 uint32_t rem; in octusb_host_control_data_rx() local 436 uint32_t rem; in octusb_non_control_data_tx() local 457 rem = 0; in octusb_non_control_data_tx() 462 rem = OCTUSB_MAX_FIXUP - rem; in octusb_non_control_data_tx() 464 if (rem == 0) { in octusb_non_control_data_tx() 473 if ((rem == 0) || (rem % td->qh->max_frame_size)) in octusb_non_control_data_tx() 533 uint32_t rem; in octusb_non_control_data_rx() local 584 rem = 0; in octusb_non_control_data_rx() 589 rem = OCTUSB_MAX_FIXUP - rem; in octusb_non_control_data_rx() [all …]
|
| /f-stack/dpdk/drivers/event/octeontx/ |
| H A D | timvf_worker.h | 255 int16_t rem; in timvf_add_entry_sp() local 272 if (!rem) { in timvf_add_entry_sp() 284 chunk += nb_chunk_slots - rem; in timvf_add_entry_sp() 302 int16_t rem; in timvf_add_entry_mp() local 319 if (rem < 0) { in timvf_add_entry_mp() 323 } else if (!rem) { in timvf_add_entry_mp() 337 chunk += nb_chunk_slots - rem; in timvf_add_entry_mp() 374 int16_t rem; in timvf_add_entry_brst() local 403 rem = chunk_remainder - nb_timers; in timvf_add_entry_brst() 404 if (rem < 0) { in timvf_add_entry_brst() [all …]
|
| /f-stack/dpdk/drivers/event/octeontx2/ |
| H A D | otx2_tim_worker.h | 236 int16_t rem; in tim_add_entry_sp() local 275 rem = tim_bkt_fetch_rem(lock_sema); in tim_add_entry_sp() 277 if (!rem) { in tim_add_entry_sp() 322 int16_t rem; in tim_add_entry_mp() local 361 if (rem < 0) { in tim_add_entry_mp() 371 : [rem] "=&r" (rem) in tim_add_entry_mp() 383 } else if (!rem) { in tim_add_entry_mp() 453 int16_t rem, crem; in tim_add_entry_brst() local 501 rem = chunk_remainder - nb_timers; in tim_add_entry_brst() 502 if (rem < 0) { in tim_add_entry_brst() [all …]
|
| /f-stack/app/redis-5.0.5/deps/lua/etc/ |
| H A D | luavs.bat | 1 @rem Script to build Lua under "Visual Studio .NET Command Prompt". 2 @rem Do not run from this directory; run it from the toplevel: etc\luavs.bat . 3 @rem It creates lua51.dll, lua51.lib, lua.exe, and luac.exe in src. 4 @rem (contributed by David Manura and Mike Pall)
|
| /f-stack/freebsd/libkern/arm/ |
| H A D | ldivmod_helper.c | 43 __kern_ldivmod(long long n, long long m, long long *rem) in __kern_ldivmod() argument 48 *rem = n - m * q; in __kern_ldivmod()
|
| /f-stack/freebsd/contrib/zlib/ |
| H A D | adler32.c | 150 unsigned rem; local 158 rem = (unsigned)len2; 160 sum2 = rem * sum1; 163 sum2 += ((adler1 >> 16) & 0xffff) + ((adler2 >> 16) & 0xffff) + BASE - rem;
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/src/ |
| H A D | tcache.c | 105 szind_t binind, unsigned rem) { in tcache_bin_flush_small() argument 109 assert((cache_bin_sz_t)rem <= tbin->ncached); in tcache_bin_flush_small() 113 unsigned nflush = tbin->ncached - rem; in tcache_bin_flush_small() 180 memmove(tbin->avail - rem, tbin->avail - tbin->ncached, rem * in tcache_bin_flush_small() 182 tbin->ncached = rem; in tcache_bin_flush_small() 190 unsigned rem, tcache_t *tcache) { in tcache_bin_flush_large() argument 194 assert((cache_bin_sz_t)rem <= tbin->ncached); in tcache_bin_flush_large() 198 unsigned nflush = tbin->ncached - rem; in tcache_bin_flush_large() 278 memmove(tbin->avail - rem, tbin->avail - tbin->ncached, rem * in tcache_bin_flush_large() 280 tbin->ncached = rem; in tcache_bin_flush_large()
|
| /f-stack/freebsd/crypto/siphash/ |
| H A D | siphash.c | 125 size_t rem; in SipHash_Update() local 143 rem = len & 0x7; in SipHash_Update() 165 if (rem > 0) in SipHash_Update() 166 (void)SipBuf(ctx, &s, rem, 0); in SipHash_Update()
|
| /f-stack/dpdk/lib/librte_net/ |
| H A D | net_crc_neon.c | 188 uint32_t rem = data_len & 15; in crc32_eth_calc_pmull() local 191 a = vshift_bytes_left(fold, 16 - rem); in crc32_eth_calc_pmull() 192 b = vshift_bytes_right(fold, rem); in crc32_eth_calc_pmull() 193 mask = vshift_bytes_left(vdupq_n_u64(-1), 16 - rem); in crc32_eth_calc_pmull()
|
| /f-stack/freebsd/crypto/openssl/arm/ |
| H A D | ghash-armv4.S | 66 and r14,r4,#0xf @ rem 70 ldrh r8,[sp,r14] @ rem_4bit[rem] 85 and r12,r4,#0xf @ rem 93 ldrh r8,[sp,r12] @ rem_4bit[rem] 103 and r14,r4,#0xf @ rem 227 and r14,r4,#0xf @ rem 231 ldrh r8,[r2,r14] @ rem_4bit[rem] 244 and r12,r4,#0xf @ rem 252 ldrh r8,[r2,r12] @ rem_4bit[rem] 262 and r14,r4,#0xf @ rem [all …]
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/ |
| H A D | tcache_externs.h | 35 szind_t binind, unsigned rem); 37 unsigned rem, tcache_t *tcache);
|
| H A D | size_classes.sh | 116 rem="yes" 118 rem="no" 126 rem="yes" 137 -o ${lg_size} -eq ${lg_kmax} -a ${rem} = "no" ] ; then
|
| /f-stack/freebsd/contrib/octeon-sdk/ |
| H A D | cvmx-dbg-defs.h | 134 uint64_t rem : 6; /**< Remaining debug_select pins sampled at DCOK */ member 143 uint64_t rem : 6;
|
| /f-stack/freebsd/kern/ |
| H A D | kern_sendfile.c | 694 off_t off, sbytes, rem, obj_size, nobj_size; in vn_sendfile() local 760 for (off = offset; rem > 0; ) { in vn_sendfile() 804 if (space < rem && in vn_sendfile() 889 rem = nbytes ? omin(nbytes + offset, obj_size) : in vn_sendfile() 891 rem -= off; in vn_sendfile() 895 if (space > rem) in vn_sendfile() 896 space = rem; in vn_sendfile() 923 rhpages = howmany(rem + (off & PAGE_MASK), PAGE_SIZE) - in vn_sendfile() 1023 (rem > space || rhpages > 0)) in vn_sendfile() 1103 !(rem > space || rhpages > 0))) in vn_sendfile() [all …]
|
| H A D | kern_sysctl.c | 212 ssize_t rem = sizeof(path); in sysctl_load_tunable_by_oid_locked() local 218 path[--rem] = 0; in sysctl_load_tunable_by_oid_locked() 222 rem -= len; in sysctl_load_tunable_by_oid_locked() 224 rem -= 1; in sysctl_load_tunable_by_oid_locked() 225 if (rem < 0) { in sysctl_load_tunable_by_oid_locked() 229 memcpy(path + rem, curr->oid_name, len); in sysctl_load_tunable_by_oid_locked() 231 path[rem + len] = '.'; in sysctl_load_tunable_by_oid_locked() 243 if (getenv_array(path + rem, data, sizeof(data), &size, in sysctl_load_tunable_by_oid_locked() 250 if (getenv_array(path + rem, data, sizeof(data), &size, in sysctl_load_tunable_by_oid_locked() 257 if (getenv_array(path + rem, data, sizeof(data), &size, in sysctl_load_tunable_by_oid_locked() [all …]
|
| /f-stack/dpdk/examples/ptpclient/ |
| H A D | ptpclient.c | 154 int32_t rem; in ns_to_timeval() local 158 rem = nsec % NSEC_PER_SEC; in ns_to_timeval() 161 if (rem < 0) { in ns_to_timeval() 163 rem += NSEC_PER_SEC; in ns_to_timeval() 166 t_spec.tv_nsec = rem; in ns_to_timeval()
|
| /f-stack/dpdk/drivers/net/cxgbe/ |
| H A D | cxgbe_compat.h | 256 unsigned int rem = x % denom; in mult_frac() local 258 return (quot * numer) + ((rem * numer) / denom); in mult_frac()
|
| /f-stack/freebsd/net/ |
| H A D | netmap_user.h | 1029 size_t rem; in nm_inject() local 1034 rem = size; in nm_inject() 1036 while (rem > ring->nr_buf_size && j != ring->tail) { in nm_inject() 1037 rem -= ring->nr_buf_size; in nm_inject() 1040 if (j == ring->tail && rem > 0) in nm_inject() 1052 ring->slot[i].len = rem; in nm_inject() 1054 nm_pkt_copy(buf, NETMAP_BUF(ring, idx), rem); in nm_inject()
|
| /f-stack/dpdk/drivers/net/enic/ |
| H A D | enic_rxtx.c | 646 uint16_t rem, n; in enic_simple_xmit_pkts() local 667 rem = nb_pkts - n; in enic_simple_xmit_pkts() 672 if (rem) { in enic_simple_xmit_pkts() 674 memcpy(wq->bufs, tx_pkts, sizeof(struct rte_mbuf *) * rem); in enic_simple_xmit_pkts() 676 enqueue_simple_pkts(tx_pkts, desc, rem, enic); in enic_simple_xmit_pkts()
|
| /f-stack/freebsd/libkern/ |
| H A D | quad.h | 110 u_quad_t __qdivrem(u_quad_t u, u_quad_t v, u_quad_t *rem);
|
| /f-stack/dpdk/drivers/crypto/openssl/ |
| H A D | rte_openssl_pmd.c | 834 uint8_t diff = l - dstlen, rem; in process_openssl_encryption_update() local 839 rem = RTE_MIN(l, in process_openssl_encryption_update() 842 &dstlen, src, rem) <= 0) in process_openssl_encryption_update() 844 n -= rem; in process_openssl_encryption_update() 847 src += rem; in process_openssl_encryption_update() 848 l -= rem; in process_openssl_encryption_update() 901 rem = RTE_MIN(l, in process_openssl_decryption_update() 904 &dstlen, src, rem) <= 0) in process_openssl_decryption_update() 906 n -= rem; in process_openssl_decryption_update() 909 src += rem; in process_openssl_decryption_update() [all …]
|
| /f-stack/dpdk/drivers/net/cxgbe/base/ |
| H A D | t4vf_hw.c | 646 unsigned int rem = VI_VF_NUM_STATS; in t4vf_get_port_stats_fw() local 655 while (rem) { in t4vf_get_port_stats_fw() 656 unsigned int ix = VI_VF_NUM_STATS - rem; in t4vf_get_port_stats_fw() 657 unsigned int nstats = min(6U, rem); in t4vf_get_port_stats_fw() 679 rem -= nstats; in t4vf_get_port_stats_fw()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/sound/ |
| H A D | da7219.txt | 57 - dlg,jack-rem-deb : Debounce time for jack removal (ms) 102 dlg,jack-rem-deb = <1>;
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/ |
| H A D | zstd_test_data.txt | 1 …s iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa…
|
| /f-stack/dpdk/examples/performance-thread/pthread_shim/ |
| H A D | pthread_shim.c | 149 (const struct timespec *req, struct timespec *rem); 669 int nanosleep(const struct timespec *req, struct timespec *rem) in nanosleep() argument 677 return _sys_pthread_funcs.f_nanosleep(req, rem); in nanosleep()
|