/external/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | matrix_decompose.inl | 87 tvec3<T, P> Row[3], Pdum3; local 92 Row[i][j] = LocalMatrix[i][j]; 95 Scale.x = length(Row[0]);// v3Length(Row[0]); 97 Row[0] = detail::scale(Row[0], static_cast<T>(1)); 100 Skew.z = dot(Row[0], Row[1]); 101 Row[1] = detail::combine(Row[1], Row[0], static_cast<T>(1), -Skew.z); 104 Scale.y = length(Row[1]); 105 Row[1] = detail::scale(Row[1], static_cast<T>(1)); 109 Skew.y = glm::dot(Row[0], Row[2]); 110 Row[2] = detail::combine(Row[2], Row[0], static_cast<T>(1), -Skew.y); [all …]
|
/external/llvm-project/clang/test/SemaCXX/ |
D | constexpr-nqueens.cpp | 13 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/clang/test/SemaCXX/ |
D | constexpr-nqueens.cpp | 13 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/llvm-project/llvm/include/llvm/ADT/ |
D | edit_distance.h | 63 unsigned *Row = SmallBuffer; variable 65 Row = new unsigned[n + 1]; 66 Allocated.reset(Row); 70 Row[i] = i; 73 Row[0] = y; 74 unsigned BestThisRow = Row[0]; 78 int OldRow = Row[x]; 80 Row[x] = std::min( 82 std::min(Row[x-1], Row[x])+1); 85 if (FromArray[y-1] == ToArray[x-1]) Row[x] = Previous; [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | edit_distance.h | 63 unsigned *Row = SmallBuffer; variable 65 Row = new unsigned[n + 1]; 66 Allocated.reset(Row); 70 Row[i] = i; 73 Row[0] = y; 74 unsigned BestThisRow = Row[0]; 78 int OldRow = Row[x]; 80 Row[x] = std::min( 82 std::min(Row[x-1], Row[x])+1); 85 if (FromArray[y-1] == ToArray[x-1]) Row[x] = Previous; [all …]
|
/external/llvm/include/llvm/ADT/ |
D | edit_distance.h | 64 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/ |
D | edit_distance.h | 64 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/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | Row.java | 23 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/ |
D | Row.java | 19 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/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 132 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/cldr/tools/java/org/unicode/cldr/util/ |
D | StateDictionaryBuilder.java | 20 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; 110 Map<Row, Row> replacements = new HashMap<>(); in make() 112 Map<Row, Row> equivalents = new TreeMap<>(StateDictionary.rowComparator); in make() 113 for (Row row : builtRows) { in make() 114 Row cardinal = equivalents.get(row); in make() 125 for (Row row : builtRows) { in make() [all …]
|
D | StateDictionary.java | 22 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() 74 for (Row row : builtRows) { in toString() 118 static class Row implements Comparable { class in StateDictionary 146 Row(int rowNumber) { in Row() method in StateDictionary.Row 173 Row other = (Row) o; in compareTo() 250 public Row nextRow; // next state 293 private Row matchCurrentRow; [all …]
|
/external/eigen/Eigen/src/OrderingMethods/ |
D | Eigen_Colamd.h | 116 #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/webrtc/modules/desktop_capture/ |
D | desktop_region.h | 50 struct Row { struct 51 Row(const Row&); 52 Row(Row&&); 53 Row(int32_t top, int32_t bottom); 54 ~Row(); 65 typedef std::map<int, Row*> Rows; argument 144 static void AddSpanToRow(Row* row, int32_t left, int32_t right); 147 static bool IsSpanInRow(const Row& row, const RowSpan& rect);
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 375 DWARFDebugLine::Row::Row(bool DefaultIsStmt) { reset(DefaultIsStmt); } in Row() function in DWARFDebugLine::Row 377 void DWARFDebugLine::Row::postAppend() { in postAppend() 384 void DWARFDebugLine::Row::reset(bool DefaultIsStmt) { in reset() 399 void DWARFDebugLine::Row::dumpTableHeader(raw_ostream &OS) { in dumpTableHeader() 405 void DWARFDebugLine::Row::dump(raw_ostream &OS) const { in dump() 433 Row::dumpTableHeader(OS); in dump() 434 for (const Row &R : Rows) { in dump() 456 Row.reset(LineTable->Prologue.DefaultIsStmt); in resetRowAndSequence() 465 Sequence.LowPC = Row.Address.Address; in appendRowToMatrix() 468 LineTable->appendRow(Row); in appendRowToMatrix() [all …]
|
/external/perfetto/ui/src/common/ |
D | query_iterator.ts | 26 interface Row { interface 36 export interface RowIterator<T extends Row> { 100 row: Row; 108 constructor(querySpec: Row, queryResult: RawQueryResult) { 109 const row: Row = querySpec; 166 function iterFromColumns<T extends Row>( 174 function iterUntypedFromColumns(result: RawQueryResult): RowIterator<Row> { 175 const spec: Row = {}; 185 return iter as unknown as RowIterator<Row>; 192 export function iterUntyped(result: QueryResult): RowIterator<Row> { [all …]
|
/external/llvm-project/llvm/tools/llvm-xray/ |
D | xray-account.cpp | 317 auto &Row = std::get<2>(Results.back()); in exportStats() local 320 Row.Min /= CycleFrequency; in exportStats() 321 Row.Median /= CycleFrequency; in exportStats() 322 Row.Pct90 /= CycleFrequency; in exportStats() 323 Row.Pct99 /= CycleFrequency; in exportStats() 324 Row.Max /= CycleFrequency; in exportStats() 325 Row.Sum /= CycleFrequency; in exportStats() 328 Row.Function = FuncIdHelper.SymbolOrNumber(FuncId); in exportStats() 329 Row.DebugInfo = FuncIdHelper.FileLineAndColumn(FuncId); in exportStats() 401 exportStats(Header, [&](int32_t FuncId, size_t Count, const ResultRow &Row) { in exportStatsAsText() argument [all …]
|
/external/llvm-project/lldb/source/Symbol/ |
D | UnwindPlan.cpp | 23 bool UnwindPlan::Row::RegisterLocation:: 24 operator==(const UnwindPlan::Row::RegisterLocation &rhs) const { in operator ==() 54 void UnwindPlan::Row::RegisterLocation::SetAtDWARFExpression( in SetAtDWARFExpression() 63 void UnwindPlan::Row::RegisterLocation::SetIsDWARFExpression( in SetIsDWARFExpression() 91 void UnwindPlan::Row::RegisterLocation::Dump(Stream &s, in Dump() 93 const UnwindPlan::Row *row, in Dump() 166 bool UnwindPlan::Row::FAValue:: 167 operator==(const UnwindPlan::Row::FAValue &rhs) const { in operator ==() 190 void UnwindPlan::Row::FAValue::Dump(Stream &s, const UnwindPlan *unwind_plan, in Dump() 216 void UnwindPlan::Row::Clear() { in Clear() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
D | LineTable.cpp | 52 typedef std::function<bool(const LineEntry &Row)> LineEntryCallback; 70 LineEntry Row(BaseAddr, 1, FirstLine); in parse() local 86 Row.File = (uint32_t)Data.getULEB128(&Offset); in parse() 93 Row.Addr += Data.getULEB128(&Offset); in parse() 95 if (Callback(Row) == false) in parse() 103 Row.Line += Data.getSLEB128(&Offset); in parse() 110 Row.Line += LineDelta; in parse() 111 Row.Addr += AddrDelta; in parse() 113 if (Callback(Row) == false) in parse() 254 llvm::Error Err = parse(Data, BaseAddr, [&](const LineEntry &Row) -> bool { in decode() argument [all …]
|
/external/llvm-project/llvm/lib/DebugInfo/GSYM/ |
D | LineTable.cpp | 52 typedef std::function<bool(const LineEntry &Row)> LineEntryCallback; 70 LineEntry Row(BaseAddr, 1, FirstLine); in parse() local 86 Row.File = (uint32_t)Data.getULEB128(&Offset); in parse() 93 Row.Addr += Data.getULEB128(&Offset); in parse() 95 if (Callback(Row) == false) in parse() 103 Row.Line += Data.getSLEB128(&Offset); in parse() 110 Row.Line += LineDelta; in parse() 111 Row.Addr += AddrDelta; in parse() 113 if (Callback(Row) == false) in parse() 254 llvm::Error Err = parse(Data, BaseAddr, [&](const LineEntry &Row) -> bool { in decode() argument [all …]
|
/external/llvm-project/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 462 DWARFDebugLine::Row::Row(bool DefaultIsStmt) { reset(DefaultIsStmt); } in Row() function in DWARFDebugLine::Row 464 void DWARFDebugLine::Row::postAppend() { in postAppend() 471 void DWARFDebugLine::Row::reset(bool DefaultIsStmt) { in reset() 486 void DWARFDebugLine::Row::dumpTableHeader(raw_ostream &OS, unsigned Indent) { in dumpTableHeader() 494 void DWARFDebugLine::Row::dump(raw_ostream &OS) const { in dump() 522 Row::dumpTableHeader(OS, 0); in dump() 523 for (const Row &R : Rows) { in dump() 547 Row.reset(LineTable->Prologue.DefaultIsStmt); in resetRowAndSequence() 556 Sequence.LowPC = Row.Address.Address; in appendRowToMatrix() 559 LineTable->appendRow(Row); in appendRowToMatrix() [all …]
|
/external/rust/crates/rusqlite/src/ |
D | row.rs | 12 row: Option<Row<'stmt>>, 34 pub fn next(&mut self) -> Result<Option<&Row<'stmt>>> { in next() 52 F: FnMut(&Row<'_>) -> Result<B>, in map() 61 F: FnMut(&Row<'_>) -> Result<B>, in mapped() 71 F: FnMut(&Row<'_>) -> Result<T, E>, in and_then() 85 pub(crate) fn get_expected_row(&mut self) -> Result<&Row<'stmt>> { in get_expected_row() 108 F: FnMut(&Row<'_>) -> Result<B>, 132 F: FnMut(&Row<'_>) -> Result<T>, 141 F: FnMut(&Row<'_>) -> Result<T>, 164 F: FnMut(&Row<'_>) -> Result<T, E>, [all …]
|
/external/perfetto/src/trace_processor/importers/common/ |
D | track_tracker.cc | 42 tables::ThreadTrackTable::Row row; in InternThreadTrack() 54 tables::ProcessTrackTable::Row row; in InternProcessTrack() 74 tables::TrackTable::Row row(name); in InternCpuTrack() 81 TrackId TrackTracker::InternGpuTrack(const tables::GpuTrackTable::Row& row) { in InternGpuTrack() 120 tables::ProcessTrackTable::Row track(name); in InternLegacyChromeAsyncTrack() 137 tables::TrackTable::Row row(name); in CreateGlobalAsyncTrack() 143 tables::ProcessTrackTable::Row row(name); in CreateAndroidAsyncTrack() 153 tables::ProcessTrackTable::Row row(name); in CreateFrameTimelineAsyncTrack() 163 tables::ProcessTrackTable::Row row; in InternLegacyChromeProcessInstantTrack() 189 tables::TrackTable::Row row; in GetOrCreateTriggerTrack() [all …]
|
/external/llvm-project/lldb/unittests/Symbol/ |
D | TestDWARFCallFrameInfo.cpp | 44 static std::ostream &operator<<(std::ostream &OS, const UnwindPlan::Row &row) { in operator <<() 51 static UnwindPlan::Row GetExpectedRow0() { in GetExpectedRow0() 52 UnwindPlan::Row row; in GetExpectedRow0() 59 static UnwindPlan::Row GetExpectedRow1() { in GetExpectedRow1() 60 UnwindPlan::Row row; in GetExpectedRow1() 68 static UnwindPlan::Row GetExpectedRow2() { in GetExpectedRow2() 69 UnwindPlan::Row row; in GetExpectedRow2()
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
D | HTMLTable.java | 56 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
|