Searched refs:stride (Results 1 - 25 of 60) sorted by relevance

123

/freebsd-current/contrib/llvm-project/clang/lib/Headers/
H A Damxintrin.h72 /// Load tile rows from memory specifieid by "base" address and "stride" into
84 /// \param stride
85 /// The stride between the rows' data to be loaded in memory.
86 #define _tile_loadd(dst, base, stride) \
88 (__SIZE_TYPE__)(stride))
90 /// Load tile rows from memory specifieid by "base" address and "stride" into
104 /// \param stride
105 /// The stride between the rows' data to be loaded in memory.
106 #define _tile_stream_loadd(dst, base, stride) \
108 (__SIZE_TYPE__)(stride))
238 _tile_loadd_internal(unsigned short m, unsigned short n, const void *base, __SIZE_TYPE__ stride) argument
246 _tile_loaddt1_internal(unsigned short m, unsigned short n, const void *base, __SIZE_TYPE__ stride) argument
282 _tile_stored_internal(unsigned short m, unsigned short n, void *base, __SIZE_TYPE__ stride, _tile1024i tile) argument
326 __tile_loadd(__tile1024i *dst, const void *base, __SIZE_TYPE__ stride) argument
347 __tile_stream_loadd(__tile1024i *dst, const void *base, __SIZE_TYPE__ stride) argument
456 __tile_stored(void *base, __SIZE_TYPE__ stride, __tile1024i src) argument
[all...]
/freebsd-current/contrib/pnglite/
H A Dpnglite.c382 png_filter_sub(unsigned stride, uint8_t *in, uint8_t *out, unsigned len) argument
388 if (i >= stride)
389 a = out[i - stride];
396 png_filter_up(unsigned stride __unused, uint8_t *in, uint8_t *out,
409 png_filter_average(unsigned stride, uint8_t *in, uint8_t *out, argument
421 if (i >= stride)
422 a = out[i - stride];
452 png_filter_paeth(unsigned stride, uint8_t *in, uint8_t *out, uint8_t *prev_line, argument
461 if (prev_line && i >= stride) {
462 a = out[i - stride];
490 unsigned stride = png->bpp; local
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/cmd/
H A Dstride_dd.c28 static off_t stride = 0; variable
40 " -s stride [ -k seekblocks]\n"
42 "Simplified version of dd that supports the stride option.\n"
43 "A stride of n means that for each block written, n - 1 blocks\n"
44 "are skipped in both the input and output file. A stride of 1\n"
52 " stride: Read/write a block then skip (stride - 1) blocks\n"
88 stride = atoi(optarg);
114 if (bsize <= 0 || count <= 0 || stride <= 0 || ifile == NULL ||
197 if (stride >
[all...]
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dbcrypt_pbkdf.c122 size_t i, j, amt, stride; local
134 stride = (keylen + sizeof(out) - 1) / sizeof(out);
135 amt = (keylen + stride - 1) / stride;
168 size_t dest = i * stride + (count - 1);
/freebsd-current/sys/dev/mlx4/mlx4_en/
H A Dmlx4_en_resources.c41 void mlx4_en_fill_qp_context(struct mlx4_en_priv *priv, int size, int stride, argument
53 context->rq_size_stride = ilog2(size) << 3 | (ilog2(stride) - 4);
55 context->sq_size_stride = ilog2(size) << 3 | (ilog2(stride) - 4);
H A Dmlx4_en_tx.c57 u16 stride, int node, int queue_idx)
92 ring->stride = stride;
123 ring->buf_size = ALIGN(size * ring->stride, MLX4_EN_PAGE_SIZE);
233 mlx4_en_fill_qp_context(priv, ring->size, ring->stride, 1, 0, ring->qpn,
55 mlx4_en_create_tx_ring(struct mlx4_en_priv *priv, struct mlx4_en_tx_ring **pring, u32 size, u16 stride, int node, int queue_idx) argument
/freebsd-current/sys/sys/
H A Dgtaskqueue.h78 struct taskqgroup *taskqgroup_create(const char *name, int cnt, int stride);
99 #define TASKQGROUP_DEFINE(name, cnt, stride) \
106 qgroup_##name = taskqgroup_create(#name, (cnt), (stride)); \
/freebsd-current/sys/dev/vt/hw/simplefb/
H A Dsimplefb.c162 pcell_t height, width, stride; local
176 OF_getencprop(node, "stride", &stride, sizeof(stride)) == -1 ||
183 sc->fb_stride = stride;
/freebsd-current/sys/contrib/xen/io/
H A Dfbif.h64 int32_t stride; /* stride in bytes */ member in struct:xenfb_resize
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_gsupport.cpp580 // "*p_ub += stride" compensates for the discrepancy.
583 // stride value. We adjust the dispatch parameters accordingly (by +-1), but
584 // we still adjust p_ub by the actual stride value.
605 long stride; \
624 (kmp_int *)p_ub, (kmp_int *)&stride); \
627 KMP_DEBUG_ASSERT(stride == str); \
645 long stride; \
664 (kmp_int *)p_ub, (kmp_int *)&stride); \
667 KMP_DEBUG_ASSERT(stride == str); \
690 long stride; \
[all...]
H A Dkmp_affinity.cpp3751 int start, end, stride;
3853 // Check for a stride parameter
3854 stride = 1;
3857 // A stride is specified. Skip over the ':" and read the 3rd int.
3870 stride = __kmp_str_to_int(scan, *next);
3871 KMP_ASSERT2(stride >= 0, "bad explicit proc list");
3872 stride *= sign;
3876 KMP_ASSERT2(stride != 0, "bad explicit proc list");
3877 if (stride > 0) {
3882 KMP_ASSERT2((end - start) / stride <
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DDumpValueObjectOptions.h45 size_t stride = 1)
47 m_stride(stride) {}
/freebsd-current/sys/dev/vt/
H A Dvt_font.c87 size_t stride; local
110 stride = howmany(vf->vf_width, 8) * vf->vf_height;
111 return (&vf->vf_bytes[dst * stride]);
/freebsd-current/contrib/llvm-project/libcxx/include/__mdspan/
H A Dlayout_right.h122 if (static_cast<_CommonType>(stride(__r)) != static_cast<_CommonType>(__other.stride(__r)))
171 _LIBCPP_HIDE_FROM_ABI constexpr index_type stride(rank_type __r) const noexcept
177 __r < extents_type::rank(), "layout_right::mapping::stride(): invalid rank index");
H A Dlayout_left.h123 if (static_cast<_CommonType>(stride(__r)) != static_cast<_CommonType>(__other.stride(__r)))
174 _LIBCPP_HIDE_FROM_ABI constexpr index_type stride(rank_type __r) const noexcept
180 __r < extents_type::rank(), "layout_left::mapping::stride(): invalid rank index");
H A Dlayout_stride.h134 // compute the permutation for sorting the stride array
135 // we never actually sort the stride array
156 // [mdspan.layout.stride.cons], constructors
229 // stride() only compiles for rank > 0
232 static_cast<index_type>(__other.stride(_Pos))...};
237 // stride() only compiles for rank > 0
241 return ((static_cast<index_type>(__other.stride(_Pos)) > static_cast<index_type>(0)) && ... && true);
254 // [mdspan.layout.stride.obs], observers
330 // according to the standard layout_stride does not have a constraint on stride(r) for rank>0
332 _LIBCPP_HIDE_FROM_ABI constexpr index_type stride(rank_typ
[all...]
H A Dmdspan.h259 _LIBCPP_HIDE_FROM_ABI constexpr index_type stride(rank_type __r) const { return __map_.stride(__r); };
/freebsd-current/sys/arm/ti/am335x/
H A Dam335x_lcd_syscons.c70 unsigned int stride; member in struct:video_adapter_softc
285 + (row + sc->ymargin)*(sc->stride)
307 addr += sc->stride;
575 if (offset < sc->stride*sc->height) {
689 + (row + sc->ymargin)*(sc->stride)
726 addr += (sc->stride);
760 va_sc->stride = panel->bpp*panel->panel_width/8;
/freebsd-current/sys/dev/bnxt/bnxt_re/
H A Dqplib_res.c224 u32 npages = 0, depth, stride, aux_pages = 0; local
241 stride = roundup_pow_of_two(hwq_attr->stride);
252 npages = (depth * stride) / pg_size + aux_pages;
253 if ((depth * stride) % pg_size)
388 hwq->element_size = stride;
389 hwq->qe_ppg = (pg_size/stride);
443 hwq_attr.stride = sizeof(u64);
451 hwq_attr.stride = 1;
558 hwq_attr.stride
[all...]
/freebsd-current/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c483 pcell_t depth, height, width, stride; local
551 if (OF_getencprop(node, "linebytes", &stride, sizeof(stride)) !=
552 sizeof(stride))
553 stride = width*depth/8;
558 sc->fb.fb_stride = stride;
/freebsd-current/contrib/ofed/libmlx5/
H A Dmlx5dv.h114 uint32_t stride; member in struct:mlx5dv_qp::__anon5742
119 uint32_t stride; member in struct:mlx5dv_qp::__anon5743
141 uint32_t stride; member in struct:mlx5dv_srq
151 uint32_t stride; member in struct:mlx5dv_rwq
/freebsd-current/sys/arm/broadcom/bcm2835/
H A Dbcm2835_fb.c101 unsigned int stride; member in struct:bcmsc_softc
168 sc->stride = fb.pitch;
368 + (row + sc->ymargin)*(sc->stride)
389 addr += sc->stride;
665 if (offset < sc->stride*sc->height) {
776 + (row + sc->ymargin)*(sc->stride)
824 addr += (sc->stride);
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dranges.inc324 // [range.stride], stride view
328 using std::ranges::views::stride;
/freebsd-current/crypto/openssl/crypto/bn/
H A Dbn_exp.c844 int stride = 5 * (6 - (top / 16 - 1)); /* multiple of 5, but less local
893 if (bits < stride)
894 stride = bits;
895 bits -= stride;
898 if ((*pwr5_worker) (tmp.d, np, n0, powerbuf, wvalue, stride))
901 if ((*pwr5_worker) (tmp.d, np, n0, powerbuf, wvalue, stride))
904 bits += stride - 5;
905 wvalue >>= stride - 5;
/freebsd-current/sys/dev/virtio/gpu/
H A Dvirtio_gpu.h258 uint32_t stride; member in struct:virtio_gpu_transfer_host_3d

Completed in 198 milliseconds

123