HomeSort by relevance Sort by last modified time
    Searched full:maxdepth (Results 51 - 75 of 526) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/deqp/android/cts/
Android.mk 33 find -L master -maxdepth 1 -name "*.txt") \
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/
updateBugState.sh 9 #for f in `find $ANT_HOME/lib -maxdepth 1 -name "*.jar" -type f -not -name "xercesImpl.jar"`; do CLASSPATH=$CLASSPATH":"$f; done
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrix.h 236 template<int StorageOrder, typename LhsScalar, typename RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor=1,
237 bool FiniteAtCompileTime = MaxRows!=Dynamic && MaxCols!=Dynamic && MaxDepth != Dynamic> class gemm_blocking_space;
269 template<int StorageOrder, typename _LhsScalar, typename _RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor>
270 class gemm_blocking_space<StorageOrder,_LhsScalar,_RhsScalar,MaxRows, MaxCols, MaxDepth, KcFactor, true>
284 SizeA = ActualRows * MaxDepth,
285 SizeB = ActualCols * MaxDepth,
286 SizeW = MaxDepth * Traits::WorkSpaceFactor
299 this->m_kc = MaxDepth;
311 template<int StorageOrder, typename _LhsScalar, typename _RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor>
312 class gemm_blocking_space<StorageOrder,_LhsScalar,_RhsScalar,MaxRows, MaxCols, MaxDepth, KcFactor, false
    [all...]
  /development/build/tools/
patch_windows_sdk.sh 83 find $TEMP_SDK_DIR -maxdepth 1 -name "*.[ht]*" -type f -print0 | xargs -0 $UNIX2DOS
84 find $TEMP_SDK_DIR -maxdepth 3 -name "*.bat" -type f -print0 | xargs -0 $UNIX2DOS
  /build/soong/
bootstrap.bash 43 if [[ $(find $BUILDDIR -maxdepth 1 -name Android.bp) ]]; then
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
feedManipulation.sh 20 #for f in `find $ANT_HOME/lib -maxdepth 1 -name "*.jar" -type f -not -name "xercesImpl.jar"`; do CLASSPATH=$CLASSPATH":"$f; done
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
NDC.java 99 static public void setMaxDepth(int maxDepth) {
  /external/toybox/toys/posix/
du.c 40 long maxdepth;
57 if (TT.maxdepth && TT.depth > TT.maxdepth) return;
  /external/opencv3/modules/ml/
precomp.hpp 126 TreeParams( int maxDepth, int minSampleCount,
142 maxDepth = std::min( val, 25 );
166 inline int getMaxDepth() const { return maxDepth; }
184 int maxDepth;
280 CV_WRAP_SAME_PROPERTY(int, MaxDepth, params)
  /external/opencv3/modules/ml/src/
precomp.hpp 126 TreeParams( int maxDepth, int minSampleCount,
142 maxDepth = std::min( val, 25 );
166 inline int getMaxDepth() const { return maxDepth; }
184 int maxDepth;
280 CV_WRAP_SAME_PROPERTY(int, MaxDepth, params)
  /external/chromium-trace/catapult/third_party/Paste/docs/
index.txt 7 :maxdepth: 1
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/docs/
index.rst 48 :maxdepth: 1
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/doc/
index.rst 40 :maxdepth: 2
  /external/deqp/framework/randomshaders/
rsgUtils.cpp 249 int maxDepth = 0;
271 maxDepth = de::max(maxDepth, depth);
273 return maxDepth + 1;
  /external/mesa3d/src/mesa/main/
matrix.c 251 if (stack->Depth + 1 >= stack->MaxDepth) {
658 * \param maxDepth maximum stack depth.
661 * Allocates an array of \p maxDepth elements for the matrix stack and calls
666 GLuint maxDepth, GLuint dirtyFlag )
671 stack->MaxDepth = maxDepth;
674 stack->Stack = (GLmatrix *) CALLOC(maxDepth * sizeof(GLmatrix));
675 for (i = 0; i < maxDepth; i++) {
693 for (i = 0; i < stack->MaxDepth; i++) {
  /external/opencv3/apps/traincascade/
cascadeclassifier.h 33 #define CC_MAX_DEPTH "maxDepth"
  /hardware/bsp/intel/peripheral/libmraa/src/python/docs/
index.rst 14 :maxdepth: 2
  /prebuilts/go/darwin-x86/src/sort/
sort.go 165 func quickSort(data Interface, a, b, maxDepth int) {
167 if maxDepth == 0 {
171 maxDepth--
176 quickSort(data, a, mlo, maxDepth)
179 quickSort(data, mhi, b, maxDepth)
194 maxDepth := 0
196 maxDepth++
198 maxDepth *= 2
199 quickSort(data, 0, n, maxDepth)
  /prebuilts/go/linux-x86/src/sort/
sort.go 165 func quickSort(data Interface, a, b, maxDepth int) {
167 if maxDepth == 0 {
171 maxDepth--
176 quickSort(data, a, mlo, maxDepth)
179 quickSort(data, mhi, b, maxDepth)
194 maxDepth := 0
196 maxDepth++
198 maxDepth *= 2
199 quickSort(data, 0, n, maxDepth)
  /prebuilts/tools/common/proguard/proguard4.7/build/
build.sh 48 (cd "$SRC"; find $(dirname $1) -maxdepth 1 \
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 90 int MaxDepth,
97 MaxDepth(MaxDepth),
240 // 0 < CurrentDepth <= MaxDepth.
246 if (CurrentDepth == 0 || CurrentDepth > MaxDepth) {
285 const int MaxDepth;
378 BoundNodesTreeBuilder *Builder, int MaxDepth,
382 return matchesRecursively(Node, Matcher, Builder, MaxDepth, Traversal,
400 MaxDepth, Traversal, Bind);
412 BoundNodesTreeBuilder *Builder, int MaxDepth,
    [all...]
  /cts/hostsidetests/sustainedperf/shadertoy_android/jni/
shaders.cpp 127 float maxDepth = 70.0;
133 if ((t > maxDepth)) break;
  /external/autotest/client/site_tests/security_ProfilePermissions/
security_ProfilePermissions.py 90 'find -L "%s" -maxdepth 0 \\( \\! -perm 710 '
93 'find -L "%s/Downloads" -maxdepth 0 \\( \\! -perm 710 '
  /external/autotest/client/tests/kvm/tests/
cpu_hotplug.py 53 n_cmd = 'find /sys/devices/system/cpu/cpu[0-99] -maxdepth 0 -type d | wc -l'
68 r_cmd = 'find /sys/devices/system/cpu/cpu[1-99]/online -maxdepth 0 -type f'
  /external/deqp/external/vulkancts/framework/vulkan/
vkTypeUtil.inl 161 inline VkViewport makeViewport (float x, float y, float width, float height, float minDepth, float maxDepth)
169 res.maxDepth = maxDepth;

Completed in 455 milliseconds

1 23 4 5 6 7 8 91011>>