HomeSort by relevance Sort by last modified time
    Searched refs:ces (Results 1 - 25 of 30) sorted by null

1 2

  /external/eigen/doc/snippets/
ComplexEigenSolver_eigenvalues.cpp 2 ComplexEigenSolver<MatrixXcf> ces(ones, /* computeEigenvectors = */ false);
4 << endl << ces.eigenvalues() << endl;
ComplexEigenSolver_eigenvectors.cpp 2 ComplexEigenSolver<MatrixXcf> ces(ones);
4 << endl << ces.eigenvectors().col(1) << endl;
ComplexEigenSolver_compute.cpp 4 ComplexEigenSolver<MatrixXcf> ces; variable
5 ces.compute(A);
6 cout << "The eigenvalues of A are:" << endl << ces.eigenvalues() << endl;
7 cout << "The matrix of eigenvectors, V, is:" << endl << ces.eigenvectors() << endl << endl;
9 complex<float> lambda = ces.eigenvalues()[0];
11 VectorXcf v = ces.eigenvectors().col(0);
16 << ces.eigenvectors() * ces.eigenvalues().asDiagonal() * ces.eigenvectors().inverse() << endl;
  /external/icu4c/test/intltest/
colldata.h 50 * This object holds a list of CEs generated from a particular
60 * @param coll - the Collator used to collect the CEs.
61 * @param string - the string for which to collect the CEs.
76 * Return the number of CEs in the list.
78 * @return the number of CEs in the list.
92 * Check if the CEs in another <code>CEList</code> match the
98 * @return <code>TRUE</code> if the CEs match, <code>FALSE</code> otherwise.
115 uint32_t *ces; member in class:CEList
196 * generate a partcular list of CEs.
232 * of CEs starting with a given CE
    [all...]
colldata.cpp 39 : ces(NULL), listMax(CELIST_BUFFER_SIZE), listSize(0)
69 ces = ceBuffer;
100 if (ces != ceBuffer) {
101 DELETE_ARRAY(ces);
120 uprv_memcpy(newCEs, ces, listSize * sizeof(uint32_t));
122 if (ces != ceBuffer) {
123 DELETE_ARRAY(ces);
126 ces = newCEs;
130 ces[listSize++] = ce;
136 return ces[index]
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
colldata.h 61 * This object holds a list of CEs generated from a particular
72 * @param coll - the Collator used to collect the CEs.
73 * @param string - the string for which to collect the CEs.
91 * Return the number of CEs in the list.
93 * @return the number of CEs in the list.
111 * Check if the CEs in another <code>CEList</code> match the
117 * @return <code>TRUE</code> if the CEs match, <code>FALSE</code> otherwise.
149 uint32_t *ces; member in class:CEList
266 * generate a partcular list of CEs.
318 * of CEs starting with a given CE
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
colldata.cpp 50 : ces(NULL), listMax(CELIST_BUFFER_SIZE), listSize(0)
85 ces = ceBuffer;
120 if (ces != ceBuffer) {
121 DELETE_ARRAY(ces);
145 uprv_memcpy(newCEs, ces, listSize * sizeof(uint32_t));
147 if (ces != ceBuffer) {
148 DELETE_ARRAY(ces);
151 ces = newCEs;
155 ces[listSize++] = ce;
161 return ces[index]
    [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
JInputJoyInput.java 31 Component[] ces = c.getComponents(); local
36 for (Component comp : ces){
  /external/chromium_org/third_party/icu/source/test/cintltst/
citertst.c 1270 uint32_t ces[20]; local
    [all...]
  /external/icu4c/test/cintltst/
citertst.c 1270 uint32_t ces[20]; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
org.eclipse.equinox.registry_3.5.0.v20100503.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
  /external/chromium_org/v8/src/ia32/
macro-assembler-ia32.cc 442 CEntryStub ces(1);
443 call(ces.GetCode(isolate()), RelocInfo::DEBUG_BREAK);
    [all...]
code-stubs-ia32.cc     [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 306 CEntryStub ces(1);
307 call(ces.GetCode(), RelocInfo::DEBUG_BREAK);
    [all...]
  /external/chromium_org/v8/src/x64/
macro-assembler-x64.cc 610 CEntryStub ces(1, kSaveFPRegs);
611 CallStub(&ces);
631 CEntryStub ces(f->result_size);
632 CallStub(&ces);
870 CEntryStub ces(result_size);
871 jmp(ces.GetCode(isolate()), RelocInfo::CODE_TARGET);
    [all...]
code-stubs-x64.cc     [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc 587 CEntryStub ces(1, kSaveFPRegs);
588 CallStub(&ces);
608 CEntryStub ces(f->result_size);
609 CallStub(&ces);
764 CEntryStub ces(result_size);
765 jmp(ces.GetCode(), RelocInfo::CODE_TARGET);
    [all...]
  /external/chromium_org/v8/src/arm/
macro-assembler-arm.cc     [all...]
code-stubs-arm.cc     [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc     [all...]
  /external/chromium_org/v8/src/mips/
macro-assembler-mips.cc     [all...]
code-stubs-mips.cc     [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc     [all...]

Completed in 970 milliseconds

1 2