Home
last modified time | relevance | path

Searched refs:Row (Results 1 – 25 of 274) sorted by relevance

1234567891011

/external/clang/test/SemaCXX/
Dconstexpr-nqueens.cpp13 constexpr Board addQueen(int Row, int Col) const { in addQueen()
14 return Board(State | ((uint64_t)Row << (Col * 4))); in addQueen()
19 constexpr bool ok(int Row, int Col) const { in ok()
20 return okRecurse(Row, Col, 0); in ok()
22 constexpr bool okRecurse(int Row, int Col, int CheckCol) const { in okRecurse()
24 getQueenRow(CheckCol) == Row ? false : in okRecurse()
25 getQueenRow(CheckCol) == Row + (Col - CheckCol) ? false : in okRecurse()
26 getQueenRow(CheckCol) == Row + (CheckCol - Col) ? false : in okRecurse()
27 okRecurse(Row, Col, CheckCol + 1); in okRecurse()
29 constexpr bool at(int Row, int Col) const { in at()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
Dedit_distance.h64 unsigned *Row = SmallBuffer; variable
66 Row = new unsigned[n + 1];
67 Allocated.reset(Row);
71 Row[i] = i;
74 Row[0] = y;
75 unsigned BestThisRow = Row[0];
79 int OldRow = Row[x];
81 Row[x] = std::min(
83 std::min(Row[x-1], Row[x])+1);
86 if (FromArray[y-1] == ToArray[x-1]) Row[x] = Previous;
[all …]
/external/llvm/include/llvm/ADT/
Dedit_distance.h64 unsigned *Row = SmallBuffer; variable
66 Row = new unsigned[n + 1];
67 Allocated.reset(Row);
71 Row[i] = i;
74 Row[0] = y;
75 unsigned BestThisRow = Row[0];
79 int OldRow = Row[x];
81 Row[x] = std::min(
83 std::min(Row[x-1], Row[x])+1);
86 if (FromArray[y-1] == ToArray[x-1]) Row[x] = Previous;
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Dedit_distance.h64 unsigned *Row = SmallBuffer; variable
66 Row = new unsigned[n + 1];
67 Allocated.reset(Row);
71 Row[i] = i;
74 Row[0] = y;
75 unsigned BestThisRow = Row[0];
79 int OldRow = Row[x];
81 Row[x] = std::min(
83 std::min(Row[x-1], Row[x])+1);
86 if (FromArray[y-1] == ToArray[x-1]) Row[x] = Previous;
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DStateDictionaryBuilder.java20 import org.unicode.cldr.util.StateDictionary.Row;
21 import org.unicode.cldr.util.StateDictionary.Row.Uniqueness;
35 private Row buildingCurrentAddRow;
40 private ArrayList<Row> builtRows;
41 private Row builtBaseRow;
92 builtRows = new ArrayList<Row>(); in make()
109 Map<Row, Row> replacements = new HashMap<Row, Row>(); in make()
111 Map<Row, Row> equivalents = new TreeMap<Row, Row>(StateDictionary.rowComparator); in make()
112 for (Row row : builtRows) { in make()
113 Row cardinal = equivalents.get(row); in make()
[all …]
DStateDictionary.java22 import org.unicode.cldr.util.StateDictionary.Row.Uniqueness;
29 private final ArrayList<Row> builtRows;
31 private final Row builtBaseRow;
54 StateDictionary(Row builtBaseRow2, ArrayList<Row> builtRows2, in StateDictionary()
73 for (Row row : builtRows) { in toString()
116 static class Row implements Comparable { class in StateDictionary
144 Row(int rowNumber) { in Row() method in StateDictionary.Row
170 Row other = (Row) o; in compareTo()
246 public Row nextRow; // next state
288 private Row matchCurrentRow;
[all …]
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp132 DWARFDebugLine::Row::Row(bool default_is_stmt) { reset(default_is_stmt); } in Row() function in DWARFDebugLine::Row
134 void DWARFDebugLine::Row::postAppend() { in postAppend()
140 void DWARFDebugLine::Row::reset(bool default_is_stmt) { in reset()
154 void DWARFDebugLine::Row::dump(raw_ostream &OS) const { in dump()
183 for (const Row &R : Rows) { in dump()
201 Row.reset(LineTable->Prologue.DefaultIsStmt); in resetRowAndSequence()
209 Sequence.LowPC = Row.Address; in appendRowToMatrix()
213 LineTable->appendRow(Row); in appendRowToMatrix()
214 if (Row.EndSequence) { in appendRowToMatrix()
216 Sequence.HighPC = Row.Address; in appendRowToMatrix()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DRow.java23 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable, class
24 Freezable<Row<C0, C1, C2, C3, C4>>{
47 public static class R2<C0, C1> extends Row<C0, C1, C1, C1, C1> {
55 public static class R3<C0, C1, C2> extends Row<C0, C1, C2, C2, C2> {
63 public static class R4<C0, C1, C2, C3> extends Row<C0, C1, C2, C3, C3> {
71 public static class R5<C0, C1, C2, C3, C4> extends Row<C0, C1, C2, C3, C4> {
77 public Row<C0, C1, C2, C3, C4> set0(C0 item) { in set0()
83 public Row<C0, C1, C2, C3, C4> set1(C1 item) { in set1()
89 public Row<C0, C1, C2, C3, C4> set2(C2 item) { in set2()
95 public Row<C0, C1, C2, C3, C4> set3(C3 item) { in set3()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DRow.java19 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable, class
20 Freezable<Row<C0, C1, C2, C3, C4>>{
40 public static class R2<C0, C1> extends Row<C0, C1, C1, C1, C1> {
45 public static class R3<C0, C1, C2> extends Row<C0, C1, C2, C2, C2> {
50 public static class R4<C0, C1, C2, C3> extends Row<C0, C1, C2, C3, C3> {
55 public static class R5<C0, C1, C2, C3, C4> extends Row<C0, C1, C2, C3, C4> {
61 public Row<C0, C1, C2, C3, C4> set0(C0 item) { in set0()
67 public Row<C0, C1, C2, C3, C4> set1(C1 item) { in set1()
73 public Row<C0, C1, C2, C3, C4> set2(C2 item) { in set2()
79 public Row<C0, C1, C2, C3, C4> set3(C3 item) { in set3()
[all …]
/external/eigen/Eigen/src/OrderingMethods/
DEigen_Colamd.h116 #define ROW_IS_DEAD(r) ROW_IS_MARKED_DEAD (Row[r].shared2.mark)
118 #define ROW_IS_ALIVE(r) (Row [r].shared2.mark >= ALIVE)
122 #define KILL_ROW(r) { Row [r].shared2.mark = DEAD ; }
211 static IndexType init_rows_cols (IndexType n_row, IndexType n_col, Colamd_Row<IndexType> Row [], co…
214 static void init_scoring (IndexType n_row, IndexType n_col, Colamd_Row<IndexType> Row [], colamd_co…
217 …g (IndexType n_row, IndexType n_col, IndexType Alen, Colamd_Row<IndexType> Row [], colamd_col<Inde…
226 static IndexType garbage_collection (IndexType n_row, IndexType n_col, Colamd_Row<IndexType> Row []…
229 static inline IndexType clear_mark (IndexType n_row, Colamd_Row<IndexType> Row [] ) ;
331 Colamd_Row<IndexType> *Row ; /* pointer into A of Row [0..n_row] array */ in colamd() local
428 Row = (Colamd_Row<IndexType> *) &A [Alen + Col_size] ; in colamd()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp363 DWARFDebugLine::Row::Row(bool DefaultIsStmt) { reset(DefaultIsStmt); } in Row() function in DWARFDebugLine::Row
365 void DWARFDebugLine::Row::postAppend() { in postAppend()
371 void DWARFDebugLine::Row::reset(bool DefaultIsStmt) { in reset()
385 void DWARFDebugLine::Row::dumpTableHeader(raw_ostream &OS) { in dumpTableHeader()
391 void DWARFDebugLine::Row::dump(raw_ostream &OS) const { in dump()
418 Row::dumpTableHeader(OS); in dump()
419 for (const Row &R : Rows) { in dump()
437 Row.reset(LineTable->Prologue.DefaultIsStmt); in resetRowAndSequence()
445 Sequence.LowPC = Row.Address; in appendRowToMatrix()
449 LineTable->appendRow(Row); in appendRowToMatrix()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/
Dxray-account.cpp267 auto &Row = std::get<2>(Results.back()); in exportStats() local
270 Row.Min /= CycleFrequency; in exportStats()
271 Row.Median /= CycleFrequency; in exportStats()
272 Row.Pct90 /= CycleFrequency; in exportStats()
273 Row.Pct99 /= CycleFrequency; in exportStats()
274 Row.Max /= CycleFrequency; in exportStats()
275 Row.Sum /= CycleFrequency; in exportStats()
278 Row.Function = FuncIdHelper.SymbolOrNumber(FuncId); in exportStats()
279 Row.DebugInfo = FuncIdHelper.FileLineAndColumn(FuncId); in exportStats()
400 exportStats(Header, [&](int32_t FuncId, size_t Count, const ResultRow &Row) { in exportStatsAsText() argument
[all …]
/external/webrtc/webrtc/system_wrappers/source/
Ddata_log.cc32 class Row { class
34 Row();
35 ~Row();
94 typedef std::list<Row*> RowList;
100 Row* current_row_;
106 Row::Row() in Row() function in webrtc::Row
111 Row::~Row() { in ~Row()
120 int Row::InsertCell(const std::string& column_name, in InsertCell()
130 void Row::ToString(const std::string& column_name, in ToString()
146 current_row_(new Row), in LogTable()
[all …]
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h93 struct Row { struct
94 explicit Row(bool default_is_stmt = false);
101 static bool orderByAddress(const Row& LHS, const Row& RHS) { in orderByAddress() argument
177 void appendRow(const DWARFDebugLine::Row &R) { in appendRow()
211 typedef std::vector<Row> RowVector;
239 struct Row Row; member
/external/emma/core/java12/com/vladium/emma/report/html/doc/
DHTMLTable.java56 final Row row = new Row (true); in newTitleRow()
64 final Row row = new Row (false); in newRow()
105 private static class Row extends IElement.Factory.ElementImpl class in HTMLTable
116 Row (final boolean th) in Row() method in HTMLTable.Row
/external/libavc/encoder/arm/
Dime_distortion_metrics_a9q.s373 @Row 1
374 vld1.8 {d0, d1}, [r2], r4 @ load src Row 1
375 vld1.8 {d2, d3}, [r0], r3 @ load ref1 Row 1
376 vld1.8 {d4, d5}, [r1], r3 @ load ref2 Row 1
378 @Row 2
379 vld1.8 {d6, d7}, [r2], r4 @ load src Row 2
382 vld1.8 {d8, d9}, [r0], r3 @ load ref1 Row 2
385 vld1.8 {d10, d11}, [r1], r3 @ load ref2 Row 2
390 @Row 1
391 vld1.8 {d0, d1}, [r2], r4 @ load src Row 1
[all …]
/external/webrtc/webrtc/common_audio/
Dlapped_transform.cc32 memcpy(parent_->real_buf_.Row(i), input[i], in ProcessBlock()
34 parent_->fft_->Forward(parent_->real_buf_.Row(i), in ProcessBlock()
35 parent_->cplx_pre_.Row(i)); in ProcessBlock()
48 parent_->fft_->Inverse(parent_->cplx_post_.Row(i), in ProcessBlock()
49 parent_->real_buf_.Row(i)); in ProcessBlock()
50 memcpy(output[i], parent_->real_buf_.Row(i), in ProcessBlock()
/external/webrtc/webrtc/modules/desktop_capture/
Ddesktop_region.h49 struct Row { struct
50 Row(int32_t top, int32_t bottom);
51 ~Row();
62 typedef std::map<int, Row*> Rows; argument
141 static void AddSpanToRow(Row* row, int32_t left, int32_t right);
144 static bool IsSpanInRow(const Row& row, const RowSpan& rect);
Ddesktop_region.cc23 DesktopRegion::Row::Row(int32_t top, int32_t bottom) in Row() function in webrtc::DesktopRegion::Row
27 DesktopRegion::Row::~Row() {} in ~Row()
52 Row* row = it->second; in operator =()
53 it->second = new Row(*row); in operator =()
107 row, Rows::value_type(bottom, new Row(top, bottom))); in AddRect()
114 row, Rows::value_type(top, new Row(row->second->top, top))); in AddRect()
124 row, Rows::value_type(rect.bottom(), new Row(top, rect.bottom()))); in AddRect()
206 rows_.end(), Rows::value_type(bottom, new Row(top, bottom))); in Intersect()
307 row_a, Rows::value_type(top, new Row(row_a->second->top, top))); in Subtract()
328 rows_.insert(row_a, Rows::value_type(bottom, new Row(top, bottom))); in Subtract()
[all …]
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DRegexTransform.java8 import com.ibm.icu.impl.Row;
9 import com.ibm.icu.impl.Row.R2;
19 private final List<Row.R2<Matcher, String>> entries = new ArrayList<Row.R2<Matcher, String>>();
47 entries.add(Row.of( in add()
/external/libhevc/common/arm/
Dihevc_resi_trans.s254 VLD1.32 d2[0],[r0],r2 @ Row 1 of source in d2[0]
255 VLD1.32 d3[0],[r1],r4 @ Row 1 of prediction in d3[0]
256 VLD1.32 d2[1],[r0],r2 @ Row 2 of source in d2[1]
257 VLD1.32 d3[1],[r1],r4 @ Row 2 of prediction in d3[1]
259 VLD1.32 d8[0],[r0],r2 @ Row 3 of source in d8[0]
261 @ R2:[d11[3] d11[2] d11[1] d11[0]] => Row 2 of residue
262 VLD1.32 d9[0],[r1],r4 @ Row 3 of prediction in d9[0]
263 VSUBL.U8 q5,d2,d3 @ R1:[d10[3] d10[2] d10[1] d10[0]] => Row 1 of residue
264 VLD1.32 d8[1],[r0] @ Row 4 of source in d8[1]
266 VLD1.32 d9[1],[r1] @ Row 4 of prediction in d9[1]
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
DCompactConstructorErrorsTest.java97 List<Row> rows = table.getRows(); in test4()
99 assertFalse("Row should not be created.", rows.get(0) instanceof Row); in test4()
111 List<Row> rows = table.getRows(); in test5()
113 assertFalse("Row should not be created.", rows.get(0) instanceof Row); in test5()
117 assertNull(map.get(new Row("id222"))); in test5()
118 assertTrue(map.containsKey(new Row("id222"))); in test5()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DDwarfStreamer.cpp439 std::vector<DWARFDebugLine::Row> &Rows, in emitLineTableForUnit()
479 auto &Row = Rows[Idx]; in emitLineTableForUnit() local
486 MS->EmitIntValue(Row.Address, PointerSize); in emitLineTableForUnit()
490 AddressDelta = (Row.Address - Address) / MinInstLength; in emitLineTableForUnit()
498 if (FileNum != Row.File) { in emitLineTableForUnit()
499 FileNum = Row.File; in emitLineTableForUnit()
504 if (Column != Row.Column) { in emitLineTableForUnit()
505 Column = Row.Column; in emitLineTableForUnit()
514 if (Isa != Row.Isa) { in emitLineTableForUnit()
515 Isa = Row.Isa; in emitLineTableForUnit()
[all …]
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFDebugLine.h85 struct Row { struct
86 Row(bool default_is_stmt = false) { reset(default_is_stmt); }
130 void appendRow(const DWARFDebugLine::Row &state) { Rows.push_back(state); } in appendRow() argument
140 std::vector<Row> Rows;
143 struct State : public Row, public LineTable {
155 virtual void reset() { Row::reset(Prologue.DefaultIsStmt); } in reset()
/external/cldr/tools/java/org/unicode/cldr/tool/
DLocaleReplacements.java25 import com.ibm.icu.impl.Row;
26 import com.ibm.icu.impl.Row.R2;
35 …ic Map<String, Map<String, Row.R2<Set<String>, String>>> type2item2replacementAndReason = new Hash…
36 …String, Relation<String, Row.R2<String, Set<String>>>> type2reason2itemAndreplacement = new TreeMa…
150 reason2item2replacement.put(reason, Row.of(item, replacements)); in reason2item2replacement.put()
204 item2replacementAndReason.put(key, Row.of(list, reason)); in addType2item2reasonNreplacement()
241 Set<Row.R2<String, String>> merged = new TreeSet<Row.R2<String, String>>(); in main()
250 merged.add(Row.of(s, "\tOLD")); in main()
253 merged.add(Row.of(s, "\tNEW")); in main()

1234567891011