HomeSort by relevance Sort by last modified time
    Searched defs:pivot (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /external/trappy/trappy/
idle.py 23 pivot = "cpu_id" variable in class:CpuIdle
pid_controller.py 29 pivot = "thermal_zone_id" variable in class:PIDController
30 """The Pivot along which the data is orthogonal"""
cpu_power.py 25 """Pivot a :mod:`pandas.DataFrame` row into columns
106 pivot = "cpus" variable in class:CpuOutPower
107 """The Pivot along which the data is orthogonal"""
136 pivot = "cpus" variable in class:CpuInPower
137 """The Pivot along which the data is orthogonal"""
thermal.py 36 pivot = "id" variable in class:Thermal
37 """The Pivot along which the data is orthogonal"""
130 pivot = "thermal_zone_id" variable in class:ThermalGovernor
131 """The Pivot along which the data is orthogonal"""
sched.py 30 pivot = "cpus" variable in class:SchedLoadAvgSchedGroup
31 """The Pivot along which the data is orthogonal"""
49 pivot = "pid" variable in class:SchedLoadAvgTask
50 """The Pivot along which the data is orthogonal"""
66 pivot="cpu")
80 pivot = "cpu" variable in class:SchedCpuCapacity
81 """The Pivot along which the data is orthogonal"""
84 """This renaming is necessary because our cpu related pivot is 'cpu'
126 pivot = "cpu" variable in class:SchedCpuFrequency
127 """The Pivot along which the data is orthogonal""
    [all...]
  /device/google/contexthub/firmware/os/algos/common/math/
kasa.c 93 struct Size4 pivot; local
94 mat44DecomposeLup(&A, &pivot);
97 mat44Solve(&A, &out, &b, &pivot);
  /external/eigen/bench/btl/actions/
action_lu_solve.hh 74 typename Interface::Pivot_Vector pivot; // pivot vector local
75 Interface::new_Pivot_Vector(pivot,size);
89 Interface::LU_factor(LU,pivot,size);
93 Interface::LU_solve(LU,pivot,B,X,size);
125 Interface::free_Pivot_Vector(pivot);
  /frameworks/base/tools/aapt2/
NameMangler.h 82 size_t pivot = out_name->find('$'); local
83 if (pivot == std::string::npos) {
87 out_package->assign(out_name->data(), pivot);
88 std::string new_name = out_name->substr(pivot + 1);
  /external/skia/src/core/
SkTSort.h 138 static T* SkTQSort_Partition(T* left, T* right, T* pivot, C lessThan) {
139 T pivotValue = *pivot;
140 SkTSwap(*pivot, *right);
178 T* pivot = left + ((right - left) >> 1); local
179 pivot = SkTQSort_Partition(left, right, pivot, lessThan);
181 SkTIntroSort(depth, left, pivot - 1, lessThan);
182 left = pivot + 1;
  /external/skqp/src/core/
SkTSort.h 138 static T* SkTQSort_Partition(T* left, T* right, T* pivot, C lessThan) {
139 T pivotValue = *pivot;
140 SkTSwap(*pivot, *right);
178 T* pivot = left + ((right - left) >> 1); local
179 pivot = SkTQSort_Partition(left, right, pivot, lessThan);
181 SkTIntroSort(depth, left, pivot - 1, lessThan);
182 left = pivot + 1;
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_indexing.cpp 35 a pivot element. Values equal to the pivot are ignored*/
36 void db_LeanPartitionOnPivot(double pivot,double *dest,const double *source,long first,long last,long *first_equal,long *last_equal)
52 if(temp<pivot) *(d_bottom++)=temp;
53 else if(temp>pivot) *(d_top--)=temp;
63 double pivot; local
78 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2]);
79 db_LeanPartitionOnPivot(pivot,dest,source,first,last,&first_equal,&last_equal);
85 return(pivot);
95 pivot=db_TripleMedian(source[first],source[last],source[(first+last)/2])
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
RandomDataImpl.java 364 final double pivot = 40.0d; local
365 if (mean < pivot) {
    [all...]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineInplaceLU.h 128 const double pivot = m_lu.coeffDiag(row); local
133 lIt.valueRef() /= pivot;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MatrixUtils.java 44 * Find a pivot and swap the row of squareMatrix0 and squareMatrix1
49 float pivot = Math.abs(squareMatrix0[row][row]); local
51 if (pivot < Math.abs(squareMatrix0[i][row])) {
53 pivot = Math.abs(squareMatrix0[i][row]);
74 final float pivot = squareMatrix0[row][row]; local
75 if (pivot == 0) {
76 throw new MatrixOperationFailedException("Inverse failed. Invalid pivot");
79 squareMatrix0[row][j] /= pivot;
80 squareMatrix1[row][j] /= pivot;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
FieldLUDecompositionImpl.java 35 * a zero pivot element, no attempt is done to get the largest pivot element.</p>
49 /** Pivot permutation associated with LU decomposition */
50 private int[] pivot; field in class:FieldLUDecompositionImpl
82 pivot = new int[m];
89 pivot[row] = row;
131 // Pivot if necessary
139 int temp = pivot[nonZero];
140 pivot[nonZero] = pivot[col]
235 private final int[] pivot; field in class:FieldLUDecompositionImpl.Solver
    [all...]
LUDecompositionImpl.java 44 /** Pivot permutation associated with LU decomposition */
45 private int[] pivot; field in class:LUDecompositionImpl
88 pivot = new int[m];
95 pivot[row] = row;
139 // Pivot if necessary
149 int temp = pivot[max];
150 pivot[max] = pivot[col];
151 pivot[col] = temp;
167 final int m = pivot.length
238 private final int[] pivot; field in class:LUDecompositionImpl.Solver
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
Percentile.java 301 * @param pivotsHeap set of pivot index corresponding to elements that
317 final int pivot; local
319 // the pivot has already been found in a previous call
321 pivot = pivotsHeap[node];
323 // select a pivot and partition work array around it
324 pivot = partition(work, begin, end, medianOf3(work, begin, end));
326 pivotsHeap[node] = pivot;
330 if (k == pivot) {
331 // the pivot was exactly the element we wanted
333 } else if (k < pivot) {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NodeVector.java 669 * Pick a pivot and move it out of the way
671 int pivot = a[(lo + hi) / 2]; local
674 a[hi] = pivot;
681 * is greater than the pivot or lo >= hi
683 while (a[lo] <= pivot && lo < hi)
690 * is less than the pivot, or lo >= hi
692 while (pivot <= a[hi] && lo < hi)
719 a[hi] = pivot;
723 * equal to pivot, elements a[hi+1] to a[hi0] are greater than
724 * pivot
    [all...]
  /external/icu/icu4c/source/test/perf/utfperf/
utfperf.cpp 37 static UChar pivot[INTERMEDIATE_CAPACITY]; variable
59 UOPTION_DEF("pivot", '\x01', UOPT_REQUIRES_ARG)
66 "\t--pivot Length (in UChars) of the UTF-16 pivot buffer, if applicable.\n"
85 fprintf(stderr, "error: pivot length must be 1..%ld\n", (long)PIVOT_CAPACITY);
301 pivotSource=pivotTarget=pivot;
302 pivotLimit=pivot+testcase.pivotLength;
311 pivot, &pivotSource, &pivotTarget, pivotLimit,
  /external/mesa3d/src/egl/main/
eglconfig.c 683 const EGLint pivot = 0; local
689 _eglSwapConfigs(&configs[pivot], &configs[count / 2]);
693 while (i < count && compare(configs[i], configs[pivot], priv_data) < 0)
695 while (compare(configs[j], configs[pivot], priv_data) > 0)
708 _eglSwapConfigs(&configs[pivot], &configs[j]);
  /external/opencv/cv/src/
_cvkdtree.hpp 127 const __instype & pivot; member in struct:CvKDTree::median_pr
132 : pivot(_pivot), dim(_dim), deref(_deref), ctor(_ctor) {
135 return deref(ctor(lhs), dim) <= deref(ctor(pivot), dim);
142 int pivot = (last - first) / 2; local
144 std::swap(first[pivot], last[-1]);
  /external/skia/gm/
aaclip.cpp 316 SkMatrix pivot; local
317 pivot.setRotate(90, W/2, H/2);
318 fVPath.transform(pivot, &fHPath);
  /external/skia/samplecode/
SampleAndroidShadows.cpp 236 SkPoint pivot = SkPoint::Make(fWideRectPath.getBounds().width()/2, variable
245 persp.preTranslate(-pivot.fX, -pivot.fY);
246 persp.postTranslate(pivot.fX + translate.fX, pivot.fY + translate.fY);
251 SkTMax(1.0f, 16 + fZDelta) - SkScalarSin(-radians)*pivot.fY);
255 pivot = SkPoint::Make(fWideOvalPath.getBounds().width() / 2,
261 persp.preTranslate(-pivot.fX, -pivot.fY);
262 persp.postTranslate(pivot.fX + translate.fX, pivot.fY + translate.fY)
    [all...]
  /external/skqp/gm/
aaclip.cpp 316 SkMatrix pivot; local
317 pivot.setRotate(90, W/2, H/2);
318 fVPath.transform(pivot, &fHPath);
  /external/skqp/samplecode/
SampleAndroidShadows.cpp 235 SkPoint pivot = SkPoint::Make(fWideRectPath.getBounds().width()/2, variable
244 persp.preTranslate(-pivot.fX, -pivot.fY);
245 persp.postTranslate(pivot.fX + translate.fX, pivot.fY + translate.fY);
250 SkTMax(1.0f, 16 + fZDelta) - SkScalarSin(-radians)*pivot.fY);
254 pivot = SkPoint::Make(fWideOvalPath.getBounds().width() / 2,
260 persp.preTranslate(-pivot.fX, -pivot.fY);
261 persp.postTranslate(pivot.fX + translate.fX, pivot.fY + translate.fY)
    [all...]

Completed in 639 milliseconds

1 2 3 4 5