/external/cldr/tools/java/org/unicode/cldr/util/ |
D | ChainedMap.java | 21 …public static class M3<K2, K1, V> extends ChainedMap implements Iterable<Map.Entry<K2, Map<K1, V>>… 23 private M3(Map<K2, Object> map2, Map<K1, Object> map1, Class<V> valueClass) { in M3() argument 32 public V get(K2 key2, K1 key1) { in get() 37 public Map<K1, V> get(K2 key2) { in get() 43 public V put(K2 key2, K1 key1, V value) { in put() 49 public Iterator<Entry<K2, Map<K1, V>>> iterator() { in iterator() 50 return (Iterator<Entry<K2, Map<K1, V>>>) super.iterator(); in iterator() 54 public Iterable<Row.R3<K2, K1, V>> rows() { in rows() 55 List<R3<K2, K1, V>> result = new ArrayList<>(); in rows() 58 … R3<K2, K1, V> item = (R3<K2, K1, V>) Row.of(entry0.getKey(), entry1.getKey(), entry1.getValue()); in rows() [all …]
|
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/tags/ |
D | TagContextImplTest.java | 53 private static final TagKey K2 = TagKey.create("k2"); field in TagContextImplTest 68 TagContextImpl tags = new TagContextImpl(ImmutableMap.of(K1, V1, K2, V2)); in getTags_nonEmpty() 69 assertThat(tags.getTags()).containsExactly(K1, V1, K2, V2); in getTags_nonEmpty() 75 assertThat(((TagContextImpl) tagger.toBuilder(tags).put(K2, V2).build()).getTags()) in put_newKey() 76 .containsExactly(K1, V1, K2, V2); in put_newKey() 101 builder.put(K2, null); in put_nullValue() 106 TagContext tags = new TagContextImpl(ImmutableMap.of(K1, V1, K2, V2)); in remove_existingKey() 108 .containsExactly(K2, V2); in remove_existingKey() 114 assertThat(((TagContextImpl) tagger.toBuilder(tags).remove(K2).build()).getTags()) in remove_differentKey() 129 TagContextImpl tags = new TagContextImpl(ImmutableMap.of(K1, V1, K2, V2)); in testIterator() [all …]
|
/external/guava/android/guava/src/com/google/common/hash/ |
D | FarmHashFingerprint64.java | 47 private static final long K2 = 0x9ae16a3b2f90404fL; field in FarmHashFingerprint64 119 long mul = K2 + length * 2; in hashLength0to16() 120 long a = load64(bytes, offset) + K2; in hashLength0to16() 127 long mul = K2 + length * 2; in hashLength0to16() 137 return shiftMix(y * K2 ^ z * K0) * K2; in hashLength0to16() 139 return K2; in hashLength0to16() 143 long mul = K2 + length * 2; in hashLength17to32() 147 long d = load64(bytes, offset + length - 16) * K2; in hashLength17to32() 149 rotateRight(a + b, 43) + rotateRight(c, 30) + d, a + rotateRight(b + K2, 18) + c, mul); in hashLength17to32() 153 long mul = K2 + length * 2; in hashLength33To64() [all …]
|
/external/guava/guava/src/com/google/common/hash/ |
D | FarmHashFingerprint64.java | 47 private static final long K2 = 0x9ae16a3b2f90404fL; field in FarmHashFingerprint64 119 long mul = K2 + length * 2; in hashLength0to16() 120 long a = load64(bytes, offset) + K2; in hashLength0to16() 127 long mul = K2 + length * 2; in hashLength0to16() 137 return shiftMix(y * K2 ^ z * K0) * K2; in hashLength0to16() 139 return K2; in hashLength0to16() 143 long mul = K2 + length * 2; in hashLength17to32() 147 long d = load64(bytes, offset + length - 16) * K2; in hashLength17to32() 149 rotateRight(a + b, 43) + rotateRight(c, 30) + d, a + rotateRight(b + K2, 18) + c, mul); in hashLength17to32() 153 long mul = K2 + length * 2; in hashLength33To64() [all …]
|
/external/python/cryptography/vectors/cryptography_vectors/KDF/ |
D | ansx963_2001.txt | 104 K2 = 405c5bccd4ee4832a531fbe7f10cb79e2eab6ab1 130 K2 = 6ebb28bfdd9bc8028d264b3a5c6f6d2dd3de7e1d 156 K2 = d71c91f392bc18039e2fb5b250df267f3cdc2443 182 K2 = 70de3a0d943d5a10b3deb4088bf7f26d863915cb 208 K2 = 3d4ed3124c6193e806d2cb12862a0dab34c0b1eb 234 K2 = c44a46b9ece98d2335a06aeaadbc019443752930 260 K2 = e8f0118fe9140093323795fd8bdde40ae27d18df 286 K2 = 21453a526aaf6cc87f903122dcdc14bafde13e2b 312 K2 = 050b2a677ae43717fa51ab21c75f9853fc701d92 338 K2 = c7f320dfe6336c3d5ebf57d4fbd40766fe42cca6 [all …]
|
/external/clang/test/SemaCXX/ |
D | using-directive.cpp | 48 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'A::K2'}} struct 51 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'K2'}} struct 57 struct K2 *k2; // expected-error{{reference to 'K2' is ambiguous}} 59 K2 *k3; // expected-error{{reference to 'K2' is ambiguous}} 67 struct K2; 68 struct K2 { }; struct
|
/external/llvm-project/clang/test/SemaCXX/ |
D | using-directive.cpp | 48 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'A::K2'}} struct 51 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'K2'}} struct 57 struct K2 *k2; // expected-error{{reference to 'K2' is ambiguous}} 59 K2 *k3; // expected-error{{reference to 'K2' is ambiguous}} 67 struct K2; 68 struct K2 { }; struct
|
/external/e2fsprogs/lib/ext2fs/ |
D | dirhash.c | 67 #define K2 013240474631UL macro 88 ROUND(G, a, b, c, d, in[1] + K2, 3); in halfMD4Transform() 89 ROUND(G, d, a, b, c, in[3] + K2, 5); in halfMD4Transform() 90 ROUND(G, c, d, a, b, in[5] + K2, 9); in halfMD4Transform() 91 ROUND(G, b, c, d, a, in[7] + K2, 13); in halfMD4Transform() 92 ROUND(G, a, b, c, d, in[0] + K2, 3); in halfMD4Transform() 93 ROUND(G, d, a, b, c, in[2] + K2, 5); in halfMD4Transform() 94 ROUND(G, c, d, a, b, in[4] + K2, 9); in halfMD4Transform() 95 ROUND(G, b, c, d, a, in[6] + K2, 13); in halfMD4Transform() 118 #undef K2
|
/external/crosvm/devices/src/virtio/fs/ |
D | multikey.rs | 12 pub struct MultikeyBTreeMap<K1, K2, V> { 16 main: BTreeMap<K1, (K2, V)>, 17 alt: BTreeMap<K2, K1>, 20 impl<K1, K2, V> MultikeyBTreeMap<K1, K2, V> 23 K2: Clone + Ord, 55 K2: Borrow<Q2>, in get_alt() 72 pub fn insert(&mut self, k1: K1, k2: K2, v: V) -> Option<V> { in insert() argument
|
/external/ltp/testcases/kernel/syscalls/pwrite/ |
D | pwrite04.c | 53 #define K2 (K1 * 2) macro 113 if ((nbytes = pwrite(fd, wbuf[2], K1, K2)) != K1) { in main() 178 l_seek(fd, K2, SEEK_SET, K2); in main() 193 l_seek(fd, 0, SEEK_CUR, K2); in main()
|
D | pwrite01.c | 86 #define K2 (K1 * 2) macro 141 nwrite = pwrite(fildes, write_buf[2], K1, K2); in main() 145 K2, TEMPFILE, errno, strerror(errno)); in main()
|
/external/llvm-project/clang-tools-extra/test/clang-move/Inputs/ |
D | helper_decls_test.cpp | 27 static const int K2 = 2; variable 28 static void HelperFun3() { K2; } in HelperFun3() 52 int Result = K1 + K2 + K3; in f()
|
/external/llvm-project/llvm/test/Transforms/IndVarSimplify/ |
D | pr39673.ll | 16 ; CHECK-NEXT: [[K2:%.*]] = phi i16 [ [[K2_ADD:%.*]], [[LOOP2]] ], [ 182, [[LOOP2_PREHEADER]] ] 19 ; CHECK-NEXT: tail call void @foo(i16 [[K2]]) 20 ; CHECK-NEXT: [[K2_ADD]] = add nuw nsw i16 [[K2]], 1 67 ; CHECK-NEXT: [[K2:%.*]] = phi i16 [ [[K2_ADD:%.*]], [[LOOP2]] ], [ [[ARG2:%.*]], [[LOOP2_PREHEA… 70 ; CHECK-NEXT: tail call void @foo(i16 [[K2]]) 71 ; CHECK-NEXT: [[K2_ADD]] = add nuw nsw i16 [[K2]], 1 116 ; CHECK-NEXT: [[K2:%.*]] = phi i16 [ [[K2_ADD:%.*]], [[LOOP2]] ], [ [[DUMMY]], [[LOOP2_PREHEADER… 119 ; CHECK-NEXT: tail call void @foo(i16 [[K2]]) 120 ; CHECK-NEXT: [[K2_ADD]] = add nuw nsw i16 [[K2]], 1 161 ; CHECK-NEXT: [[K2:%.*]] = phi i16 [ [[K2_ADD:%.*]], [[LOOP2]] ], [ [[TMP0]], [[LOOP2_PREHEADER]… [all …]
|
/external/ltp/testcases/kernel/syscalls/pread/ |
D | pread01.c | 83 #define K2 (K1 * 2) macro 118 nread = pread(fildes, read_buf[2], K1, K2); in main() 222 if ((nwrite = pwrite(fildes, write_buf[2], K1, K2)) != K1) { in setup() 224 "on %s, errno=%d : %s", K2, TEMPFILE, errno, in setup()
|
/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/RPC/ |
D | RPCSerialization.h | 706 template <typename ChannelT, typename K, typename V, typename K2, typename V2> 707 class SerializationTraits<ChannelT, std::map<K, V>, std::map<K2, V2>> { 710 static Error serialize(ChannelT &C, const std::map<K2, V2> &M) { in serialize() argument 716 SerializationTraits<ChannelT, K, K2>::serialize(C, E.first)) in serialize() 727 static Error deserialize(ChannelT &C, std::map<K2, V2> &M) { in deserialize() argument 735 std::pair<K2, V2> Val; in deserialize() 737 SerializationTraits<ChannelT, K, K2>::deserialize(C, Val.first)) in deserialize() 754 template <typename ChannelT, typename K, typename V, typename K2, typename V2> 755 class SerializationTraits<ChannelT, std::map<K, V>, DenseMap<K2, V2>> { 758 static Error serialize(ChannelT &C, const DenseMap<K2, V2> &M) { in serialize() argument [all …]
|
/external/llvm-project/clang/include/clang/Lex/ |
D | Token.h | 99 bool isOneOf(tok::TokenKind K1, tok::TokenKind K2) const { in isOneOf() argument 100 return is(K1) || is(K2); in isOneOf() 103 bool isOneOf(tok::TokenKind K1, tok::TokenKind K2, Ts... Ks) const { in isOneOf() argument 104 return is(K1) || isOneOf(K2, Ks...); in isOneOf()
|
/external/clang/include/clang/Lex/ |
D | Token.h | 96 bool isOneOf(tok::TokenKind K1, tok::TokenKind K2) const { in isOneOf() argument 97 return is(K1) || is(K2); in isOneOf() 100 bool isOneOf(tok::TokenKind K1, tok::TokenKind K2, Ts... Ks) const { in isOneOf() argument 101 return is(K1) || isOneOf(K2, Ks...); in isOneOf()
|
/external/clang/test/Sema/ |
D | warn-duplicate-enum.c | 68 K2, enumerator 70 K4 = K2,
|
/external/llvm-project/clang/test/Sema/ |
D | warn-duplicate-enum.c | 68 K2, enumerator 70 K4 = K2,
|
/external/llvm-project/llvm/test/MC/AMDGPU/ |
D | sym_kernel_scope.s | 27 .amdgpu_hsa_kernel K2 32 K2: label
|
/external/clang/test/SemaTemplate/ |
D | instantiate-declref.cpp | 47 enum K2 { K2Val = sizeof(T)*2 } k2a; in foo() enum 49 K2 k2b = K2Val; in foo()
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | instantiate-declref.cpp | 47 enum K2 { K2Val = sizeof(T)*2 } k2a; in foo() enum 49 K2 k2b = K2Val; in foo()
|
/external/opencensus-java/examples/src/main/java/io/opencensus/examples/tags/ |
D | TagContextExample.java | 33 private static final TagKey K2 = TagKey.create("k2"); field in TagContextExample 60 TagContext tags1 = tagger.emptyBuilder().put(K1, V1).put(K2, V2).build(); in main()
|
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/tags/propagation/ |
D | TagContextRoundtripTest.java | 38 private static final TagKey K2 = TagKey.create("k2"); field in TagContextRoundtripTest 55 testRoundtripSerialization(tagger.emptyBuilder().put(K1, V1).put(K2, V2).put(K3, V3).build()); in testRoundtripSerialization_NormalTagContext()
|
/external/speex/libspeexdsp/ |
D | math_approx.h | 184 #define K2 -4096 macro 195 …return ADD32(K1, MULT16_16_P13(x2, ADD32(K2, MULT16_16_P13(x2, ADD32(K3, MULT16_16_P13(K4, x2)))))… in spx_cos() 199 …return SUB32(-K1, MULT16_16_P13(x2, ADD32(K2, MULT16_16_P13(x2, ADD32(K3, MULT16_16_P13(K4, x2))))… in spx_cos()
|