Home
last modified time | relevance | path

Searched refs:dst_ (Results 1 – 25 of 31) sorted by relevance

12

/external/libvpx/libvpx/test/
Dsixtap_predict_test.cc42 dst_ = reinterpret_cast<uint8_t*>(vpx_memalign(kDataAlignment, kDstSize)); in SetUpTestCase()
49 vpx_free(dst_); in TearDownTestCase()
50 dst_ = NULL; in TearDownTestCase()
73 memset(dst_, 0, kDstSize); in SetUp()
84 static uint8_t* dst_; member in __anon8fa4ae9e0111::SixtapPredictTest
89 uint8_t* SixtapPredictTest::dst_ = NULL; member in __anon8fa4ae9e0111::SixtapPredictTest
150 2, 2, dst_, kDstStride)); in TEST_P()
154 ASSERT_EQ(expected_dst[i * kDstStride + j], dst_[i * kDstStride + j]) in TEST_P()
177 xoffset, yoffset, dst_, kDstStride)); in TEST_P()
181 ASSERT_EQ(dst_c_[i * kDstStride + j], dst_[i * kDstStride + j]) in TEST_P()
Dvp9_intrapred_test.cc43 *error_count += ref_dst_[x + y * stride_] != dst_[x + y * stride_]; in CheckPrediction()
45 ASSERT_EQ(ref_dst_[x + y * stride_], dst_[x + y * stride_]) in CheckPrediction()
56 dst_ = dst; in RunTest()
85 uint16_t *dst_; member in __anon2a6e24c20111::VP9IntraPredBase
113 ASM_REGISTER_STATE_CHECK(pred_fn_(dst_, stride_, const_above_row, in Predict()
/external/opencv3/modules/cudaarithm/src/cuda/
Dabsdiff_mat.cu110 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in absDiffMat_v2() local
112 gridTransformBinary(src1_, src2_, dst_, AbsDiffOp2(), stream); in absDiffMat_v2()
129 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in absDiffMat_v4() local
131 gridTransformBinary(src1_, src2_, dst_, AbsDiffOp4(), stream); in absDiffMat_v4()
155 GpuMat dst_ = dst.reshape(1); in absDiffMat() local
161 const intptr_t dstptr = reinterpret_cast<intptr_t>(dst_.data); in absDiffMat()
169 absDiffMat_v4(src1_, src2_, dst_, stream); in absDiffMat()
174 absDiffMat_v2(src1_, src2_, dst_, stream); in absDiffMat()
185 func(src1_, src2_, dst_, stream); in absDiffMat()
Dcmp_mat.cu120 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in cmpMatEq_v4() local
122 gridTransformBinary(src1_, src2_, dst_, VCmpEq4(), stream); in cmpMatEq_v4()
130 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in cmpMatNe_v4() local
132 gridTransformBinary(src1_, src2_, dst_, VCmpNe4(), stream); in cmpMatNe_v4()
140 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in cmpMatLt_v4() local
142 gridTransformBinary(src1_, src2_, dst_, VCmpLt4(), stream); in cmpMatLt_v4()
150 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in cmpMatLe_v4() local
152 gridTransformBinary(src1_, src2_, dst_, VCmpLe4(), stream); in cmpMatLe_v4()
197 GpuMat dst_ = dst.reshape(1); in cmpMat() local
203 const intptr_t dstptr = reinterpret_cast<intptr_t>(dst_.data); in cmpMat()
[all …]
Dadd_mat.cu90 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in addMat_v2() local
92 gridTransformBinary(src1_, src2_, dst_, AddOp2(), stream); in addMat_v2()
109 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in addMat_v4() local
111 gridTransformBinary(src1_, src2_, dst_, AddOp4(), stream); in addMat_v4()
192 GpuMat dst_ = dst.reshape(1); in addMat() local
198 const intptr_t dstptr = reinterpret_cast<intptr_t>(dst_.data); in addMat()
206 addMat_v4(src1_, src2_, dst_, stream); in addMat()
211 addMat_v2(src1_, src2_, dst_, stream); in addMat()
222 func(src1_, src2_, dst_, mask, stream); in addMat()
Dsub_mat.cu90 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in subMat_v2() local
92 gridTransformBinary(src1_, src2_, dst_, SubOp2(), stream); in subMat_v2()
109 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in subMat_v4() local
111 gridTransformBinary(src1_, src2_, dst_, SubOp4(), stream); in subMat_v4()
192 GpuMat dst_ = dst.reshape(1); in subMat() local
198 const intptr_t dstptr = reinterpret_cast<intptr_t>(dst_.data); in subMat()
206 subMat_v4(src1_, src2_, dst_, stream); in subMat()
211 subMat_v2(src1_, src2_, dst_, stream); in subMat()
222 func(src1_, src2_, dst_, mask, stream); in subMat()
Dminmax_mat.cu93 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in minMaxMat_v2() local
95 gridTransformBinary(src1_, src2_, dst_, Op2(), stream); in minMaxMat_v2()
121 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols); in minMaxMat_v4() local
123 gridTransformBinary(src1_, src2_, dst_, Op4(), stream); in minMaxMat_v4()
168 GpuMat dst_ = dst.reshape(1); in minMaxMat() local
174 const intptr_t dstptr = reinterpret_cast<intptr_t>(dst_.data); in minMaxMat()
182 funcs_v4[op](src1_, src2_, dst_, stream); in minMaxMat()
187 funcs_v2[op](src1_, src2_, dst_, stream); in minMaxMat()
195 func(src1_, src2_, dst_, stream); in minMaxMat()
Dmul_mat.cu183 GpuMat dst_ = dst.reshape(1); in mulMat() local
190 func(src1_, src2_, dst_, scale, stream); in mulMat()
Ddiv_mat.cu197 GpuMat dst_ = dst.reshape(1); in divMat() local
204 func(src1_, src2_, dst_, scale, stream); in divMat()
/external/v8/src/
Ddate.cc34 ClearSegment(&dst_[i]); in ResetDateCache()
37 before_ = &dst_[0]; in ResetDateCache()
38 after_ = &dst_[1]; in ResetDateCache()
223 ClearSegment(&dst_[i]); in DaylightSavingsOffsetInMs()
328 if (dst_[i].start_sec <= time_sec) { in ProbeDST()
329 if (before == NULL || before->start_sec < dst_[i].start_sec) { in ProbeDST()
330 before = &dst_[i]; in ProbeDST()
332 } else if (time_sec < dst_[i].end_sec) { in ProbeDST()
333 if (after == NULL || after->end_sec > dst_[i].end_sec) { in ProbeDST()
334 after = &dst_[i]; in ProbeDST()
[all …]
Ddate.h266 DST dst_[kDSTSize]; variable
/external/opencv3/modules/stitching/src/
Dtimelapsers.cpp63 dst_.create(dst_roi_.size(), CV_16SC3); in initialize()
68 dst_.setTo(Scalar::all(0)); in process()
71 Mat dst = dst_.getMat(ACCESS_RW); in process()
102 dst_.create(dst_roi_.size(), CV_16SC3); in initialize()
Dblenders.cpp72 dst_.create(dst_roi.size(), CV_16SC3); in prepare()
73 dst_.setTo(Scalar::all(0)); in prepare()
84 Mat dst = dst_.getMat(ACCESS_RW); in feed()
113 dst_.setTo(Scalar::all(0), mask); in blend()
114 dst.assign(dst_); in blend()
116 dst_.release(); in blend()
132 Mat dst = dst_.getMat(ACCESS_RW); in feed()
164 normalizeUsingWeightMap(dst_weight_map_, dst_); in blend()
232 dst_pyr_laplace_[0] = dst_; in prepare()
443 dst_ = dst_pyr_laplace_[0](dst_rc); in blend()
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dtimelapsers.hpp69 virtual const UMat& getDst() {return dst_;} in getDst()
75 UMat dst_; member in cv::detail::Timelapser
Dblenders.hpp89 UMat dst_, dst_mask_; member in cv::detail::Blender
/external/opencv3/modules/photo/src/
Dfast_nlmeans_denoising_invoker.hpp67 Mat& dst_; member
108 src_(src), dst_(dst) in FastNlMeansDenoisingInvoker()
144 if (dst_.empty()) in FastNlMeansDenoisingInvoker()
145 dst_ = Mat::zeros(src_.size(), src_.type()); in FastNlMeansDenoisingInvoker()
247 dst_.at<T>(i,j) = saturateCastFromArray<T, IT>(estimation); in operator ()()
Dfast_nlmeans_multi_denoising_invoker.hpp70 Mat& dst_; member
106 dst_(dst), extended_srcs_(srcImgs.size()) in FastNlMeansMultiDenoisingInvoker()
155 if (dst_.empty()) in FastNlMeansMultiDenoisingInvoker()
156 dst_ = Mat::zeros(srcImgs[0].size(), srcImgs[0].type()); in FastNlMeansMultiDenoisingInvoker()
274 dst_.at<T>(i,j) = saturateCastFromArray<T, IT>(estimation); in operator ()()
/external/webp/src/utils/
Dquant_levels_dec.c49 uint8_t* dst_; // output pointer member
139 uint8_t* const dst = p->dst_; in ApplyFilter()
152 p->dst_ += w; // advance output pointer in ApplyFilter()
237 p->dst_ = data; in InitParams()
/external/webrtc/webrtc/p2p/base/
Dturnserver.cc533 dst_(socket->GetRemoteAddress()), in TurnServerConnection()
539 return src_ == c.src_ && dst_ == c.dst_ && proto_ == c.proto_; in operator ==()
543 return src_ < c.src_ || dst_ < c.dst_ || proto_ < c.proto_; in operator <()
551 ost << src_.ToString() << "-" << dst_.ToString() << ":"<< kProtos[proto_]; in ToString()
Dturnserver.h55 rtc::SocketAddress dst_; variable
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
Dtransform.hpp185 …__global__ void transformSmart(const GlobPtr<SrcType> src_, GlobPtr<DstType> dst_, const UnOp op, … in transformSmart() argument
197 DstType* dst = dst_.row(y); in transformSmart()
220 … GlobPtr<SrcType1> src1_, const GlobPtr<SrcType2> src2_, GlobPtr<DstType> dst_, const BinOp op, co… in transformSmart() argument
234 DstType* dst = dst_.row(y); in transformSmart()
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
Dtransform_detail.hpp208 …static __global__ void transformSmart(const PtrStepSz<T> src_, PtrStep<D> dst_, const Mask mask, c… in transformSmart() argument
221 D* dst = dst_.ptr(y); in transformSmart()
256 …__global__ void transformSmart(const PtrStepSz<T1> src1_, const PtrStep<T2> src2_, PtrStep<D> dst_, in transformSmart() argument
272 D* dst = dst_.ptr(y); in transformSmart()
/external/opencv3/modules/imgproc/src/
Dclahe.cpp235 src_(src), dst_(dst), lut_(lut), tileSize_(tileSize), tilesX_(tilesX), tilesY_(tilesY) in CLAHE_Interpolation_Body()
268 mutable cv::Mat dst_; member in __anone74a6e2b0111::CLAHE_Interpolation_Body
288 T* dstRow = dst_.ptr<T>(y); in operator ()()
Ddemosaicing.cpp1651 Mat dst_ = _dst.getMat(); in demosaicing() local
1657 Bayer2RGB_<uchar, SIMDBayerInterpolator_8u>(src, dst_, code); in demosaicing()
1659 Bayer2RGB_<ushort, SIMDBayerStubInterpolator_<ushort> >(src, dst_, code); in demosaicing()
1666 Bayer2RGB_VNG_8u(src, dst_, code); in demosaicing()
/external/opencv3/modules/core/src/
Dconvert.cpp5714 Mat& dst_;
5723 : ok(_ok), src_(src), lut_(lut), dst_(dst)
5746 Mat dst = dst_.rowRange(row0, row1);
5770 Mat& dst_; member in cv::ipp::IppLUTParallelBody_LUTCN
5778 : ok(_ok), src_(src), lut_(lut), dst_(dst), lutBuffer(NULL) in IppLUTParallelBody_LUTCN()
5833 Mat dst = dst_.rowRange(row0, row1); in operator ()()
5871 Mat& dst_; member in cv::LUTParallelBody
5876 : ok(_ok), src_(src), lut_(lut), dst_(dst) in LUTParallelBody()
5890 Mat dst = dst_.rowRange(row0, row1); in operator ()()

12