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

1 2 3 4

  /frameworks/compile/mclinker/lib/Script/
EntryCmd.cpp 34 script.setEntry(m_Entry);
  /frameworks/av/include/media/
StringArray.h 73 void setEntry(int idx, const char* str);
  /external/llvm/lib/CodeGen/
InterferenceCache.h 176 void setEntry(Entry *E) {
190 ~Cursor() { setEntry(nullptr); }
193 setEntry(O.CacheEntry);
197 setEntry(O.CacheEntry);
205 setEntry(nullptr);
207 setEntry(Cache.get(PhysReg));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
SparseFieldVector.java 148 res.setEntry(key, entries.get(key).add(value));
150 res.setEntry(key, value);
163 res.setEntry(i, v[i].add(getEntry(i)));
178 res.setEntry(iter.key() + virtualSize, iter.value());
195 res.setEntry(virtualSize, d);
203 res.setEntry(i + virtualSize, a[i]);
249 res.setEntry(iter.key(), iter.value().divide(v.getEntry(iter.key())));
261 res.setEntry(iter.key(), iter.value().divide(v[iter.key()]));
273 res.setEntry(iter.key(), iter.value().multiply(v.getEntry(iter.key())));
285 res.setEntry(iter.key(), iter.value().multiply(v[iter.key()]))
    [all...]
TriDiagonalTransformer.java 114 cachedQt.setEntry(k, k, 1);
117 cachedQt.setEntry(k, k, 1 + beta * hK[k]);
119 cachedQt.setEntry(k, i, beta * hK[i]);
127 cachedQt.setEntry(j, k, beta * hK[k]);
134 cachedQt.setEntry(0, 0, 1);
154 cachedT.setEntry(i, i, main[i]);
156 cachedT.setEntry(i, i - 1, secondary[i - 1]);
159 cachedT.setEntry(i, i + 1, secondary[i]);
BiDiagonalTransformer.java 101 cachedU.setEntry(k, k, 1);
107 cachedU.setEntry(k, k, 1);
123 cachedU.setEntry(0, 0, 1);
145 cachedB.setEntry(i, i, main[i]);
148 cachedB.setEntry(i, i - 1, secondary[i - 1]);
152 cachedB.setEntry(i, i + 1, secondary[i]);
182 cachedV.setEntry(k, k, 1);
188 cachedV.setEntry(k, k, 1);
204 cachedV.setEntry(0, 0, 1);
AbstractFieldMatrix.java 180 out.setEntry(row, col, getEntry(row, col).add(m.getEntry(row, col)));
199 out.setEntry(row, col, getEntry(row, col).subtract(m.getEntry(row, col)));
215 out.setEntry(row, col, getEntry(row, col).add(d));
231 out.setEntry(row, col, getEntry(row, col).multiply(d));
256 out.setEntry(row, col, sum);
297 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j));
427 setEntry(row + i, column + j, subMatrix[i][j]);
441 out.setEntry(0, i, getEntry(row, i));
461 setEntry(row, i, matrix.getEntry(0, i));
474 out.setEntry(i, 0, getEntry(i, column))
    [all...]
AbstractRealMatrix.java 88 out.setEntry(row, col, getEntry(row, col) + m.getEntry(row, col));
107 out.setEntry(row, col, getEntry(row, col) - m.getEntry(row, col));
123 out.setEntry(row, col, getEntry(row, col) + d);
139 out.setEntry(row, col, getEntry(row, col) * d);
164 out.setEntry(row, col, sum);
271 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j));
401 setEntry(row + i, column + j, subMatrix[i][j]);
417 out.setEntry(0, i, getEntry(row, i));
437 setEntry(row, i, matrix.getEntry(0, i));
450 out.setEntry(i, 0, getEntry(i, column))
    [all...]
OpenMapRealVector.java 238 res.setEntry(key, randomAccess.get(key) + iter.value());
240 res.setEntry(key, iter.value());
256 res.setEntry(iter.key() + virtualSize, iter.value());
272 res.setEntry(virtualSize, d);
280 res.setEntry(i + virtualSize, a[i]);
331 res.setEntry(iter.key(), iter.value() / v.getEntry(iter.key()));
344 res.setEntry(iter.key(), iter.value() / v[iter.key()]);
356 res.setEntry(iter.key(), iter.value() * v.getEntry(iter.key()));
369 res.setEntry(iter.key(), iter.value() * v[iter.key()]);
385 res.setEntry(key - index, iter.value())
    [all...]
QRDecompositionImpl.java 160 cachedR.setEntry(row, row, rDiag[row]);
162 cachedR.setEntry(row, col, qrt[col][row]);
197 cachedQT.setEntry(minor, minor, 1.0);
202 cachedQT.setEntry(minor, minor, 1.0);
235 cachedH.setEntry(i, j, qrt[j][i] / -rDiag[j]);
SparseFieldMatrix.java 97 setEntry(i, j, other.getEntry(i, j));
169 public void setEntry(int row, int column, T value)
LUDecompositionImpl.java 172 cachedL.setEntry(i, j, luI[j]);
174 cachedL.setEntry(i, i, 1.0);
188 cachedU.setEntry(i, j, luI[j]);
201 cachedP.setEntry(i, pivot[i], 1.0);
OpenMapRealMatrix.java 113 out.setEntry(row, col, getEntry(row, col) + iterator.value());
148 out.setEntry(row, col, getEntry(row, col) - iterator.value());
240 public void setEntry(int row, int column, double value)
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
SimplexTableau.java 163 matrix.setEntry(0, 0, -1);
166 matrix.setEntry(zIndex, zIndex, maximize ? 1 : -1);
170 matrix.setEntry(zIndex, width - 1,
174 matrix.setEntry(zIndex, getSlackVariableOffset() - 1,
190 matrix.setEntry(row, getSlackVariableOffset() - 1,
195 matrix.setEntry(row, width - 1, constraint.getValue());
199 matrix.setEntry(row, getSlackVariableOffset() + slackVar++, 1); // slack
201 matrix.setEntry(row, getSlackVariableOffset() + slackVar++, -1); // excess
207 matrix.setEntry(0, getArtificialVariableOffset() + artificialVar, 1);
208 matrix.setEntry(row, getArtificialVariableOffset() + artificialVar++, 1)
    [all...]
  /frameworks/compile/mclinker/lib/Core/
LinkerScript.cpp 38 void LinkerScript::setEntry(const std::string& pEntry) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
PearsonsCorrelation.java 196 outMatrix.setEntry(i, j, corr);
197 outMatrix.setEntry(j, i, corr);
199 outMatrix.setEntry(i, i, 1d);
259 outMatrix.setEntry(i, i, 1d);
263 outMatrix.setEntry(i, j, entry);
264 outMatrix.setEntry(j, i, entry);
Covariance.java 167 outMatrix.setEntry(i, j, cov);
168 outMatrix.setEntry(j, i, cov);
170 outMatrix.setEntry(i, i, variance.evaluate(matrix.getColumn(i)));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
VectorialCovariance.java 94 result.setEntry(i, j, e);
95 result.setEntry(j, i, e);
  /frameworks/av/media/libmedia/
StringArray.cpp 103 void StringArray::setEntry(int idx, const char* str) {
  /cts/tests/tests/keystore/src/android/keystore/cts/
AndroidKeyStoreTest.java     [all...]
  /libcore/luni/src/test/java/libcore/java/security/
KeyStoreTest.java     [all...]
  /frameworks/compile/mclinker/include/mcld/
LinkerScript.h 86 void setEntry(const std::string& pEntry);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
AppInfo.java 39 public void setEntry(ApplicationsState.AppEntry entry) {
ForceStopManager.java 57 mAppInfo.setEntry(newEnt);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KeyStore_Impl1Test.java 341 kss[i].setEntry("aaa", entry, null);
355 * <code>setEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter params)</code>
361 * methods Assertions: setEntry(..) throws NullPointerException when alias
367 * setEntry(..) stores Entry and getEntry(..) returns it when
383 kss[i].setEntry(null, entry, null);
388 kss[i].setEntry("ZZZ", null, null);
393 kss[i].setEntry(aliases[j], entry, null);
441 * <code>setEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter params)</code>
449 * setEntry(..) throws KeyStoreException if password is destroyed;
451 * setEntry(..) throws KeyStoreException when incorrect Entry is used
    [all...]

Completed in 560 milliseconds

1 2 3 4