/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<R3<K2, K1, V>>(); 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/epid-sdk/ext/ipp/sources/ippcp/ |
D | pcpsms4ecby8cn.h | 100 #define TRANSPOSE_INP(K0,K1,K2,K3, T) \ argument 103 K0 = _mm_unpacklo_epi32(K2, K3); \ 104 K3 = _mm_unpackhi_epi32(K2, K3); \ 106 K2 = _mm_unpacklo_epi64(K1, K3); \ 111 #define TRANSPOSE_OUT(K0,K1,K2,K3, T) \ argument 114 K1 = _mm_unpacklo_epi32(K3, K2); \ 115 K3 = _mm_unpackhi_epi32(K3, K2); \ 117 K2 = _mm_unpackhi_epi64(K1, T); \
|
/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/e2fsprogs/lib/ext2fs/ |
D | dirhash.c | 65 #define K2 013240474631UL macro 86 ROUND(G, a, b, c, d, in[1] + K2, 3); in halfMD4Transform() 87 ROUND(G, d, a, b, c, in[3] + K2, 5); in halfMD4Transform() 88 ROUND(G, c, d, a, b, in[5] + K2, 9); in halfMD4Transform() 89 ROUND(G, b, c, d, a, in[7] + K2, 13); in halfMD4Transform() 90 ROUND(G, a, b, c, d, in[0] + K2, 3); in halfMD4Transform() 91 ROUND(G, d, a, b, c, in[2] + K2, 5); in halfMD4Transform() 92 ROUND(G, c, d, a, b, in[4] + K2, 9); in halfMD4Transform() 93 ROUND(G, b, c, d, a, in[6] + K2, 13); in halfMD4Transform() 116 #undef K2
|
/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/openssh/openbsd-compat/ |
D | rmd160.c | 65 #define K2 0x6ED9EBA1U macro 225 R(d, e, a, b, c, F2, K2, 11, 3); in RMD160Transform() 226 R(c, d, e, a, b, F2, K2, 13, 10); in RMD160Transform() 227 R(b, c, d, e, a, F2, K2, 6, 14); in RMD160Transform() 228 R(a, b, c, d, e, F2, K2, 7, 4); in RMD160Transform() 229 R(e, a, b, c, d, F2, K2, 14, 9); in RMD160Transform() 230 R(d, e, a, b, c, F2, K2, 9, 15); in RMD160Transform() 231 R(c, d, e, a, b, F2, K2, 13, 8); in RMD160Transform() 232 R(b, c, d, e, a, F2, K2, 15, 1); in RMD160Transform() 233 R(a, b, c, d, e, F2, K2, 14, 2); in RMD160Transform() [all …]
|
/external/autotest/client/site_tests/video_WebRtcPeerConnectionWithCamera/ |
D | ssim.js | 62 var K2 = 0.03; 65 var C2 = (K2 * L) * (K2 * L);
|
/external/autotest/client/site_tests/video_WebRtcCamera/ |
D | ssim.js | 62 var K2 = 0.03; 65 var C2 = (K2 * L) * (K2 * L);
|
/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/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/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/ |
D | RTDyldObjectLinkingLayerTest.cpp | 181 auto K2 = ES.allocateVModule(); in TEST_F() local 186 Resolvers[K2] = createSymbolResolver( in TEST_F() 195 cantFail(ObjLayer.addObject(K2, std::move(Obj2))); in TEST_F() 196 cantFail(ObjLayer.emitAndFinalize(K2)); in TEST_F() 197 cantFail(ObjLayer.removeObject(K2)); in TEST_F()
|
D | ObjectTransformLayerTest.cpp | 206 auto K2 = ES.allocateVModule(); in TEST() local 208 M.expectAddObject(K2, Obj2); in TEST() 209 cantFail(T2.addObject(K2, Obj2)); in TEST() 214 M.expectRemoveObject(K2); in TEST() 215 cantFail(T1.removeObject(K2)); in TEST()
|
/external/clang/test/Sema/ |
D | warn-duplicate-enum.c | 68 K2, enumerator 70 K4 = K2,
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AMDGPU/ |
D | sym_kernel_scope.s | 27 .amdgpu_hsa_kernel K2 32 K2: label
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | onehot_merge.ll | 39 ; CHECK-NEXT: [[K2:%.*]] = mul i32 [[K:%.*]], [[K]] 43 ; CHECK-NEXT: [[TMP1:%.*]] = and i32 [[K2]], [[TMP0]] 94 ; CHECK-NEXT: [[K2:%.*]] = mul i32 [[K:%.*]], [[K]] 98 ; CHECK-NEXT: [[TMP2:%.*]] = and i32 [[K2]], [[TMP1]]
|
/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/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/exporters/stats/prometheus/src/test/java/io/opencensus/exporter/stats/prometheus/ |
D | PrometheusExportUtilsTest.java | 86 private static final TagKey K2 = TagKey.create("k2"); field in PrometheusExportUtilsTest 102 VIEW_NAME_1, DESCRIPTION, MEASURE_DOUBLE, COUNT, Arrays.asList(K1, K2), CUMULATIVE); 166 convertToLabelNames(Arrays.asList(K1, K2)), in getSamples() 223 convertToLabelNames(Arrays.asList(K1, K2)), in getSamples() 246 convertToLabelNames(Arrays.asList(K1, K2, K3)), in getSamples_KeysAndValuesHaveDifferentSizes()
|
/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()
|
/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()
|
D | TagContextSerializationTest.java | 57 private static final TagKey K2 = TagKey.create("k2"); field in TagContextSerializationTest 67 private static final Tag T2 = Tag.create(K2, V2);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | RPCSerialization.h | 690 template <typename ChannelT, typename K, typename V, typename K2, typename V2> 691 class SerializationTraits<ChannelT, std::map<K, V>, std::map<K2, V2>> { 694 static Error serialize(ChannelT &C, const std::map<K2, V2> &M) { in serialize() argument 700 SerializationTraits<ChannelT, K, K2>::serialize(C, E.first)) in serialize() 711 static Error deserialize(ChannelT &C, std::map<K2, V2> &M) { in deserialize() argument 719 std::pair<K2, V2> Val; in deserialize() 721 SerializationTraits<ChannelT, K, K2>::deserialize(C, Val.first)) in deserialize()
|
/external/clang/lib/Format/ |
D | FormatToken.h | 291 template <typename A, typename B> bool isOneOf(A K1, B K2) const { in isOneOf() 292 return is(K1) || is(K2); in isOneOf() 295 bool isOneOf(A K1, B K2, Ts... Ks) const { in isOneOf() 296 return is(K1) || isOneOf(K2, Ks...); in isOneOf()
|