Home
last modified time | relevance | path

Searched refs:getEntry (Results 1 – 25 of 366) sorted by relevance

12345678910>>...15

/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DAbstractRealMatrix.java88 out.setEntry(row, col, getEntry(row, col) + m.getEntry(row, col)); in add()
107 out.setEntry(row, col, getEntry(row, col) - m.getEntry(row, col)); in subtract()
123 out.setEntry(row, col, getEntry(row, col) + d); in scalarAdd()
139 out.setEntry(row, col, getEntry(row, col) * d); in scalarMultiply()
162 sum += getEntry(row, i) * m.getEntry(i, col); in multiply()
186 dataI[j] = getEntry(i, j); in getData()
271 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j));
294 return getEntry(selectedRows[row], selectedColumns[column]);
366 destinationI[j] = getEntry(selectedRows[i], selectedColumns[j]);
417 out.setEntry(0, i, getEntry(row, i));
[all …]
DAbstractFieldMatrix.java180 out.setEntry(row, col, getEntry(row, col).add(m.getEntry(row, col))); in add()
199 out.setEntry(row, col, getEntry(row, col).subtract(m.getEntry(row, col))); in subtract()
215 out.setEntry(row, col, getEntry(row, col).add(d)); in scalarAdd()
231 out.setEntry(row, col, getEntry(row, col).multiply(d)); in scalarMultiply()
254 sum = sum.add(getEntry(row, i).multiply(m.getEntry(i, col))); in multiply()
278 dataI[j] = getEntry(i, j); in getData()
297 subMatrix.setEntry(i - startRow, j - startColumn, getEntry(i, j)); in getSubMatrix()
320 return getEntry(selectedRows[row], selectedColumns[column]); in getSubMatrix()
392 destinationI[j] = getEntry(selectedRows[i], selectedColumns[j]); in copySubMatrix()
441 out.setEntry(0, i, getEntry(row, i)); in getRowMatrix()
[all …]
DOpenMapRealVector.java186 double value = v.getEntry(key); in OpenMapRealVector()
331 res.setEntry(iter.key(), iter.value() / v.getEntry(iter.key()));
356 res.setEntry(iter.key(), iter.value() * v.getEntry(iter.key()));
421 delta = iter.value() - v.getEntry(key);
459 public double getEntry(int index) throws MatrixIndexException {
477 double delta = FastMath.abs(iter.value() - v.getEntry(iter.key()));
508 double delta = FastMath.abs(getEntry(i) - v[i]);
524 double delta = FastMath.abs(iter.value() - v.getEntry(iter.key()));
558 double delta = FastMath.abs(getEntry(i) - v[i]);
605 setEntry(i, getEntry(i) + d);
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
DSimplexSolver.java65 if (MathUtils.compareTo(tableau.getEntry(0, i), minValue, epsilon) < 0) { in getPivotColumn()
66 minValue = tableau.getEntry(0, i); in getPivotColumn()
84 final double rhs = tableau.getEntry(i, tableau.getWidth() - 1); in getPivotRow()
85 final double entry = tableau.getEntry(i, col); in getPivotRow()
106 if (MathUtils.equals(tableau.getEntry(row, column), 1, epsilon) && in getPivotRow()
134 double pivotVal = tableau.getEntry(pivotRow, pivotCol); in doIteration()
140 double multiplier = tableau.getEntry(i, pivotCol); in doIteration()
165 if (!MathUtils.equals(tableau.getEntry(0, tableau.getRhsOffset()), 0, epsilon)) { in solvePhase1()
DSimplexTableau.java288 if (MathUtils.equals(getEntry(i, col), 1.0, epsilon) && (row == null)) { in getBasicRow()
290 } else if (!MathUtils.equals(getEntry(i, col), 0.0, epsilon)) { in getBasicRow()
311 if (MathUtils.compareTo(tableau.getEntry(0, i), 0, epsilon) > 0) { in dropPhase1Objective()
329 matrix[i - 1][col++] = tableau.getEntry(i, j); in dropPhase1Objective()
356 if (MathUtils.compareTo(tableau.getEntry(0, i), 0, epsilon) < 0) { in isOptimal()
371 …double mostNegative = negativeVarBasicRow == null ? 0 : getEntry(negativeVarBasicRow, getRhsOffset… in getSolution()
389 (basicRow == null ? 0 : getEntry(basicRow, getRhsOffset())) - in getSolution()
407 tableau.setEntry(dividendRow, j, tableau.getEntry(dividendRow, j) / divisor); in divideRow()
448 protected final double getEntry(final int row, final int column) { in getEntry() method in SimplexTableau
449 return tableau.getEntry(row, column); in getEntry()
/external/llvm/lib/Transforms/Scalar/
DStructurizeCFG.cpp289 LLVMContext &Context = R->getEntry()->getContext(); in INITIALIZE_PASS_DEPENDENCY()
312 BasicBlock *BB = RN->getEntry(); in orderNodes()
321 BasicBlock *BB = (*I)->getEntry(); in orderNodes()
334 BasicBlock *LoopBB = (*LoopI)->getEntry(); in orderNodes()
364 Loops[Exit] = N->getEntry(); in analyzeLoops()
431 BasicBlock *BB = N->getEntry(); in gatherPredicates()
483 BasicBlock *Entry = R->getEntry(); in gatherPredicates()
508 << RN->getEntry()->getName() << " Loop Depth: " in collectInfos()
509 << LI->getLoopDepth(RN->getEntry()) << "\n"); in collectInfos()
515 Visited.insert(RN->getEntry()); in collectInfos()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DRegionIterator.h94 BItor(succ_begin(node->getEntry())) { in RNSuccIterator()
99 while (succ_end(node->getEntry()) != BItor && isExit(*BItor)) in RNSuccIterator()
109 BItor(succ_end(node->getEntry())) {} in RNSuccIterator()
135 while (BItor != succ_end(getNode()->getEntry())
182 Itor(succ_begin(node->getEntry())) { in RNSuccIterator()
188 while (succ_end(Node->getEntry()) != Itor in RNSuccIterator()
194 Itor(succ_end(node->getEntry())) { in RNSuccIterator()
225 while (Itor != succ_end(Node->getEntry())
294 return R->getNode(R->getEntry()); \
308 return R->getBBNode(R->getEntry()); \
/external/llvm/include/llvm/Analysis/
DRegionIterator.h97 BItor(BlockTraits::child_begin(node->getEntry())) { in RNSuccIterator()
101 while (BlockTraits::child_end(node->getEntry()) != BItor && isExit(*BItor)) in RNSuccIterator()
111 BItor(BlockTraits::child_end(node->getEntry())) {} in RNSuccIterator()
137 while (BItor != BlockTraits::child_end(getNode()->getEntry())
177 Itor(BlockTraits::child_begin(node->getEntry())) { in RNSuccIterator()
183 while (BlockTraits::child_end(Node->getEntry()) != Itor in RNSuccIterator()
191 Itor(BlockTraits::child_end(node->getEntry())) { in RNSuccIterator()
222 while (Itor != succ_end(Node->getEntry())
281 return R->getNode(R->getEntry()); \
295 return R->getBBNode(R->getEntry()); \
DRegionInfoImpl.h66 BlockT *OldEntry = getEntry(); in replaceEntryRecursive()
76 if ((*RI)->getEntry() == OldEntry) in replaceEntryRecursive()
108 BlockT *entry = getEntry(), *exit = getExit(); in contains()
162 BlockT *entry = getEntry(); in getEnteringBlock()
215 if (getEntry()->getName().empty()) { in getNameStr()
218 getEntry()->printAsOperand(OS, false); in getNameStr()
220 entryName = getEntry()->getName(); in getNameStr()
240 BlockT *entry = getEntry(), *exit = getExit(); in verifyBBInRegion()
286 verifyWalk(getEntry(), &visited); in verifyRegion()
336 if (R->getEntry() != BB) in getSubRegionNode()
[all …]
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java109 if (getEntry(path) != null) { in add()
145 if (getEntry(path) != null && !hasChildren(path)) { in delete()
162 return getEntry(path) != null; in exists()
175 FileSystemEntry entry = getEntry(path); in isDirectory()
189 FileSystemEntry entry = getEntry(path); in isFile()
205 return Collections.singletonList(getEntry(path)); in listFiles()
213 FileSystemEntry fileSystemEntry = getEntry(childPath); in listFiles()
241 FileSystemEntry fileSystemEntry = getEntry(childPath); in listNames()
385 public FileSystemEntry getEntry(String path) { in getEntry() method in AbstractFakeFileSystem
486 FileSystemEntry entry = getEntry(path); in getRequiredEntry()
[all …]
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java108 if (getEntry(path) != null) { in add()
144 if (getEntry(path) != null && !hasChildren(path)) { in delete()
161 return getEntry(path) != null; in exists()
174 FileSystemEntry entry = getEntry(path); in isDirectory()
188 FileSystemEntry entry = getEntry(path); in isFile()
204 return Collections.singletonList(getEntry(path)); in listFiles()
212 FileSystemEntry fileSystemEntry = getEntry(childPath); in listFiles()
240 FileSystemEntry fileSystemEntry = getEntry(childPath); in listNames()
384 public FileSystemEntry getEntry(String path) { in getEntry() method in AbstractFakeFileSystem
485 FileSystemEntry entry = getEntry(path); in getRequiredEntry()
[all …]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java108 if (getEntry(path) != null) { in add()
144 if (getEntry(path) != null && !hasChildren(path)) { in delete()
161 return getEntry(path) != null; in exists()
174 FileSystemEntry entry = getEntry(path); in isDirectory()
188 FileSystemEntry entry = getEntry(path); in isFile()
204 return Collections.singletonList(getEntry(path)); in listFiles()
212 FileSystemEntry fileSystemEntry = getEntry(childPath); in listFiles()
240 FileSystemEntry fileSystemEntry = getEntry(childPath); in listNames()
376 public FileSystemEntry getEntry(String path) { in getEntry() method in AbstractFakeFileSystem
477 FileSystemEntry entry = getEntry(path); in getRequiredEntry()
[all …]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java108 if (getEntry(path) != null) { in add()
144 if (getEntry(path) != null && !hasChildren(path)) { in delete()
161 return getEntry(path) != null; in exists()
174 FileSystemEntry entry = getEntry(path); in isDirectory()
188 FileSystemEntry entry = getEntry(path); in isFile()
204 return Collections.singletonList(getEntry(path)); in listFiles()
212 FileSystemEntry fileSystemEntry = getEntry(childPath); in listFiles()
240 FileSystemEntry fileSystemEntry = getEntry(childPath); in listNames()
376 public FileSystemEntry getEntry(String path) { in getEntry() method in AbstractFakeFileSystem
477 FileSystemEntry entry = getEntry(path); in getRequiredEntry()
[all …]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java108 if (getEntry(path) != null) { in add()
144 if (getEntry(path) != null && !hasChildren(path)) { in delete()
161 return getEntry(path) != null; in exists()
174 FileSystemEntry entry = getEntry(path); in isDirectory()
188 FileSystemEntry entry = getEntry(path); in isFile()
204 return Collections.singletonList(getEntry(path)); in listFiles()
212 FileSystemEntry fileSystemEntry = getEntry(childPath); in listFiles()
240 FileSystemEntry fileSystemEntry = getEntry(childPath); in listNames()
376 public FileSystemEntry getEntry(String path) { in getEntry() method in AbstractFakeFileSystem
477 FileSystemEntry entry = getEntry(path); in getRequiredEntry()
[all …]
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java108 if (getEntry(path) != null) { in add()
144 if (getEntry(path) != null && !hasChildren(path)) { in delete()
161 return getEntry(path) != null; in exists()
174 FileSystemEntry entry = getEntry(path); in isDirectory()
188 FileSystemEntry entry = getEntry(path); in isFile()
204 return Collections.singletonList(getEntry(path)); in listFiles()
212 FileSystemEntry fileSystemEntry = getEntry(childPath); in listFiles()
240 FileSystemEntry fileSystemEntry = getEntry(childPath); in listNames()
376 public FileSystemEntry getEntry(String path) { in getEntry() method in AbstractFakeFileSystem
477 FileSystemEntry entry = getEntry(path); in getRequiredEntry()
[all …]
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java108 if (getEntry(path) != null) { in add()
144 if (getEntry(path) != null && !hasChildren(path)) { in delete()
161 return getEntry(path) != null; in exists()
174 FileSystemEntry entry = getEntry(path); in isDirectory()
188 FileSystemEntry entry = getEntry(path); in isFile()
204 return Collections.singletonList(getEntry(path)); in listFiles()
212 FileSystemEntry fileSystemEntry = getEntry(childPath); in listFiles()
240 FileSystemEntry fileSystemEntry = getEntry(childPath); in listNames()
376 public FileSystemEntry getEntry(String path) { in getEntry() method in AbstractFakeFileSystem
477 FileSystemEntry entry = getEntry(path); in getRequiredEntry()
[all …]
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java108 if (getEntry(path) != null) { in add()
144 if (getEntry(path) != null && !hasChildren(path)) { in delete()
161 return getEntry(path) != null; in exists()
174 FileSystemEntry entry = getEntry(path); in isDirectory()
188 FileSystemEntry entry = getEntry(path); in isFile()
204 return Collections.singletonList(getEntry(path)); in listFiles()
212 FileSystemEntry fileSystemEntry = getEntry(childPath); in listFiles()
240 FileSystemEntry fileSystemEntry = getEntry(childPath); in listNames()
384 public FileSystemEntry getEntry(String path) { in getEntry() method in AbstractFakeFileSystem
485 FileSystemEntry entry = getEntry(path); in getRequiredEntry()
[all …]
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java109 if (getEntry(path) != null) { in add()
145 if (getEntry(path) != null && !hasChildren(path)) { in delete()
162 return getEntry(path) != null; in exists()
175 FileSystemEntry entry = getEntry(path); in isDirectory()
189 FileSystemEntry entry = getEntry(path); in isFile()
205 return Collections.singletonList(getEntry(path)); in listFiles()
213 FileSystemEntry fileSystemEntry = getEntry(childPath); in listFiles()
241 FileSystemEntry fileSystemEntry = getEntry(childPath); in listNames()
385 public FileSystemEntry getEntry(String path) { in getEntry() method in AbstractFakeFileSystem
486 FileSystemEntry entry = getEntry(path); in getRequiredEntry()
[all …]
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java109 if (getEntry(path) != null) { in add()
145 if (getEntry(path) != null && !hasChildren(path)) { in delete()
162 return getEntry(path) != null; in exists()
175 FileSystemEntry entry = getEntry(path); in isDirectory()
189 FileSystemEntry entry = getEntry(path); in isFile()
205 return Collections.singletonList(getEntry(path)); in listFiles()
213 FileSystemEntry fileSystemEntry = getEntry(childPath); in listFiles()
241 FileSystemEntry fileSystemEntry = getEntry(childPath); in listNames()
385 public FileSystemEntry getEntry(String path) { in getEntry() method in AbstractFakeFileSystem
486 FileSystemEntry entry = getEntry(path); in getRequiredEntry()
[all …]
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java108 if (getEntry(path) != null) { in add()
144 if (getEntry(path) != null && !hasChildren(path)) { in delete()
161 return getEntry(path) != null; in exists()
174 FileSystemEntry entry = getEntry(path); in isDirectory()
188 FileSystemEntry entry = getEntry(path); in isFile()
204 return Collections.singletonList(getEntry(path)); in listFiles()
212 FileSystemEntry fileSystemEntry = getEntry(childPath); in listFiles()
240 FileSystemEntry fileSystemEntry = getEntry(childPath); in listNames()
376 public FileSystemEntry getEntry(String path) { in getEntry() method in AbstractFakeFileSystem
477 FileSystemEntry entry = getEntry(path); in getRequiredEntry()
[all …]
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java108 if (getEntry(path) != null) { in add()
144 if (getEntry(path) != null && !hasChildren(path)) { in delete()
161 return getEntry(path) != null; in exists()
174 FileSystemEntry entry = getEntry(path); in isDirectory()
188 FileSystemEntry entry = getEntry(path); in isFile()
204 return Collections.singletonList(getEntry(path)); in listFiles()
212 FileSystemEntry fileSystemEntry = getEntry(childPath); in listFiles()
240 FileSystemEntry fileSystemEntry = getEntry(childPath); in listNames()
375 public FileSystemEntry getEntry(String path) { in getEntry() method in AbstractFakeFileSystem
472 FileSystemEntry entry = getEntry(path); in getRequiredEntry()
[all …]
/external/swiftshader/third_party/LLVM/lib/Analysis/
DRegionInfo.cpp88 BasicBlock *entry = getEntry(), *exit = getExit(); in contains()
137 BasicBlock *entry = getEntry(); in getEnteringBlock()
185 if (getEntry()->getName().empty()) { in getNameStr()
188 WriteAsOperand(OS, getEntry(), false); in getNameStr()
191 entryName = getEntry()->getNameStr(); in getNameStr()
211 BasicBlock *entry = getEntry(), *exit = getExit(); in verifyBBInRegion()
241 verifyWalk(getEntry(), &visited); in verifyRegion()
295 if (R->getEntry() != BB) in getSubRegionNode()
391 if (!DT->dominates(getEntry(), *PI)) in getExpandedRegion()
396 if (R->getEntry() != exit) { in getExpandedRegion()
[all …]
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVFunction.cpp111 auto Param = static_cast<SPIRVFunctionParameter *>(Decoder.getEntry()); in decode()
133 SPIRVBasicBlock *BB = static_cast<SPIRVBasicBlock*>(Decoder.getEntry()); in decodeBB()
147 Decoder.getEntry(); in decodeBB()
151 SPIRVInstruction *Inst = static_cast<SPIRVInstruction *>(Decoder.getEntry()); in decodeBB()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
DPearsonsCorrelation.java144 double r = correlationMatrix.getEntry(i, j); in getCorrelationStandardErrors()
173 double r = correlationMatrix.getEntry(i, j); in getCorrelationPValues()
258 double sigma = FastMath.sqrt(covarianceMatrix.getEntry(i, i)); in covarianceToCorrelation()
261 double entry = covarianceMatrix.getEntry(i, j) / in covarianceToCorrelation()
262 (sigma * FastMath.sqrt(covarianceMatrix.getEntry(j, j))); in covarianceToCorrelation()
/external/swiftshader/src/Reactor/
DMain.cpp66 int (*callable)(int*, int) = (int(*)(int*,int))routine->getEntry(); in TEST()
104 int (*callable)() = (int(*)())routine->getEntry(); in TEST()
148 int (*callable)(void*, void*) = (int(*)(void*,void*))routine->getEntry(); in TEST()
204 int(*callable)(void*) = (int(*)(void*))routine->getEntry(); in TEST()
247 int (*callable)(void*) = (int(*)(void*))routine->getEntry(); in TEST()
306 int(*callable)(void*) = (int(*)(void*))routine->getEntry(); in TEST()
415 int(*callable)() = (int(*)())routine->getEntry(); in TEST()
458 int(*callable)(void*) = (int(*)(void*))routine->getEntry(); in TEST()
548 int(*callable)(void*) = (int(*)(void*))routine->getEntry(); in TEST()
629 int(*callable)(void*) = (int(*)(void*))routine->getEntry(); in TEST()

12345678910>>...15