/freebsd/contrib/pnglite/ |
H A D | pnglite.c | 382 png_filter_sub(unsigned stride, uint8_t *in, uint8_t *out, unsigned len) in png_filter_sub() argument 388 if (i >= stride) in png_filter_sub() 389 a = out[i - stride]; in png_filter_sub() 396 png_filter_up(unsigned stride __unused, uint8_t *in, uint8_t *out, in png_filter_up() 409 png_filter_average(unsigned stride, uint8_t *in, uint8_t *out, in png_filter_average() argument 421 if (i >= stride) in png_filter_average() 422 a = out[i - stride]; in png_filter_average() 452 png_filter_paeth(unsigned stride, uint8_t *in, uint8_t *out, uint8_t *prev_line, in png_filter_paeth() argument 461 if (prev_line && i >= stride) { in png_filter_paeth() 462 a = out[i - stride]; in png_filter_paeth() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | amxintrin.h | 86 #define _tile_loadd(dst, base, stride) \ argument 88 (__SIZE_TYPE__)(stride)) 106 #define _tile_stream_loadd(dst, base, stride) \ argument 108 (__SIZE_TYPE__)(stride)) 124 #define _tile_stored(dst, base, stride) \ argument 125 __builtin_ia32_tilestored64((dst), ((void *)(base)), (__SIZE_TYPE__)(stride)) 239 __SIZE_TYPE__ stride) { in _tile_loadd_internal() argument 241 (__SIZE_TYPE__)(stride)); in _tile_loadd_internal() 247 __SIZE_TYPE__ stride) { in _tile_loaddt1_internal() argument 249 (__SIZE_TYPE__)(stride)); in _tile_loaddt1_internal() [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/cmd/ |
H A D | stride_dd.c | 29 static off_t stride = 1; variable 145 stride = atoi(optarg); in parse_options() 183 if (bsize <= 0 || stride <= 0 || ifile == NULL || ofile == NULL || in parse_options() 215 if (stride > 1) { in read_entire_file() 216 if (lseek(ifd, (stride - 1) * bsize, SEEK_CUR) == -1) { in read_entire_file() 220 if (lseek(ofd, (stride - 1) * bsize, SEEK_CUR) == -1) { in read_entire_file() 261 if (stride > 1) { in read_on_count() 262 if (lseek(ifd, (stride - 1) * bsize, SEEK_CUR) == -1) { in read_on_count() 266 if (lseek(ofd, (stride - 1) * bsize, SEEK_CUR) == -1) { in read_on_count()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | LibCxxSliceArray.cpp | 36 const size_t stride = ptr_sp->GetValueAsUnsigned(0); in LibcxxStdSliceArraySummaryProvider() local 38 stream.Printf("stride=%zu size=%zu", stride, size); in LibcxxStdSliceArraySummaryProvider() 136 ValueObjectSP stride = m_backend.GetChildMemberWithName("__stride_"); in Update() local 138 if (!start || !size || !stride) in Update() 143 m_stride = stride->GetValueAsUnsigned(0); in Update()
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | bcrypt_pbkdf.c | 122 size_t i, j, amt, stride; in bcrypt_pbkdf() local 134 stride = (keylen + sizeof(out) - 1) / sizeof(out); in bcrypt_pbkdf() 135 amt = (keylen + stride - 1) / stride; in bcrypt_pbkdf() 168 size_t dest = i * stride + (count - 1); in bcrypt_pbkdf()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
H A D | VVPInstrPatternsVec.td | 23 // Unmasked (imm stride). 26 (i64 simm7:$stride), (MaskVT true_mask), i32:$avl), 28 (LO7 $stride), $addr, $val, $avl)>; 32 i64:$stride, (MaskVT true_mask), i32:$avl), 34 $stride, $addr, $val, $avl)>; 35 // Masked (imm stride). 38 (i64 simm7:$stride), MaskVT:$mask, i32:$avl), 40 (LO7 $stride), $addr, $val, $mask, $avl)>; 44 i64:$stride, MaskVT:$mask, i32:$avl), 46 $stride, $addr, $val, $mask, $avl)>; [all …]
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_gsupport.cpp | 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; \ 697 (kmp_int *)p_ub, (kmp_int *)&stride); \ 699 *p_ub += (stride > 0) ? 1 : -1; \ 707 gtid, *p_lb, *p_ub, stride, status)); \ [all …]
|
H A D | kmp_affinity.cpp | 3767 int start, end, stride; in __kmp_affinity_process_proclist() local 3870 stride = 1; in __kmp_affinity_process_proclist() 3886 stride = __kmp_str_to_int(scan, *next); in __kmp_affinity_process_proclist() 3887 KMP_ASSERT2(stride >= 0, "bad explicit proc list"); in __kmp_affinity_process_proclist() 3888 stride *= sign; in __kmp_affinity_process_proclist() 3892 KMP_ASSERT2(stride != 0, "bad explicit proc list"); in __kmp_affinity_process_proclist() 3893 if (stride > 0) { in __kmp_affinity_process_proclist() 3898 KMP_ASSERT2((end - start) / stride <= 65536, "bad explicit proc list"); in __kmp_affinity_process_proclist() 3901 if (stride > 0) { in __kmp_affinity_process_proclist() 3904 start += stride; in __kmp_affinity_process_proclist() [all …]
|
/freebsd/sys/dev/vt/hw/simplefb/ |
H A D | simplefb.c | 164 pcell_t height, width, stride; in vt_simplefb_init() 178 OF_getencprop(node, "stride", &stride, sizeof(stride)) == -1 || in vt_simplefb_init() 185 sc->fb_stride = stride; in vt_simplefb_init() 162 pcell_t height, width, stride; vt_simplefb_init() local
|
/freebsd/sys/sys/ |
H A D | gtaskqueue.h | 78 struct taskqgroup *taskqgroup_create(const char *name, int cnt, int stride); 99 #define TASKQGROUP_DEFINE(name, cnt, stride) \ argument 106 qgroup_##name = taskqgroup_create(#name, (cnt), (stride)); \
|
/freebsd/sys/dev/mlx4/mlx4_en/ |
H A D | mlx4_en_resources.c | 41 void mlx4_en_fill_qp_context(struct mlx4_en_priv *priv, int size, int stride, in mlx4_en_fill_qp_context() argument 53 context->rq_size_stride = ilog2(size) << 3 | (ilog2(stride) - 4); in mlx4_en_fill_qp_context() 55 context->sq_size_stride = ilog2(size) << 3 | (ilog2(stride) - 4); in mlx4_en_fill_qp_context()
|
/freebsd/sys/dev/bnxt/bnxt_re/ |
H A D | qplib_res.c | 224 u32 npages = 0, depth, stride, aux_pages = 0; in bnxt_qplib_alloc_init_hwq() local 241 stride = roundup_pow_of_two(hwq_attr->stride); in bnxt_qplib_alloc_init_hwq() 252 npages = (depth * stride) / pg_size + aux_pages; in bnxt_qplib_alloc_init_hwq() 253 if ((depth * stride) % pg_size) in bnxt_qplib_alloc_init_hwq() 388 hwq->element_size = stride; in bnxt_qplib_alloc_init_hwq() 389 hwq->qe_ppg = (pg_size/stride); in bnxt_qplib_alloc_init_hwq() 443 hwq_attr.stride = sizeof(u64); in bnxt_qplib_alloc_tqm_rings() 451 hwq_attr.stride = 1; in bnxt_qplib_alloc_tqm_rings() 558 hwq_attr.stride = BNXT_QPLIB_MAX_QP_CTX_ENTRY_SIZE; in bnxt_qplib_alloc_hwctx() 567 hwq_attr.stride = BNXT_QPLIB_MAX_MRW_CTX_ENTRY_SIZE; in bnxt_qplib_alloc_hwctx() [all …]
|
/freebsd/sys/arm/ti/am335x/ |
H A D | am335x_lcd_syscons.c | 70 unsigned int stride; member 285 + (row + sc->ymargin)*(sc->stride) in am335x_rend_draw_cursor() 307 addr += sc->stride; in am335x_rend_draw_cursor() 575 if (offset < sc->stride*sc->height) { in am335x_syscons_mmap() 689 + (row + sc->ymargin)*(sc->stride) in am335x_syscons_putc() 726 addr += (sc->stride); in am335x_syscons_putc() 760 va_sc->stride = panel->bpp*panel->panel_width/8; in am335x_lcd_syscons_setup()
|
/freebsd/sys/dev/vt/ |
H A D | vt_font.c | 87 size_t stride; in vtfont_lookup() local 110 stride = howmany(vf->vf_width, 8) * vf->vf_height; in vtfont_lookup() 111 return (&vf->vf_bytes[dst * stride]); in vtfont_lookup()
|
/freebsd/contrib/llvm-project/libcxx/include/__mdspan/ |
H A D | layout_stride.h | 232 static_cast<index_type>(__other.stride(_Pos))...}; in requires() 241 …return ((static_cast<index_type>(__other.stride(_Pos)) > static_cast<index_type>(0)) && ... && tru… 332 _LIBCPP_HIDE_FROM_ABI constexpr index_type stride(rank_type __r) const noexcept { in stride() function 349 …return ((static_cast<_CommonType>(__lhs.stride(_Pos)) == static_cast<_CommonType>(__rhs.stride(_Po…
|
H A D | layout_left.h | 123 … if (static_cast<_CommonType>(stride(__r)) != static_cast<_CommonType>(__other.stride(__r))) in requires() 174 _LIBCPP_HIDE_FROM_ABI constexpr index_type stride(rank_type __r) const noexcept in stride() function
|
H A D | layout_right.h | 122 … if (static_cast<_CommonType>(stride(__r)) != static_cast<_CommonType>(__other.stride(__r))) in requires() 171 _LIBCPP_HIDE_FROM_ABI constexpr index_type stride(rank_type __r) const noexcept in stride() function
|
/freebsd/sys/arm/broadcom/bcm2835/ |
H A D | bcm2835_fb.c | 101 unsigned int stride; member 168 sc->stride = fb.pitch; in bcm_fb_attach() 368 + (row + sc->ymargin)*(sc->stride) in bcmrend_draw_cursor() 389 addr += sc->stride; in bcmrend_draw_cursor() 665 if (offset < sc->stride*sc->height) { in bcmfb_mmap() 776 + (row + sc->ymargin)*(sc->stride) in bcmfb_putc() 824 addr += (sc->stride); in bcmfb_putc()
|
/freebsd/sys/dev/vt/hw/ofwfb/ |
H A D | ofwfb.c | 495 pcell_t depth, height, width, stride; in ofwfb_init() 563 if (OF_getencprop(node, "linebytes", &stride, sizeof(stride)) != in ofwfb_init() 564 sizeof(stride)) in ofwfb_init() 565 stride = width*depth/8; in ofwfb_init() 570 sc->fb.fb_stride = stride; in ofwfb_init() 483 pcell_t depth, height, width, stride; ofwfb_init() local
|
/freebsd/contrib/ofed/libmlx5/ |
H A D | mlx5dv.h | 114 uint32_t stride; member 119 uint32_t stride; member 141 uint32_t stride; member 151 uint32_t stride; member
|
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | DumpValueObjectOptions.h | 45 size_t stride = 1) 47 m_stride(stride) {} in m_element_count()
|
/freebsd/sys/vm/ |
H A D | vm_radix.h | 162 vm_radix_iter_stride(struct pctrie_iter *pages, int stride) in vm_radix_iter_stride() argument 164 return (VM_RADIX_PCTRIE_ITER_STRIDE(pages, stride)); in vm_radix_iter_stride()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | mdspan | 133 constexpr index_type stride(rank_type) const noexcept; 187 constexpr index_type stride(rank_type) const noexcept; 213 // [mdspan.layout.stride.cons], constructors 226 // [mdspan.layout.stride.obs], observers 243 constexpr index_type stride(rank_type i) const noexcept { return strides_[i]; } 355 constexpr index_type stride(rank_type r) const 356 { return map_.stride(r); }
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | IntrinsicsRISCV.td | 161 // For unit stride mask load 170 // For unit stride load 179 // For unit stride fault-only-first load 191 // For unit stride load with mask 203 // For unit stride fault-only-first load with mask 217 // Input: (passthru, pointer, stride, vl) 226 // Input: (maskedoff, pointer, stride, mask, vl, policy) 256 // For unit stride store 265 // For unit stride store with mask 277 // Input: (vector_in, pointer, stride, vl) [all …]
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
H A D | sm8150-sony-xperia-kumano-bahamut.dts | 19 stride = <(1080 * 4)>;
|