HomeSort by relevance Sort by last modified time
    Searched defs:permutation (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
folder_shortcuts_data_model.js 409 * Creates a permutation array for 'permuted' event, which is compatible with
410 * a permutation array used in cr/ui/array_data_model.js.
414 * @return {Array.<number>} Created permutation array.
422 var permutation = []; variable
426 permutation[oldIndex] = -1;
434 permutation[oldIndex] = newIndex;
441 permutation[oldIndex] = -1;
450 return permutation;
455 * @param {Array.<number>} permutation Permutation array
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/
level_indicator.cc 23 const int8_t permutation[33] = member in namespace:webrtc::voe
73 // the permutation vector
82 _currentLevel = permutation[position];
  /external/chromium_org/third_party/angle/tests/angle_tests/
SwizzleTest.cpp 36 swizzlePermutation permutation; local
37 permutation.swizzleRed = swizzles[r];
38 permutation.swizzleGreen = swizzles[g];
39 permutation.swizzleBlue = swizzles[b];
40 permutation.swizzleAlpha = swizzles[a];
41 mPermutations.push_back(permutation);
151 const swizzlePermutation& permutation = mPermutations[i]; local
153 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SWIZZLE_R, permutation.swizzleRed);
154 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SWIZZLE_G, permutation.swizzleGreen);
155 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SWIZZLE_B, permutation.swizzleBlue)
    [all...]
  /external/libcxxabi/src/Unwind/
CompactUnwinder.hpp 128 uint32_t permutation = local
136 // decompress permutation
140 permunreg[0] = permutation / 120;
141 permutation -= (permunreg[0] * 120);
142 permunreg[1] = permutation / 24;
143 permutation -= (permunreg[1] * 24);
144 permunreg[2] = permutation / 6;
145 permutation -= (permunreg[2] * 6);
146 permunreg[3] = permutation / 2;
147 permutation -= (permunreg[3] * 2)
357 uint32_t permutation = local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
CompactUnwinder.hpp 128 uint32_t permutation = local
136 // decompress permutation
140 permunreg[0] = permutation / 120;
141 permutation -= (permunreg[0] * 120);
142 permunreg[1] = permutation / 24;
143 permutation -= (permunreg[1] * 24);
144 permunreg[2] = permutation / 6;
145 permutation -= (permunreg[2] * 6);
146 permunreg[3] = permutation / 2;
147 permutation -= (permunreg[3] * 2)
357 uint32_t permutation = local
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
tester.tcl 72 # permutation
157 # --start=[$permutation:]$testfile
205 set ::G(start:permutation) ${s.perm}
1286 proc permutation {} { procedure
    [all...]
  /external/ceres-solver/internal/ceres/
covariance_impl.cc 467 SuiteSparse_long* permutation = NULL; local
488 &permutation,
491 CHECK_NOTNULL(permutation);
498 free(permutation);
506 inverse_permutation[permutation[i]] = i;
553 free(permutation);
697 // Compute the inverse column permutation used by QR factorization.
738 // inverse permutation used in the QR factorization.
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
LevenbergMarquardt.h 103 PermutationMatrix<Dynamic,Dynamic> permutation; member in class:Eigen::LevenbergMarquardt
227 permutation = qrfac.colsPermutation();
254 if (wa2[permutation.indices()[j]] != 0.)
255 gnorm = (std::max)(gnorm, abs( fjac.col(j).head(j+1).dot(qtf.head(j+1)/fnorm) / wa2[permutation.indices()[j]]));
459 permutation.setIdentity(n);
468 permutation = qrfac.colsPermutation();
504 if (wa2[permutation.indices()[j]] != 0.)
505 gnorm = (std::max)(gnorm, abs( fjac.col(j).head(j+1).dot(qtf.head(j+1)/fnorm) / wa2[permutation.indices()[j]]));
518 internal::lmpar<Scalar>(fjac, permutation.indices(), diag, qtf, delta, par, wa1);
542 wa3 = fjac.topLeftCorner(n,n).template triangularView<Upper>() * (permutation.inverse() * wa1)
    [all...]
  /external/eigen/unsupported/Eigen/src/SVD/
BDCSVD.h 602 Index *permutation = new Index[length]; local
606 permutation[p] = j;
610 permutation[p] = i;
616 permutation[p] = j;
621 permutation[p] = i;
626 //we do the permutation
641 const Index j = permutation[length - i] - Zero;
693 delete [] permutation;
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LevenbergMarquardt.h 211 /** the permutation used in the QR factorization
213 PermutationType permutation() {return m_permutation; } function in class:Eigen::LevenbergMarquardt
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 

Completed in 1049 milliseconds