Home
last modified time | relevance | path

Searched refs:nstripes (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0125-fs-btrfs-Validate-the-number-of-stripes-parities-in-.patch6 This prevents a divide by zero if nstripes == nparities, and
7 also prevents propagation of invalid values if nstripes ends up
25 + if (nparities >= nstripes)
27 + "invalid RAID5/6: nparities >= nstripes");
28 high = grub_divmod64 (stripe_nr, nstripes - nparities, &stripen);
H A D0005-calloc-Use-calloc-at-most-places.patch519 - buffers = grub_zalloc (sizeof(*buffers) * nstripes);
520 + buffers = grub_calloc (nstripes, sizeof (*buffers));
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/
H A Dutility.hpp573 CV_EXPORTS void parallel_for_(const Range& range, const ParallelLoopBody& body, double nstripes=-1.…
591 …d parallel_for_(const Range& range, std::function<void(const Range&)> functor, double nstripes=-1.) in parallel_for_() argument
593 parallel_for_(range, ParallelLoopBodyLambdaWrapper(functor), nstripes); in parallel_for_()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/
H A Dutility.hpp573 CV_EXPORTS void parallel_for_(const Range& range, const ParallelLoopBody& body, double nstripes=-1.…
591 …d parallel_for_(const Range& range, std::function<void(const Range&)> functor, double nstripes=-1.) in parallel_for_() argument
593 parallel_for_(range, ParallelLoopBodyLambdaWrapper(functor), nstripes); in parallel_for_()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/
H A Dutility.hpp573 CV_EXPORTS void parallel_for_(const Range& range, const ParallelLoopBody& body, double nstripes=-1.…
591 …d parallel_for_(const Range& range, std::function<void(const Range&)> functor, double nstripes=-1.) in parallel_for_() argument
593 parallel_for_(range, ParallelLoopBodyLambdaWrapper(functor), nstripes); in parallel_for_()
/OK3568_Linux_fs/kernel/fs/btrfs/
H A Dscrub.c1238 int nstripes, int mirror, in scrub_stripe_index_and_offset() argument
1246 for (i = 0; i < nstripes; i++) { in scrub_stripe_index_and_offset()
2990 u64 nstripes; in scrub_stripe() local
3015 nstripes = div64_u64(length, map->stripe_len); in scrub_stripe()
3066 physical_end = physical + nstripes * map->stripe_len; in scrub_stripe()
3072 logic_end = logical + increment * nstripes; in scrub_stripe()