/external/webrtc/webrtc/modules/audio_processing/agc/legacy/ |
D | analog_agc.c | 143 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 …]
|
D | gain_control.h | 248 int32_t maxLevel,
|
D | analog_agc.h | 107 int32_t maxLevel; // Max possible vol level, incl dig gain member
|
/external/opencv3/modules/cudaoptflow/src/ |
D | pyrlk.cpp | 74 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/ |
D | video+Video.java | 69 …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/ |
D | BidiLine.java | 361 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/ |
D | BidiLine.java | 362 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/ |
D | perf_optflowpyrlk.cpp | 52 int maxLevel = 2; variable 91 Size(winSize, winSize), maxLevel, criteria, 126 int maxLevel = 2; variable 162 …maxLevel = buildOpticalFlowPyramid(frame1, pyramid1, Size(winSize, winSize), maxLevel, withDerivat… 163 …maxLevel = 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/ |
D | PictureNestingBench.cpp | 19 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/ |
D | ubidiln.c | 435 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/ |
D | test_optflowpyrlk.cpp | 61 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/ |
D | cudaoptflow.hpp | 167 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/ |
D | perf_pyramid.cpp | 112 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/ |
D | lkpyramid.cpp | 211 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 …]
|
D | lkpyramid.hpp | 30 int maxLevel; member
|
/external/opencv3/modules/imgproc/perf/ |
D | perf_pyramids.cpp | 59 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/ |
D | perf_optflow_pyrlk.cpp | 77 const int maxLevel = 3; variable 93 …cv::calcOpticalFlowPyrLK(uFrame0, uFrame1, pts, uNextPts, uStatus, uErr, winSize, maxLevel, criter…
|
/external/deqp/framework/common/ |
D | tcuTexLookupVerifier.cpp | 1340 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 …]
|
D | tcuTexture.cpp | 2134 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 …]
|
D | tcuTexCompareVerifier.cpp | 838 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/ |
D | doclava-developer-reference.js | 28 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/ |
D | tracking.hpp | 121 Size winSize, int maxLevel, bool withDerivatives = true, 176 Size winSize = Size(21,21), int maxLevel = 3,
|
/external/deqp/modules/gles3/functional/ |
D | es3fASTCDecompressionCases.cpp | 206 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/ |
D | pyrlk_optical_flow.cpp | 113 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/ |
D | optical_flow.hpp | 88 virtual int maxLevel() const { return maxLevel_; } in maxLevel() function in cv::videostab::PyrLkOptFlowEstimatorBase
|