Home
last modified time | relevance | path

Searched refs:maxLevel (Results 1 – 25 of 45) sorted by relevance

12

/external/webrtc/webrtc/modules/audio_processing/agc/legacy/
Danalog_agc.c143 assert(stt->maxLevel > stt->maxAnalog); in WebRtcAgc_AddMic()
148 tmp16 = (int16_t)(stt->maxLevel - stt->maxAnalog); in WebRtcAgc_AddMic()
678 tmp32 = ((stt->maxLevel - stt->minLevel) * 51) >> 9; in WebRtcAgc_ProcessAnalog()
698 tmp32 = ((stt->maxLevel - stt->minLevel) * 51) >> 9; in WebRtcAgc_ProcessAnalog()
726 if (inMicLevelTmp > stt->maxLevel) in WebRtcAgc_ProcessAnalog()
729 stt->maxLevel = inMicLevelTmp; in WebRtcAgc_ProcessAnalog()
879 stt->maxLevel = (15 * stt->maxLevel + stt->micVol) / 16; in WebRtcAgc_ProcessAnalog()
880 stt->maxLevel = WEBRTC_SPL_MAX(stt->maxLevel, stt->maxAnalog); in WebRtcAgc_ProcessAnalog()
908 stt->maxLevel); in WebRtcAgc_ProcessAnalog()
927 stt->maxLevel = (15 * stt->maxLevel + stt->micVol) / 16; in WebRtcAgc_ProcessAnalog()
[all …]
Dgain_control.h248 int32_t maxLevel,
Danalog_agc.h107 int32_t maxLevel; // Max possible vol level, incl dig gain member
/external/opencv3/modules/cudaoptflow/src/
Dpyrlk.cpp74 PyrLKOpticalFlowBase(Size winSize, int maxLevel, int iters, bool useInitialFlow);
92 …PyrLKOpticalFlowBase::PyrLKOpticalFlowBase(Size winSize, int maxLevel, int iters, bool useInitialF… in PyrLKOpticalFlowBase() argument
93 winSize_(winSize), maxLevel_(maxLevel), iters_(iters), useInitialFlow_(useInitialFlow) in PyrLKOpticalFlowBase()
269 SparsePyrLKOpticalFlowImpl(Size winSize, int maxLevel, int iters, bool useInitialFlow) : in SparsePyrLKOpticalFlowImpl() argument
270 PyrLKOpticalFlowBase(winSize, maxLevel, iters, useInitialFlow) in SparsePyrLKOpticalFlowImpl()
278 virtual void setMaxLevel(int maxLevel) { maxLevel_ = maxLevel; } in setMaxLevel() argument
306 DensePyrLKOpticalFlowImpl(Size winSize, int maxLevel, int iters, bool useInitialFlow) : in DensePyrLKOpticalFlowImpl() argument
307 PyrLKOpticalFlowBase(winSize, maxLevel, iters, useInitialFlow) in DensePyrLKOpticalFlowImpl()
315 virtual void setMaxLevel(int maxLevel) { maxLevel_ = maxLevel; } in setMaxLevel() argument
340 Ptr<SparsePyrLKOpticalFlow> cv::cuda::SparsePyrLKOpticalFlow::create(Size winSize, int maxLevel, in… in create() argument
[all …]
/external/opencv3/modules/java/src/
Dvideo+Video.java69 …t buildOpticalFlowPyramid(Mat img, List<Mat> pyramid, Size winSize, int maxLevel, boolean withDeri… in buildOpticalFlowPyramid() argument
72 …_0(img.nativeObj, pyramid_mat.nativeObj, winSize.width, winSize.height, maxLevel, withDerivatives,… in buildOpticalFlowPyramid()
79 … public static int buildOpticalFlowPyramid(Mat img, List<Mat> pyramid, Size winSize, int maxLevel) in buildOpticalFlowPyramid() argument
82 …pticalFlowPyramid_1(img.nativeObj, pyramid_mat.nativeObj, winSize.width, winSize.height, maxLevel); in buildOpticalFlowPyramid()
94 …tOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel, TermCriteria cri… in calcOpticalFlowPyrLK() argument
100 …status_mat.nativeObj, err_mat.nativeObj, winSize.width, winSize.height, maxLevel, criteria.type, c… in calcOpticalFlowPyrLK()
106 …oint2f prevPts, MatOfPoint2f nextPts, MatOfByte status, MatOfFloat err, Size winSize, int maxLevel) in calcOpticalFlowPyrLK() argument
112 …s_mat.nativeObj, status_mat.nativeObj, err_mat.nativeObj, winSize.width, winSize.height, maxLevel); in calcOpticalFlowPyrLK()
259 …pyramid_mat_nativeObj, double winSize_width, double winSize_height, int maxLevel, boolean withDeri… in buildOpticalFlowPyramid_0() argument
260 …_nativeObj, long pyramid_mat_nativeObj, double winSize_width, double winSize_height, int maxLevel); in buildOpticalFlowPyramid_1() argument
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DBidiLine.java361 private static void reorderLine(Bidi bidi, byte minLevel, byte maxLevel) { in reorderLine() argument
364 if (maxLevel<=(minLevel|1)) { in reorderLine()
389 while (--maxLevel >= minLevel) { in reorderLine()
396 while (firstRun < runCount && levels[runs[firstRun].start] < maxLevel) { in reorderLine()
405 levels[runs[limitRun].start]>=maxLevel; ) {} in reorderLine()
528 byte maxLevel=0; in getRuns()
556 if (level > maxLevel) { in getRuns()
557 maxLevel = level; in getRuns()
582 reorderLine(bidi, minLevel, maxLevel); in getRuns()
631 byte level, minLevel, maxLevel; in prepareReorder()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DBidiLine.java362 private static void reorderLine(Bidi bidi, byte minLevel, byte maxLevel) { in reorderLine() argument
365 if (maxLevel<=(minLevel|1)) { in reorderLine()
390 while (--maxLevel >= minLevel) { in reorderLine()
397 while (firstRun < runCount && levels[runs[firstRun].start] < maxLevel) { in reorderLine()
406 levels[runs[limitRun].start]>=maxLevel; ) {} in reorderLine()
529 byte maxLevel=0; in getRuns()
557 if (level > maxLevel) { in getRuns()
558 maxLevel = level; in getRuns()
583 reorderLine(bidi, minLevel, maxLevel); in getRuns()
632 byte level, minLevel, maxLevel; in prepareReorder()
[all …]
/external/opencv3/modules/video/perf/
Dperf_optflowpyrlk.cpp52 int maxLevel = 2; variable
91 Size(winSize, winSize), maxLevel, criteria,
126 int maxLevel = 2; variable
162maxLevel = buildOpticalFlowPyramid(frame1, pyramid1, Size(winSize, winSize), maxLevel, withDerivat…
163maxLevel = buildOpticalFlowPyramid(frame2, pyramid2, Size(winSize, winSize), maxLevel, withDerivat…
172 Size(winSize, winSize), maxLevel, criteria, in TEST_CYCLE_MULTIRUN()
210 …int maxLevel = buildOpticalFlowPyramid(img, pyramid, winSize, 1000, withDerivatives, BORDER_CONSTA… variable
217 …buildOpticalFlowPyramid(img, pyramid, winSize, maxLevel, withDerivatives, pyrBorder, derivBorder, … in TEST_CYCLE()
/external/skia/bench/
DPictureNestingBench.cpp19 PictureNesting(const char* name, int maxLevel, int maxPictureLevel) in PictureNesting() argument
20 : fMaxLevel(maxLevel) in PictureNesting()
111 PictureNestingRecording(int maxLevel, int maxPictureLevel) in PictureNestingRecording() argument
112 : INHERITED("recording", maxLevel, maxPictureLevel) { in PictureNestingRecording()
138 PictureNestingPlayback(int maxLevel, int maxPictureLevel) in PictureNestingPlayback() argument
139 : INHERITED("playback", maxLevel, maxPictureLevel) { in PictureNestingPlayback()
/external/icu/icu4c/source/common/
Dubidiln.c435 reorderLine(UBiDi *pBiDi, UBiDiLevel minLevel, UBiDiLevel maxLevel) { in reorderLine() argument
441 if(maxLevel<=(minLevel|1)) { in reorderLine()
461 while(--maxLevel>=minLevel) { in reorderLine()
468 while(firstRun<runCount && levels[runs[firstRun].logicalStart]<maxLevel) { in reorderLine()
476 … for(limitRun=firstRun; ++limitRun<runCount && levels[runs[limitRun].logicalStart]>=maxLevel;) {} in reorderLine()
600 UBiDiLevel minLevel=UBIDI_MAX_EXPLICIT_LEVEL+1, maxLevel=0; in ubidi_getRuns() local
631 if(level>maxLevel) { in ubidi_getRuns()
632 maxLevel=level; in ubidi_getRuns()
660 reorderLine(pBiDi, minLevel, maxLevel); in ubidi_getRuns()
714 UBiDiLevel level, minLevel, maxLevel; in prepareReorder() local
[all …]
/external/opencv3/modules/video/test/ocl/
Dtest_optflowpyrlk.cpp61 int maxLevel; in PARAM_TEST_CASE() local
69 maxLevel = GET_PARAM(1); in PARAM_TEST_CASE()
95 …owPyrLK(frame0, frame1, pts, cpuNextPts, cpuStatusCPU, cpuErr, winSize, maxLevel, criteria, flags,… in OCL_TEST_P()
98 …umatFrame0, umatFrame1, pts, umatNextPts, umatStatus, umatErr, winSize, maxLevel, criteria, flags,… in OCL_TEST_P()
/external/opencv3/modules/cudaoptflow/include/opencv2/
Dcudaoptflow.hpp167 virtual void setMaxLevel(int maxLevel) = 0;
177 int maxLevel = 3,
194 virtual void setMaxLevel(int maxLevel) = 0;
204 int maxLevel = 3,
/external/opencv3/modules/imgproc/perf/opencl/
Dperf_pyramid.cpp112 const int type = get<1>(params), maxLevel = 5; in OCL_PERF_TEST_P()
117 std::vector<UMat> dst(maxLevel); in OCL_PERF_TEST_P()
121 OCL_TEST_CYCLE() cv::buildPyramid(src, dst, maxLevel); in OCL_PERF_TEST_P()
/external/opencv3/modules/video/src/
Dlkpyramid.cpp211 maxLevel = _maxLevel; in LKTrackerInvoker()
242 if( level == maxLevel ) in operator ()()
744 …Pyramid(InputArray _img, OutputArrayOfArrays pyramid, Size winSize, int maxLevel, bool withDerivat… in buildOpticalFlowPyramid() argument
751 pyramid.create(1, (maxLevel + 1) * pyrstep, 0 /*type*/, -1, true, 0); in buildOpticalFlowPyramid()
791 for(int level = 0; level <= maxLevel; ++level) in buildOpticalFlowPyramid()
837 return maxLevel; in buildOpticalFlowPyramid()
853 maxLevel = 3; in PyrLKOpticalFlow()
868 if (maxLevel < 0 || winSize.width <= 2 || winSize.height <= 2) in checkParam()
885 multiply(1.0f / (1 << maxLevel) /2.0f, temp1, temp2); in sparse()
890 std::vector<UMat> prevPyr; prevPyr.resize(maxLevel + 1); in sparse()
[all …]
Dlkpyramid.hpp30 int maxLevel; member
/external/opencv3/modules/imgproc/perf/
Dperf_pyramids.cpp59 int maxLevel = 5; in PERF_TEST_P() local
63 std::vector<Mat> dst(maxLevel); in PERF_TEST_P()
67 TEST_CYCLE() buildPyramid(src, dst, maxLevel); in PERF_TEST_P()
/external/opencv3/modules/video/perf/opencl/
Dperf_optflow_pyrlk.cpp77 const int maxLevel = 3; variable
93 …cv::calcOpticalFlowPyrLK(uFrame0, uFrame1, pts, uNextPts, uStatus, uErr, winSize, maxLevel, criter…
/external/deqp/framework/common/
DtcuTexLookupVerifier.cpp1340 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); in isLookupResultValid() local
1342 DE_ASSERT(minLevel <= maxLevel); in isLookupResultValid()
1344 for (int level = minLevel; level <= maxLevel; level++) in isLookupResultValid()
1358 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); in isLookupResultValid() local
1360 DE_ASSERT(minLevel <= maxLevel); in isLookupResultValid()
1362 for (int level = minLevel; level <= maxLevel; level++) in isLookupResultValid()
1405 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); in isLookupResultValid() local
1407 DE_ASSERT(minLevel <= maxLevel); in isLookupResultValid()
1409 for (int level = minLevel; level <= maxLevel; level++) in isLookupResultValid()
1423 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); in isLookupResultValid() local
[all …]
DtcuTexture.cpp2134 int maxLevel = (int)numLevels-1; in sampleLevelArray1DOffset() local
2135 int level = deClamp32((int)deFloatCeil(lod + 0.5f) - 1, 0, maxLevel); in sampleLevelArray1DOffset()
2144 int maxLevel = (int)numLevels-1; in sampleLevelArray1DOffset() local
2145 int level0 = deClamp32((int)deFloatFloor(lod), 0, maxLevel); in sampleLevelArray1DOffset()
2146 int level1 = de::min(maxLevel, level0 + 1); in sampleLevelArray1DOffset()
2174 int maxLevel = (int)numLevels-1; in sampleLevelArray2DOffset() local
2175 int level = deClamp32((int)deFloatCeil(lod + 0.5f) - 1, 0, maxLevel); in sampleLevelArray2DOffset()
2184 int maxLevel = (int)numLevels-1; in sampleLevelArray2DOffset() local
2185 int level0 = deClamp32((int)deFloatFloor(lod), 0, maxLevel); in sampleLevelArray2DOffset()
2186 int level1 = de::min(maxLevel, level0 + 1); in sampleLevelArray2DOffset()
[all …]
DtcuTexCompareVerifier.cpp838 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); in isTexCompareResultValid() local
840 DE_ASSERT(minLevel <= maxLevel); in isTexCompareResultValid()
842 for (int level = minLevel; level <= maxLevel; level++) in isTexCompareResultValid()
856 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); in isTexCompareResultValid() local
858 DE_ASSERT(minLevel <= maxLevel); in isTexCompareResultValid()
860 for (int level = minLevel; level <= maxLevel; level++) in isTexCompareResultValid()
1121 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); in isTexCompareResultValid() local
1123 DE_ASSERT(minLevel <= maxLevel); in isTexCompareResultValid()
1125 for (int level = minLevel; level <= maxLevel; level++) in isTexCompareResultValid()
1139 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); in isTexCompareResultValid() local
[all …]
/external/doclava/res/assets/templates/assets/
Ddoclava-developer-reference.js28 var maxLevel = SINCE_DATA.length;
31 …userApiLevel = userApiLevel == 0 ? maxLevel : userApiLevel; // If there's no cookie (zero), use th…
42 for (var i = maxLevel-1; i >= 0; i--) {
54 var maxLevel = SINCE_DATA.length;
56 var selectedLevel = maxLevel;
/external/opencv3/modules/video/include/opencv2/video/
Dtracking.hpp121 Size winSize, int maxLevel, bool withDerivatives = true,
176 Size winSize = Size(21,21), int maxLevel = 3,
/external/deqp/modules/gles3/functional/
Des3fASTCDecompressionCases.cpp206 ASTCSupportLevel maxLevel = ASTCSUPPORTLEVEL_NONE; in getASTCSupportLevel() local
213 maxLevel = de::max(maxLevel, ext == "GL_KHR_texture_compression_astc_hdr" ? ASTCSUPPORTLEVEL_HDR in getASTCSupportLevel()
219 maxLevel = de::max(maxLevel, ext == "GL_KHR_texture_compression_astc_ldr" ? ASTCSUPPORTLEVEL_LDR in getASTCSupportLevel()
226 return maxLevel; in getASTCSupportLevel()
/external/opencv3/samples/gpu/
Dpyrlk_optical_flow.cpp113 int maxLevel = cmd.get<int>("max_level"); in main() local
152 Size(winSize, winSize), maxLevel, iters); in main()
/external/opencv3/modules/videostab/include/opencv2/videostab/
Doptical_flow.hpp88 virtual int maxLevel() const { return maxLevel_; } in maxLevel() function in cv::videostab::PyrLkOptFlowEstimatorBase

12