/external/v8/test/cctest/compiler/ |
D | test-machine-operator-reducer.cc | 209 ReducerTester R; in TEST() local 210 R.binop = R.machine.Word32And(); in TEST() 215 R.CheckFoldBinop<int32_t>(x & y, x, y); in TEST() 219 R.CheckPutConstantOnRight(33); in TEST() 220 R.CheckPutConstantOnRight(44000); in TEST() 222 Node* x = R.Parameter(); in TEST() 223 Node* zero = R.Constant<int32_t>(0); in TEST() 224 Node* minus_1 = R.Constant<int32_t>(-1); in TEST() 226 R.CheckBinop(zero, x, zero); // x & 0 => 0 in TEST() 227 R.CheckBinop(zero, zero, x); // 0 & x => 0 in TEST() [all …]
|
D | test-instruction.cc | 100 InstructionTester R; in TEST() local 103 R.Int32Constant(i); // Add some nodes to the graph. in TEST() 106 BasicBlock* last = R.schedule.start(); in TEST() 108 BasicBlock* block = R.schedule.NewBasicBlock(); in TEST() 109 R.schedule.AddGoto(last, block); in TEST() 113 R.allocCode(); in TEST() 115 CHECK_EQ(R.graph.NodeCount(), R.code->ValueCount()); in TEST() 117 BasicBlockVector* blocks = R.schedule.rpo_order(); in TEST() 118 CHECK_EQ(static_cast<int>(blocks->size()), R.code->BasicBlockCount()); in TEST() 124 CHECK_EQ(block, R.code->BlockAt(index)); in TEST() [all …]
|
D | test-phi-reducer.cc | 97 PhiReducerTester R; in TEST() local 98 Node* zero = R.Int32Constant(0); in TEST() 99 Node* one = R.Int32Constant(1); in TEST() 100 Node* oneish = R.Float64Constant(1.1); in TEST() 101 Node* param = R.Parameter(); in TEST() 105 R.CheckReduce(singles[i], R.Phi(singles[i])); in TEST() 111 PhiReducerTester R; in TEST() local 112 Node* zero = R.Int32Constant(0); in TEST() 113 Node* one = R.Int32Constant(1); in TEST() 114 Node* oneish = R.Float64Constant(1.1); in TEST() [all …]
|
D | test-js-typed-lowering.cc | 197 JSTypedLoweringTester R; 200 Node* p0 = R.Parameter(kStringTypes[i], 0); 203 Node* p1 = R.Parameter(kStringTypes[j], 1); 205 Node* add = R.Binop(R.javascript.Add(), p0, p1); 206 Node* r = R.reduce(add); 208 R.CheckPureBinop(IrOpcode::kStringAdd, r); 218 JSTypedLoweringTester R; in TEST() local 220 Node* p0 = R.Parameter(kNumberTypes[i], 0); in TEST() 221 Node* p1 = R.Parameter(kNumberTypes[i], 1); in TEST() 222 Node* add = R.Binop(R.javascript.Add(), p0, p1); in TEST() [all …]
|
D | call-tester.h | 27 template <typename R> 29 static R Cast(uintptr_t r) { return reinterpret_cast<R>(r); } in Cast() 34 *(static_cast<Object* volatile*>(0)) = static_cast<R>(0); in Representation() 116 template <typename R> 118 static uintptr_t Cast(R r) { return static_cast<uintptr_t>(r); } 176 template <typename R, typename F> 177 R DoCall(F* f) { 179 return ReturnValueTraits<R>::Cast(CallSimulator(FUNCTION_ADDR(f), args)); 181 template <typename R, typename F, typename P1> 182 R DoCall(F* f, P1 p1) { [all …]
|
/external/llvm/include/llvm/Object/ |
D | RelocVisitor.h | 50 RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t Value = 0) { 52 return visitELF(RelocType, R, Value); 54 return visitCOFF(RelocType, R, Value); 66 RelocToApply visitELF(uint32_t RelocType, RelocationRef R, uint64_t Value) { in visitELF() argument 72 return visitELF_X86_64_NONE(R); in visitELF() 74 return visitELF_X86_64_64(R, Value); in visitELF() 76 return visitELF_X86_64_PC32(R, Value); in visitELF() 78 return visitELF_X86_64_32(R, Value); in visitELF() 80 return visitELF_X86_64_32S(R, Value); in visitELF() 88 return visitELF_AARCH64_ABS32(R, Value); in visitELF() [all …]
|
/external/clang/include/clang/Format/ |
D | Format.h | 411 bool operator==(const FormatStyle &R) const { 412 return AccessModifierOffset == R.AccessModifierOffset && 413 AlignAfterOpenBracket == R.AlignAfterOpenBracket && 414 AlignOperands == R.AlignOperands && 415 AlignEscapedNewlinesLeft == R.AlignEscapedNewlinesLeft && 416 AlignTrailingComments == R.AlignTrailingComments && 418 R.AllowAllParametersOfDeclarationOnNextLine && 420 R.AllowShortFunctionsOnASingleLine && 421 AllowShortBlocksOnASingleLine == R.AllowShortBlocksOnASingleLine && 423 R.AllowShortIfStatementsOnASingleLine && [all …]
|
/external/openssh/openbsd-compat/ |
D | rmd160.c | 82 #define R(a, b, c, d, e, Fj, Kj, sj, rj) \ macro 189 R(a, b, c, d, e, F0, K0, 11, 0); in RMD160Transform() 190 R(e, a, b, c, d, F0, K0, 14, 1); in RMD160Transform() 191 R(d, e, a, b, c, F0, K0, 15, 2); in RMD160Transform() 192 R(c, d, e, a, b, F0, K0, 12, 3); in RMD160Transform() 193 R(b, c, d, e, a, F0, K0, 5, 4); in RMD160Transform() 194 R(a, b, c, d, e, F0, K0, 8, 5); in RMD160Transform() 195 R(e, a, b, c, d, F0, K0, 7, 6); in RMD160Transform() 196 R(d, e, a, b, c, F0, K0, 9, 7); in RMD160Transform() 197 R(c, d, e, a, b, F0, K0, 11, 8); in RMD160Transform() [all …]
|
/external/llvm/unittests/IR/ |
D | PatternMatch.cpp | 71 Value *R = ConstantFP::get(FltTy, 2.0); in TEST_F() local 76 .match(IRB.CreateSelect(IRB.CreateFCmpOLT(L, R), L, R))); in TEST_F() 78 EXPECT_EQ(R, MatchR); in TEST_F() 82 .match(IRB.CreateSelect(IRB.CreateFCmpOLE(L, R), L, R))); in TEST_F() 84 EXPECT_EQ(R, MatchR); in TEST_F() 88 .match(IRB.CreateSelect(IRB.CreateFCmpOGE(L, R), L, R))); in TEST_F() 92 .match(IRB.CreateSelect(IRB.CreateFCmpOGT(L, R), L, R))); in TEST_F() 96 .match(IRB.CreateSelect(IRB.CreateFCmpOGE(L, R), R, L))); in TEST_F() 98 EXPECT_EQ(R, MatchR); in TEST_F() 102 .match(IRB.CreateSelect(IRB.CreateFCmpOGT(L, R), R, L))); in TEST_F() [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-ot-shape-complex-arabic-table.hh | 21 #define R JOINING_TYPE_R macro 37 /* 0620 */ D,U,R,R,R,R,D,R,D,R,D,D,D,D,D,R,R,R,R,D,D,D,D,D,D,D,D,D,D,D,D,D, 38 /* 0640 */ C,D,D,D,D,D,D,D,R,D,D,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X, 39 /* 0660 */ X,X,X,X,X,X,X,X,X,X,X,X,X,X,D,D,X,R,R,R,U,R,R,R,D,D,D,D,D,D,D,D, 40 /* 0680 */ D,D,D,D,D,D,D,D,R,R,R,R,R,R,R,R,R,R,R,R,R,R,R,R,R,R,D,D,D,D,D,D, 42 /* 06C0 */ R,D,D,R,R,R,R,R,R,R,R,R,D,R,D,R,D,D,R,R,X,R,X,X,X,X,X,X,X,U,X,X, 43 /* 06E0 */ X,X,X,X,X,X,X,X,X,X,X,X,X,X,R,R,X,X,X,X,X,X,X,X,X,X,D,D,D,X,X,D, 47 /* 0700 */ X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,A,X,D,D,D,DR,DR,R,R,R,D,D,D,D,R,D, 48 /* 0720 */ D,D,D,D,D,D,D,D,R,D,DR,D,R,D,D,DR,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X,X, 49 /* 0740 */ X,X,X,X,X,X,X,X,X,X,X,X,X,R,D,D, [all …]
|
/external/eigen/doc/ |
D | AsciiQuickReference.txt | 10 Matrix3f P, Q, R; // 3x3 float matrix. 85 R.row(i) = P.col(j); // R(i, :) = P(:, i) 86 R.col(j1).swap(mat1.col(j2)); // R(:, [j1 j2]) = R(:, [j2, j1]) 90 R.adjoint() // R' 91 R.transpose() // R.' or conj(R') 92 R.diagonal() // diag(R) 94 R.transpose().colwise().reverse(); // rot90(R) 95 R.conjugate() // conj(R) 99 y = M*x; R = P*Q; R = P*s; 100 a = b*M; R = P - Q; R = s*P; [all …]
|
/external/v8/src/arm64/ |
D | utils-arm64.h | 13 #define REGISTER_CODE_LIST(R) \ argument 14 R(0) R(1) R(2) R(3) R(4) R(5) R(6) R(7) \ 15 R(8) R(9) R(10) R(11) R(12) R(13) R(14) R(15) \ 16 R(16) R(17) R(18) R(19) R(20) R(21) R(22) R(23) \ 17 R(24) R(25) R(26) R(27) R(28) R(29) R(30) R(31)
|
/external/guava/guava/src/com/google/common/collect/ |
D | ImmutableTable.java | 48 public abstract class ImmutableTable<R, C, V> extends AbstractTable<R, C, V> { 56 public static <R, C, V> ImmutableTable<R, C, V> of() { in of() 57 return (ImmutableTable<R, C, V>) EMPTY; in of() 61 public static <R, C, V> ImmutableTable<R, C, V> of(R rowKey, in of() 63 return new SingletonImmutableTable<R, C, V>(rowKey, columnKey, value); in of() 80 public static <R, C, V> ImmutableTable<R, C, V> copyOf( in copyOf() 81 Table<? extends R, ? extends C, ? extends V> table) { in copyOf() argument 84 ImmutableTable<R, C, V> parameterizedTable in copyOf() 85 = (ImmutableTable<R, C, V>) table; in copyOf() 93 Cell<? extends R, ? extends C, ? extends V> onlyCell in copyOf() [all …]
|
D | Tables.java | 65 public static <R, C, V> Cell<R, C, V> immutableCell( in immutableCell() 66 @Nullable R rowKey, @Nullable C columnKey, @Nullable V value) { in immutableCell() 67 return new ImmutableCell<R, C, V>(rowKey, columnKey, value); in immutableCell() 70 static final class ImmutableCell<R, C, V> 71 extends AbstractCell<R, C, V> implements Serializable { 72 private final R rowKey; 77 @Nullable R rowKey, @Nullable C columnKey, @Nullable V value) { in ImmutableCell() 84 public R getRowKey() { in getRowKey() 99 abstract static class AbstractCell<R, C, V> implements Cell<R, C, V> { 139 public static <R, C, V> Table<C, R, V> transpose(Table<R, C, V> table) { in transpose() argument [all …]
|
D | StandardRowSortedTable.java | 49 class StandardRowSortedTable<R, C, V> extends StandardTable<R, C, V> 50 implements RowSortedTable<R, C, V> { 57 StandardRowSortedTable(SortedMap<R, Map<C, V>> backingMap, in StandardRowSortedTable() argument 62 private SortedMap<R, Map<C, V>> sortedBackingMap() { in sortedBackingMap() 63 return (SortedMap<R, Map<C, V>>) backingMap; in sortedBackingMap() 72 @Override public SortedSet<R> rowKeySet() { in rowKeySet() 73 return (SortedSet<R>) rowMap().keySet(); in rowKeySet() 82 @Override public SortedMap<R, Map<C, V>> rowMap() { in rowMap() 83 return (SortedMap<R, Map<C, V>>) super.rowMap(); in rowMap() 87 SortedMap<R, Map<C, V>> createRowMap() { in createRowMap() [all …]
|
D | RegularImmutableTable.java | 34 abstract class RegularImmutableTable<R, C, V> extends ImmutableTable<R, C, V> { 37 abstract Cell<R, C, V> getCell(int iterationIndex); in getCell() 40 final ImmutableSet<Cell<R, C, V>> createCellSet() { in createCellSet() 41 return isEmpty() ? ImmutableSet.<Cell<R, C, V>>of() : new CellSet(); in createCellSet() 44 private final class CellSet extends ImmutableSet<Cell<R, C, V>> { 51 public UnmodifiableIterator<Cell<R, C, V>> iterator() { in iterator() 56 ImmutableList<Cell<R, C, V>> createAsList() { in createAsList() 57 return new ImmutableAsList<Cell<R, C, V>>() { in createAsList() 59 public Cell<R, C, V> get(int index) { in createAsList() 64 ImmutableCollection<Cell<R, C, V>> delegateCollection() { in createAsList() [all …]
|
/external/libcxx/test/std/utilities/ratio/ratio.arithmetic/ |
D | ratio_subtract.pass.cpp | 19 typedef std::ratio_subtract<R1, R2>::type R; in main() typedef 20 static_assert(R::num == 0 && R::den == 1, ""); in main() 25 typedef std::ratio_subtract<R1, R2>::type R; in main() typedef 26 static_assert(R::num == -1 && R::den == 2, ""); in main() 31 typedef std::ratio_subtract<R1, R2>::type R; in main() typedef 32 static_assert(R::num == -3 && R::den == 2, ""); in main() 37 typedef std::ratio_subtract<R1, R2>::type R; in main() typedef 38 static_assert(R::num == -3 && R::den == 2, ""); in main() 43 typedef std::ratio_subtract<R1, R2>::type R; in main() typedef 44 static_assert(R::num == 3 && R::den == 2, ""); in main() [all …]
|
D | ratio_add.pass.cpp | 19 typedef std::ratio_add<R1, R2>::type R; in main() typedef 20 static_assert(R::num == 2 && R::den == 1, ""); in main() 25 typedef std::ratio_add<R1, R2>::type R; in main() typedef 26 static_assert(R::num == 3 && R::den == 2, ""); in main() 31 typedef std::ratio_add<R1, R2>::type R; in main() typedef 32 static_assert(R::num == 1 && R::den == 2, ""); in main() 37 typedef std::ratio_add<R1, R2>::type R; in main() typedef 38 static_assert(R::num == 1 && R::den == 2, ""); in main() 43 typedef std::ratio_add<R1, R2>::type R; in main() typedef 44 static_assert(R::num == -1 && R::den == 2, ""); in main() [all …]
|
D | ratio_divide.pass.cpp | 19 typedef std::ratio_divide<R1, R2>::type R; in main() typedef 20 static_assert(R::num == 1 && R::den == 1, ""); in main() 25 typedef std::ratio_divide<R1, R2>::type R; in main() typedef 26 static_assert(R::num == 1 && R::den == 2, ""); in main() 31 typedef std::ratio_divide<R1, R2>::type R; in main() typedef 32 static_assert(R::num == -1 && R::den == 2, ""); in main() 37 typedef std::ratio_divide<R1, R2>::type R; in main() typedef 38 static_assert(R::num == -1 && R::den == 2, ""); in main() 43 typedef std::ratio_divide<R1, R2>::type R; in main() typedef 44 static_assert(R::num == -1 && R::den == 2, ""); in main() [all …]
|
D | ratio_multiply.pass.cpp | 19 typedef std::ratio_multiply<R1, R2>::type R; in main() typedef 20 static_assert(R::num == 1 && R::den == 1, ""); in main() 25 typedef std::ratio_multiply<R1, R2>::type R; in main() typedef 26 static_assert(R::num == 1 && R::den == 2, ""); in main() 31 typedef std::ratio_multiply<R1, R2>::type R; in main() typedef 32 static_assert(R::num == -1 && R::den == 2, ""); in main() 37 typedef std::ratio_multiply<R1, R2>::type R; in main() typedef 38 static_assert(R::num == -1 && R::den == 2, ""); in main() 43 typedef std::ratio_multiply<R1, R2>::type R; in main() typedef 44 static_assert(R::num == -1 && R::den == 2, ""); in main() [all …]
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ |
D | DrawableResourceLoaderTest.java | 6 import com.xtremelabs.robolectric.R; 34 extractor.addLocalRClass(R.class); in setup() 35 extractor.addSystemRClass(android.R.class); in setup() 52 assertTrue(resourceLoader.isXml(R.drawable.rainbow)); in testIsXml_rainbow() 57 assertTrue(resourceLoader.isXml(android.R.drawable.ic_popup_sync)); in testIsXml_shouldWorkWithSystem() 62 boolean result = resourceLoader.isXml(R.drawable.l0_red); in testIsXml_red() 68 int[] expected = { R.drawable.l7_white, R.drawable.l0_red, in testGetDrawableIds() 69 R.drawable.l1_orange, R.drawable.l2_yellow, in testGetDrawableIds() 70 R.drawable.l3_green, R.drawable.l4_blue, R.drawable.l5_indigo, in testGetDrawableIds() 71 R.drawable.l6_violet }; in testGetDrawableIds() [all …]
|
/external/clang/test/SemaCXX/ |
D | issue547.cpp | 9 template<typename R, typename ...Args> 10 struct classify_function<R(Args...)> { 14 template<typename R, typename ...Args> 15 struct classify_function<R(Args...) const> { 19 template<typename R, typename ...Args> 20 struct classify_function<R(Args...) volatile> { 24 template<typename R, typename ...Args> 25 struct classify_function<R(Args...) const volatile> { 29 template<typename R, typename ...Args> 30 struct classify_function<R(Args..., ...)> { [all …]
|
/external/clang/lib/Headers/ |
D | avx512erintrin.h | 32 #define _mm512_exp2a23_round_pd(A, R) __extension__ ({ \ argument 35 (__mmask8)-1, (R)); }) 37 #define _mm512_mask_exp2a23_round_pd(S, M, A, R) __extension__ ({ \ argument 40 (__mmask8)(M), (R)); }) 42 #define _mm512_maskz_exp2a23_round_pd(M, A, R) __extension__ ({ \ argument 45 (__mmask8)(M), (R)); }) 56 #define _mm512_exp2a23_round_ps(A, R) __extension__ ({ \ argument 59 (__mmask8)-1, (R)); }) 61 #define _mm512_mask_exp2a23_round_ps(S, M, A, R) __extension__ ({ \ argument 64 (__mmask8)(M), (R)); }) [all …]
|
/external/bison/lib/ |
D | verify.h | 165 # define _GL_VERIFY_TRUE(R, DIAGNOSTIC) \ argument 166 (!!sizeof (_GL_VERIFY_TYPE (R, DIAGNOSTIC))) 176 # define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \ argument 177 _gl_verify_type<(R) ? 1 : -1> 179 # define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \ argument 181 _Static_assert (R, DIAGNOSTIC); \ 185 # define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \ argument 186 struct { unsigned int _gl_verify_error_if_negative: (R) ? 1 : -1; } 199 # define _GL_VERIFY(R, DIAGNOSTIC) \ argument 201 [_GL_VERIFY_TRUE (R, DIAGNOSTIC)] [all …]
|
/external/llvm/unittests/ADT/ |
D | MapVectorTest.cpp | 19 std::pair<MapVector<int, int>::iterator, bool> R; in TEST() local 21 R = MV1.insert(std::make_pair(1, 2)); in TEST() 22 ASSERT_EQ(R.first, MV1.begin()); in TEST() 23 EXPECT_EQ(R.first->first, 1); in TEST() 24 EXPECT_EQ(R.first->second, 2); in TEST() 25 EXPECT_TRUE(R.second); in TEST() 44 std::pair<MapVector<int, int>::iterator, bool> R; in TEST() local 46 R = MV.insert(std::make_pair(1, 2)); in TEST() 47 ASSERT_EQ(R.first, MV.begin()); in TEST() 48 EXPECT_EQ(R.first->first, 1); in TEST() [all …]
|