Home
last modified time | relevance | path

Searched refs:cell2 (Results 1 – 6 of 6) sorted by relevance

/external/s2-geometry-library-java/src/com/google/common/geometry/
DS2EdgeIndex.java88 private static final int compare(long cell1, int edge1, long cell2, int edge2) { in compare() argument
89 if (cell1 < cell2) { in compare()
91 } else if (cell1 > cell2) { in compare()
384 private int[] getEdges(long cell1, long cell2) { in getEdges() argument
386 if (cell1 > cell2) { in getEdges()
388 cell1 = cell2; in getEdges()
389 cell2 = temp; in getEdges()
397 -1 - binarySearch(cell2, Integer.MAX_VALUE)}; in getEdges()
/external/tensorflow/tensorflow/c/eager/
Dc_api_experimental_test.cc85 auto* cell2 = TFE_MonitoringGetCellCounter2(counter2, "foo", "bar"); in TEST() local
86 TFE_MonitoringCounterCellIncrementBy(cell2, 2); in TEST()
87 EXPECT_EQ(TFE_MonitoringCounterCellValue(cell2), 2); in TEST()
130 auto* cell2 = TFE_MonitoringGetCellStringGauge2(gauge2, "foo", "bar"); in TEST() local
131 TFE_MonitoringStringGaugeCellSet(cell2, "str"); in TEST()
133 TFE_MonitoringStringGaugeCellValue(cell2, buf); in TEST()
191 auto* cell2 = TFE_MonitoringGetCellSampler2(sampler2, "foo", "bar"); in TEST() local
192 TFE_MonitoringSamplerCellAdd(cell2, 2.0); in TEST()
193 TFE_MonitoringSamplerCellAdd(cell2, 3.0); in TEST()
195 TFE_MonitoringSamplerCellValue(cell2, result2); in TEST()
/external/guava/guava/src/com/google/common/collect/
DRegularImmutableTable.java114 public int compare(Cell<R, C, V> cell1, Cell<R, C, V> cell2) { in forCells()
118 : rowComparator.compare(cell1.getRowKey(), cell2.getRowKey()); in forCells()
124 : columnComparator.compare(cell1.getColumnKey(), cell2.getColumnKey()); in forCells()
DTables.java116 for (Table.Cell<R, C, V> cell2 : table2.cellSet()) { in toTable()
117 merge(table1, cell2.getRowKey(), cell2.getColumnKey(), cell2.getValue(), mergeFunction); in toTable()
/external/guava/android/guava/src/com/google/common/collect/
DRegularImmutableTable.java114 public int compare(Cell<R, C, V> cell1, Cell<R, C, V> cell2) { in forCells()
118 : rowComparator.compare(cell1.getRowKey(), cell2.getRowKey()); in forCells()
124 : columnComparator.compare(cell1.getColumnKey(), cell2.getColumnKey()); in forCells()
/external/cldr/tools/java/org/unicode/cldr/util/
DStateDictionary.java470 Cell cell2 = row2.byteToCell.get(key);
471 if (0 != (result = cell1.deltaResult - cell2.deltaResult)) {
474 if (cell1.returns != cell2.returns) {
477 if (0 != (result = compare(cell1.nextRow, cell2.nextRow))) {