Home
last modified time | relevance | path

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

12345678910>>...14

/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 …]
/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.cpp275 LLVMContext &Context = R->getEntry()->getContext(); in INITIALIZE_PASS_DEPENDENCY()
298 BasicBlock *BB = RN->getEntry(); in orderNodes()
311 BasicBlock *BB = (*I)->getEntry(); in orderNodes()
324 BasicBlock *LoopBB = (*LoopI)->getEntry(); in orderNodes()
354 Loops[Exit] = N->getEntry(); in analyzeLoops()
421 BasicBlock *BB = N->getEntry(); in gatherPredicates()
473 BasicBlock *Entry = R->getEntry(); in gatherPredicates()
499 … (*OI)->getEntry()->getName() << " Loop Depth: " << LI->getLoopDepth((*OI)->getEntry()) << "\n"); in collectInfos()
505 Visited.insert((*OI)->getEntry()); in collectInfos()
698 Order.back()->getEntry(); in getNextFlow()
[all …]
/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.h67 BlockT *OldEntry = getEntry(); in replaceEntryRecursive()
77 if ((*RI)->getEntry() == OldEntry) in replaceEntryRecursive()
109 BlockT *entry = getEntry(), *exit = getExit(); in contains()
163 BlockT *entry = getEntry(); in getEnteringBlock()
216 if (getEntry()->getName().empty()) { in getNameStr()
219 getEntry()->printAsOperand(OS, false); in getNameStr()
221 entryName = getEntry()->getName(); in getNameStr()
241 BlockT *entry = getEntry(), *exit = getExit(); in verifyBBInRegion()
287 verifyWalk(getEntry(), &visited); in verifyRegion()
337 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/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.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.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/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.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/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.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.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.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-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/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/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystemTestCase.groovy117 assert fileSystem.getEntry(NO_SUCH_DIR) == null
118 assert fileSystem.getEntry(NO_SUCH_FILE) == null
120 assert fileSystem.getEntry(EXISTING_FILE).path == EXISTING_FILE
121 assert fileSystem.getEntry(EXISTING_DIR).path == EXISTING_DIR
127 def entry = fileSystem.getEntry(NEW_FILE)
165 def fileEntry = fileSystem.getEntry(path)
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystemTestCase.groovy117 assert fileSystem.getEntry(NO_SUCH_DIR) == null
118 assert fileSystem.getEntry(NO_SUCH_FILE) == null
120 assert fileSystem.getEntry(EXISTING_FILE).path == EXISTING_FILE
121 assert fileSystem.getEntry(EXISTING_DIR).path == EXISTING_DIR
127 def entry = fileSystem.getEntry(NEW_FILE)
164 def fileEntry = fileSystem.getEntry(path)
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystemTestCase.groovy117 assert fileSystem.getEntry(NO_SUCH_DIR) == null
118 assert fileSystem.getEntry(NO_SUCH_FILE) == null
120 assert fileSystem.getEntry(EXISTING_FILE).path == EXISTING_FILE
121 assert fileSystem.getEntry(EXISTING_DIR).path == EXISTING_DIR
127 def entry = fileSystem.getEntry(NEW_FILE)
164 def fileEntry = fileSystem.getEntry(path)
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystemTestCase.groovy117 assert fileSystem.getEntry(NO_SUCH_DIR) == null
118 assert fileSystem.getEntry(NO_SUCH_FILE) == null
120 assert fileSystem.getEntry(EXISTING_FILE).path == EXISTING_FILE
121 assert fileSystem.getEntry(EXISTING_DIR).path == EXISTING_DIR
127 def entry = fileSystem.getEntry(NEW_FILE)
165 def fileEntry = fileSystem.getEntry(path)
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystemTest.groovy117 assert fileSystem.getEntry(NO_SUCH_DIR) == null
118 assert fileSystem.getEntry(NO_SUCH_FILE) == null
120 assert fileSystem.getEntry(EXISTING_FILE).path == EXISTING_FILE
121 assert fileSystem.getEntry(EXISTING_DIR).path == EXISTING_DIR
127 def entry = fileSystem.getEntry(NEW_FILE)
165 def fileEntry = fileSystem.getEntry(path)

12345678910>>...14