/external/dropbear/libtomcrypt/src/pk/ecc/ |
D | ltc_ecc_projective_dbl_point.c | 34 int ltc_ecc_projective_dbl_point(ecc_point *P, ecc_point *R, void *modulus, void *mp) in ltc_ecc_projective_dbl_point() argument 40 LTC_ARGCHK(R != NULL); in ltc_ecc_projective_dbl_point() 48 if (P != R) { in ltc_ecc_projective_dbl_point() 49 if ((err = mp_copy(P->x, R->x)) != CRYPT_OK) { goto done; } in ltc_ecc_projective_dbl_point() 50 if ((err = mp_copy(P->y, R->y)) != CRYPT_OK) { goto done; } in ltc_ecc_projective_dbl_point() 51 if ((err = mp_copy(P->z, R->z)) != CRYPT_OK) { goto done; } in ltc_ecc_projective_dbl_point() 55 if ((err = mp_sqr(R->z, t1)) != CRYPT_OK) { goto done; } in ltc_ecc_projective_dbl_point() 58 if ((err = mp_mul(R->z, R->y, R->z)) != CRYPT_OK) { goto done; } in ltc_ecc_projective_dbl_point() 59 if ((err = mp_montgomery_reduce(R->z, modulus, mp)) != CRYPT_OK) { goto done; } in ltc_ecc_projective_dbl_point() 61 if ((err = mp_add(R->z, R->z, R->z)) != CRYPT_OK) { goto done; } in ltc_ecc_projective_dbl_point() [all …]
|
/external/eigen/doc/ |
D | AsciiQuickReference.txt | 11 Matrix3f P, Q, R; // 3x3 float matrix. 61 R.row(i) = P.col(j); // R(i, :) = P(:, i) 62 R.col(j1).swap(mat1.col(j2)); // R(:, [j1 j2]) = R(:, [j2, j1]) 66 R.adjoint() // R' 67 R.transpose() // R.' or conj(R') 68 R.diagonal() // diag(R) 73 y = M*x; R = P*Q; R = P*s; 74 a = b*M; R = P - Q; R = s*P; 75 a *= M; R = P + Q; R = P/s; 76 R *= Q; R = s*P; [all …]
|
/external/guava/guava/src/com/google/common/collect/ |
D | ImmutableTable.java | 44 public abstract class ImmutableTable<R, C, V> implements Table<R, C, V> { 47 public static final <R, C, V> ImmutableTable<R, C, V> of() { in of() 48 return (ImmutableTable<R, C, V>) EmptyImmutableTable.INSTANCE; in of() 52 public static final <R, C, V> ImmutableTable<R, C, V> of(R rowKey, in of() 54 return new SingletonImmutableTable<R, C, V>(rowKey, columnKey, value); in of() 71 public static final <R, C, V> ImmutableTable<R, C, V> copyOf( in copyOf() 72 Table<? extends R, ? extends C, ? extends V> table) { in copyOf() argument 75 ImmutableTable<R, C, V> parameterizedTable in copyOf() 76 = (ImmutableTable<R, C, V>) table; in copyOf() 84 Cell<? extends R, ? extends C, ? extends V> onlyCell in copyOf() [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() 66 private transient SortedSet<R> rowKeySet; 74 @Override public SortedSet<R> rowKeySet() { in rowKeySet() 75 SortedSet<R> result = rowKeySet; in rowKeySet() 79 private class RowKeySortedSet extends RowKeySet implements SortedSet<R> { 81 public Comparator<? super R> comparator() { in comparator() [all …]
|
D | Tables.java | 62 public static <R, C, V> Cell<R, C, V> immutableCell( in immutableCell() 63 @Nullable R rowKey, @Nullable C columnKey, @Nullable V value) { in immutableCell() 64 return new ImmutableCell<R, C, V>(rowKey, columnKey, value); in immutableCell() 67 static final class ImmutableCell<R, C, V> 68 extends AbstractCell<R, C, V> implements Serializable { 69 private final R rowKey; 74 @Nullable R rowKey, @Nullable C columnKey, @Nullable V value) { in ImmutableCell() 81 public R getRowKey() { in getRowKey() 96 abstract static class AbstractCell<R, C, V> implements Cell<R, C, V> { 136 public static <R, C, V> Table<C, R, V> transpose(Table<R, C, V> table) { in transpose() argument [all …]
|
D | RegularImmutableTable.java | 42 abstract class RegularImmutableTable<R, C, V> extends ImmutableTable<R, C, V> { 43 private final ImmutableSet<Cell<R, C, V>> cellSet; 45 private RegularImmutableTable(ImmutableSet<Cell<R, C, V>> cellSet) { in RegularImmutableTable() argument 58 private Function<Cell<R, C, V>, V> getValueFunction() { in getValueFunction() 85 @Override public final ImmutableSet<Cell<R, C, V>> cellSet() { in cellSet() 89 static final <R, C, V> RegularImmutableTable<R, C, V> forCells( in forCells() 90 List<Cell<R, C, V>> cells, in forCells() argument 91 @Nullable final Comparator<? super R> rowComparator, in forCells() 103 Comparator<Cell<R, C, V>> comparator = new Comparator<Cell<R, C, V>>() { in forCells() 104 @Override public int compare(Cell<R, C, V> cell1, Cell<R, C, V> cell2) { in forCells() [all …]
|
/external/chromium/testing/ |
D | gmock_mutant.h | 112 template <typename R, typename T, typename Method> 113 inline R DispatchToMethod(T* obj, Method method, in DispatchToMethod() 118 template <typename R, typename Function> 119 inline R DispatchToFunction(Function function, in DispatchToFunction() 126 template <typename R, typename T, typename Method, typename C1> 127 inline R DispatchToMethod(T* obj, Method method, in DispatchToMethod() 132 template <typename R, typename Function, typename C1> 133 inline R DispatchToFunction(Function function, in DispatchToFunction() 140 template <typename R, typename T, typename Method, typename C1, typename C2> 141 inline R DispatchToMethod(T* obj, Method method, in DispatchToMethod() [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/chromium/base/ |
D | bind_internal_win.h | 25 template <typename R> 26 struct FunctionTraits<R(__stdcall *)()> { 27 typedef R (*NormalizedSig)(); 32 template <typename R> 33 struct FunctionTraits<R(__fastcall *)()> { 34 typedef R (*NormalizedSig)(); 39 template <typename R, typename X1> 40 struct FunctionTraits<R(__stdcall *)(X1)> { 41 typedef R (*NormalizedSig)(X1); 48 template <typename R, typename X1> [all …]
|
D | bind_internal.h | 73 template <typename R> 74 struct FunctionTraits<R(*)()> { 75 typedef R (*NormalizedSig)(); 81 template <typename R, typename T> 82 struct FunctionTraits<R(T::*)()> { 83 typedef R (T::*NormalizedSig)(); 92 template <typename R, typename T> 93 struct FunctionTraits<R(T::*)() const> { 94 typedef R (T::*NormalizedSig)(); 103 template <typename R, typename X1> [all …]
|
/external/llvm/include/llvm/Object/ |
D | RelocVisitor.h | 49 RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t SecAddr = 0, 54 return visitELF_X86_64_NONE(R); 56 return visitELF_X86_64_64(R, Value); 58 return visitELF_X86_64_PC32(R, Value, SecAddr); 60 return visitELF_X86_64_32(R, Value); 62 return visitELF_X86_64_32S(R, Value); 70 return visitELF_386_NONE(R); 72 return visitELF_386_32(R, Value); 74 return visitELF_386_PC32(R, Value, SecAddr); 82 return visitELF_PPC64_ADDR32(R, Value); [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/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/srec/doc/logs/srec/ |
D | recog4_SHIP_bothtags5.res | 1 R: ph_EY ph_k ph_un ph_t ph_ih ph_OH1 ph_z 3 R: ph_eh ph_n ph_d ph_r ph_IH1 ph_m ph_un ph_d 5 R: ph_ih ph_r ph_w ph_EH1 ph_l ph_s ph_un 7 R: ph_eh ph_d ph_r ph_y ph_UH1 ph_n ph_d 9 R: ph_p ph_UH1 ph_m ph_ur ph_k ph_y ph_n ph_ih ph_s 11 R: phone delete VCE_Pete_Gonzalez 13 R: phone delete VCE_Peter_Wilson 15 R: phone delete VCE_Edgar_Young 17 R: phone delete VCE_Andrew_Evans 19 R: phone delete VCE_John_Martinez [all …]
|
D | recog4_SHIP_bothtags5_from_saved.res | 1 R: ph_EY ph_k ph_un ph_t ph_ih ph_OH1 ph_z 3 R: ph_eh ph_n ph_d ph_r ph_IH1 ph_m ph_un ph_d 5 R: ph_ih ph_r ph_w ph_EH1 ph_l ph_s ph_un 7 R: ph_eh ph_d ph_r ph_y ph_UH1 ph_n ph_d 9 R: ph_p ph_UH1 ph_m ph_ur ph_k ph_y ph_n ph_ih ph_s 11 R: phone delete VCE_Pete_Gonzalez 13 R: phone delete VCE_Peter_Wilson 15 R: phone delete VCE_Edgar_Young 17 R: phone delete VCE_Andrew_Evans 19 R: phone delete VCE_John_Martinez [all …]
|
D | recog4_SHIP_change_sample_rate2.res | 1 R: oh eight four nine two five one eight five 3 R: eight eight nine five eight eight two eight four 5 R: zero seven six five nine oh zero two five two 7 R: five zero two seven four nine three three zero zero 9 R: six nine five zero two eight seven seven 11 R: seven one one five six zero oh six five nine 13 R: oh three seven nine zero six eight five seven 15 R: zero nine nine five seven two oh one zero six 17 R: six eight seven two one oh eight five zero seven 19 R: four two zero eight five nine oh nine four zero [all …]
|
/external/llvm/unittests/ADT/ |
D | MapVectorTest.cpp | 18 std::pair<MapVector<int, int>::iterator, bool> R; in TEST() local 20 R = MV.insert(std::make_pair(1, 2)); in TEST() 21 ASSERT_EQ(R.first, MV.begin()); in TEST() 22 EXPECT_EQ(R.first->first, 1); in TEST() 23 EXPECT_EQ(R.first->second, 2); in TEST() 24 EXPECT_TRUE(R.second); in TEST() 26 R = MV.insert(std::make_pair(1, 3)); in TEST() 27 ASSERT_EQ(R.first, MV.begin()); in TEST() 28 EXPECT_EQ(R.first->first, 1); in TEST() 29 EXPECT_EQ(R.first->second, 2); in TEST() [all …]
|
/external/openssl/crypto/err/ |
D | openssl.ec | 53 R SSL_R_SSLV3_ALERT_UNEXPECTED_MESSAGE 1010 54 R SSL_R_SSLV3_ALERT_BAD_RECORD_MAC 1020 55 R SSL_R_TLSV1_ALERT_DECRYPTION_FAILED 1021 56 R SSL_R_TLSV1_ALERT_RECORD_OVERFLOW 1022 57 R SSL_R_SSLV3_ALERT_DECOMPRESSION_FAILURE 1030 58 R SSL_R_SSLV3_ALERT_HANDSHAKE_FAILURE 1040 59 R SSL_R_SSLV3_ALERT_NO_CERTIFICATE 1041 60 R SSL_R_SSLV3_ALERT_BAD_CERTIFICATE 1042 61 R SSL_R_SSLV3_ALERT_UNSUPPORTED_CERTIFICATE 1043 62 R SSL_R_SSLV3_ALERT_CERTIFICATE_REVOKED 1044 [all …]
|
/external/clang/utils/TableGen/ |
D | ClangSACheckersEmitter.cpp | 28 static bool isHidden(const Record &R) { in isHidden() argument 29 if (R.getValueAsBit("Hidden")) in isHidden() 32 if (DefInit *DI = dyn_cast<DefInit>(R.getValueInit("ParentPackage"))) in isHidden() 38 static bool isCheckerNamed(const Record *R) { in isCheckerNamed() argument 39 return !R->getValueAsString("CheckerName").empty(); in isCheckerNamed() 42 static std::string getPackageFullName(const Record *R); 44 static std::string getParentPackageFullName(const Record *R) { in getParentPackageFullName() argument 46 if (DefInit *DI = dyn_cast<DefInit>(R->getValueInit("ParentPackage"))) in getParentPackageFullName() 51 static std::string getPackageFullName(const Record *R) { in getPackageFullName() argument 52 std::string name = getParentPackageFullName(R); in getPackageFullName() [all …]
|
/external/webkit/Tools/mangleme/ |
D | mangle.cgi.c | 21 #define R(x) (rand() % (x)) macro 28 char c=R(2); in make_up_value() 32 switch (R(31)) { in make_up_value() 48 int c = R(10) ? R(10) : (1 + R(MAXSTR2) * R(MAXSTR2)); in make_up_value() 50 memset(x,R(256),c); in make_up_value() 59 default: if (R(2)) putchar('-'); printf("%d",rand()); break; in make_up_value() 71 do tn = R(MAXTAGS); while (!tags[tn][0]); in random_tag() 72 tc = R(MAXPCOUNT) + 1; in random_tag() 76 switch (R(10)) { in random_tag() 77 case 0: putchar(R(256)); break; in random_tag() [all …]
|
D | remangle.cgi.c | 20 #define R(x) (rand() % (x)) macro 27 char c=R(2); in make_up_value() 31 switch (R(31)) { in make_up_value() 47 int c = R(10) ? R(10) : (1 + R(MAXSTR2) * R(MAXSTR2)); in make_up_value() 49 memset(x,R(256),c); in make_up_value() 58 default: if (R(2)) putchar('-'); printf("%d",rand()); break; in make_up_value() 70 do tn = R(MAXTAGS); while (!tags[tn][0]); in random_tag() 71 tc = R(MAXPCOUNT) + 1; in random_tag() 75 switch (R(10)) { in random_tag() 76 case 0: putchar(R(256)); break; in random_tag() [all …]
|
/external/icu4c/test/testdata/ |
D | BidiTest.txt | 38 # Thus "1 0" indicates what would happen with input of "L R" and an RTL 48 # Auto-LTR (standard BIDI) uses the first L/R/AL character, and is LTR if none is… 50 # L LRE R R; 7 51 # L LRE R AL; 7 105 R; 7 228 R LRE; 7 229 R LRO; 7 230 R RLE; 7 231 R RLO; 7 232 R PDF; 7 [all …]
|
/external/llvm/tools/llvm-diff/ |
D | DifferenceEngine.cpp | 81 unsigned R = (Index + 1) * 2; in remove_min() local 82 unsigned L = R - 1; in remove_min() 85 if (R >= NewSize) { in remove_min() 97 unsigned IndexToTest = (Precedes(Storage[L], Storage[R]) ? L : R); in remove_min() 156 bool tryUnify(BasicBlock *L, BasicBlock *R) { in tryUnify() argument 160 if (Ref == R) return false; in tryUnify() 164 << L << R << Ref; in tryUnify() 168 Ref = R; in tryUnify() 169 Queue.insert(BlockPair(L, R)); in tryUnify() 175 void unify(Instruction *L, Instruction *R) { in unify() argument [all …]
|
/external/llvm/test/CodeGen/Generic/ |
D | BasicInstrs.ll | 7 %R = add i32 %A, %B ; <i32> [#uses=1] 8 ret i32 %R 12 %R = sub i32 %A, %B ; <i32> [#uses=1] 13 ret i32 %R 17 %R = mul i32 %A, %B ; <i32> [#uses=1] 18 ret i32 %R 22 %R = sdiv i32 %A, %B ; <i32> [#uses=1] 23 ret i32 %R 27 %R = udiv i32 %A, %B ; <i32> [#uses=1] 28 ret i32 %R [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | load-cmp.ll | 11 %R = icmp eq i16 %Q, 0 12 ret i1 %R 14 ; CHECK-NEXT: %R = icmp eq i32 %X, 9 15 ; CHECK-NEXT: ret i1 %R 21 %R = icmp slt i16 %Q, 85 22 ret i1 %R 24 ; CHECK-NEXT: %R = icmp ne i32 %X, 4 25 ; CHECK-NEXT: ret i1 %R 31 %R = fcmp oeq double %Q, 1.0 32 ret i1 %R [all …]
|