/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); \ 107 K3 = _mm_unpackhi_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); \ 119 K1 = _mm_unpacklo_epi64(K3, K0); \ 120 K0 = _mm_unpackhi_epi64(K3, K0); \ [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | ChainedMap.java | 71 …public static class M4<K3, K2, K1, V> extends ChainedMap implements Iterable<Map.Entry<K3, Map<K2,… 73 …private M4(Map<K3, Object> map3, Map<K2, Object> map2, Map<K1, Object> map1, Class<V> valueClass) { in M4() argument 82 public V get(K3 key3, K2 key2, K1 key1) { in get() 86 public M3<K2, K1, V> get(K3 key3) { in get() 92 public V put(K3 key3, K2 key2, K1 key1, V value) { in put() 98 public Iterator<Entry<K3, Map<K2, Map<K1, V>>>> iterator() { in iterator() 99 return (Iterator<Entry<K3, Map<K2, Map<K1, V>>>>) super.iterator(); in iterator() 103 public Iterable<Row.R4<K3, K2, K1, V>> rows() { in rows() 104 List<R4<K3, K2, K1, V>> result = new ArrayList<R4<K3, K2, K1, V>>(); in rows() 108 …R4<K3, K2, K1, V> item = (R4<K3, K2, K1, V>) Row.of(entry0.getKey(), entry1.getKey(), entry2.getKe… in rows() [all …]
|
/external/e2fsprogs/lib/ext2fs/ |
D | dirhash.c | 66 #define K3 015666365641UL macro 96 ROUND(H, a, b, c, d, in[3] + K3, 3); in halfMD4Transform() 97 ROUND(H, d, a, b, c, in[7] + K3, 9); in halfMD4Transform() 98 ROUND(H, c, d, a, b, in[2] + K3, 11); in halfMD4Transform() 99 ROUND(H, b, c, d, a, in[6] + K3, 15); in halfMD4Transform() 100 ROUND(H, a, b, c, d, in[1] + K3, 3); in halfMD4Transform() 101 ROUND(H, d, a, b, c, in[5] + K3, 9); in halfMD4Transform() 102 ROUND(H, c, d, a, b, in[0] + K3, 11); in halfMD4Transform() 103 ROUND(H, b, c, d, a, in[4] + K3, 15); in halfMD4Transform() 117 #undef K3
|
/external/openssh/openbsd-compat/ |
D | rmd160.c | 66 #define K3 0x8F1BBCDCU macro 242 R(c, d, e, a, b, F3, K3, 11, 1); in RMD160Transform() 243 R(b, c, d, e, a, F3, K3, 12, 9); in RMD160Transform() 244 R(a, b, c, d, e, F3, K3, 14, 11); in RMD160Transform() 245 R(e, a, b, c, d, F3, K3, 15, 10); in RMD160Transform() 246 R(d, e, a, b, c, F3, K3, 14, 0); in RMD160Transform() 247 R(c, d, e, a, b, F3, K3, 15, 8); in RMD160Transform() 248 R(b, c, d, e, a, F3, K3, 9, 12); in RMD160Transform() 249 R(a, b, c, d, e, F3, K3, 8, 4); in RMD160Transform() 250 R(e, a, b, c, d, F3, K3, 9, 13); in RMD160Transform() [all …]
|
/external/ltp/testcases/kernel/syscalls/pread/ |
D | pread01.c | 84 #define K3 (K1 * 3) macro 136 nread = pread(fildes, read_buf[3], K1, K3); in main() 232 l_seek(fildes, K3, SEEK_SET, K3); in setup()
|
/external/opencensus-java/exporters/stats/prometheus/src/test/java/io/opencensus/exporter/stats/prometheus/ |
D | PrometheusExportUtilsTest.java | 87 private static final TagKey K3 = TagKey.create("k-3"); field in PrometheusExportUtilsTest 104 View.create(VIEW_NAME_2, DESCRIPTION, MEASURE_DOUBLE, MEAN, Arrays.asList(K3), CUMULATIVE); 175 convertToLabelNames(Arrays.asList(K3)), in getSamples() 184 convertToLabelNames(Arrays.asList(K1, K3)), in getSamples() 193 convertToLabelNames(Arrays.asList(K3)), in getSamples() 232 convertToLabelNames(Arrays.asList(K3)), in getSamples() 246 convertToLabelNames(Arrays.asList(K1, K2, K3)), in getSamples_KeysAndValuesHaveDifferentSizes()
|
/external/ltp/testcases/kernel/syscalls/pwrite/ |
D | pwrite04.c | 54 #define K3 (K1 * 3) macro 128 l_seek(fd, K3, SEEK_SET, K3); in main()
|
D | pwrite01.c | 87 #define K3 (K1 * 3) macro 153 l_seek(fildes, K3, SEEK_SET, K3); in main()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AMDGPU/ |
D | sym_kernel_scope.s | 42 .amdgpu_hsa_kernel K3 43 K3: label
|
/external/opencensus-java/examples/src/main/java/io/opencensus/examples/tags/ |
D | TagContextExample.java | 34 private static final TagKey K3 = TagKey.create("k3"); field in TagContextExample 65 TagContext tags2 = tagger.toBuilder(tags1).put(K3, V3).put(K4, V4).build(); in main()
|
/external/speex/libspeexdsp/ |
D | math_approx.h | 185 #define K3 340 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 | 39 private static final TagKey K3 = TagKey.create("k3"); field in TagContextRoundtripTest 55 testRoundtripSerialization(tagger.emptyBuilder().put(K1, V1).put(K2, V2).put(K3, V3).build()); in testRoundtripSerialization_NormalTagContext()
|
D | TagContextSerializationTest.java | 58 private static final TagKey K3 = TagKey.create("k3"); field in TagContextSerializationTest 68 private static final Tag T3 = Tag.create(K3, V3);
|
/external/libmtp/logs/ |
D | mtp-detect-samsung-yp-k3.txt | 1 Found non-autodetected device "Samsung YP-K3" on USB bus... 17 Model: Samsung YP-K3 216 Friendly name: Samsung YP-K3
|
/external/clang/test/Sema/ |
D | warn-duplicate-enum.c | 69 K3, enumerator
|
/external/icu/icu4c/source/data/locales/ |
D | om_KE.txt | 68 "K3",
|
D | ha.txt | 510 "K3", 530 "K3",
|
D | sn.txt | 460 "K3", 480 "K3",
|
D | nd.txt | 192 "K3",
|
D | yo.txt | 444 "K3", 464 "K3",
|
D | cgg.txt | 194 "K3",
|
/external/llvm/test/CodeGen/X86/ |
D | ipra-reg-usage.ll | 6 …DR9 DR10 DR11 DR12 DR13 DR14 DR15 FP0 FP1 FP2 FP3 FP4 FP5 FP6 FP7 K0 K1 K2 K3 K4 K5 K6 K7 MM0 MM1 …
|
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/tags/ |
D | TaggerImplTest.java | 50 private static final TagKey K3 = TagKey.create("k3"); field in TaggerImplTest 58 private static final Tag TAG3 = Tag.create(K3, V3);
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | 9ef1f11ddd07ba6792ed519112db89ea.00008f28.honggfuzz.cov | 8 H�'�j�Y�]��qC��Z���K3ձ�}!v�\�Pk����Z[����?����{:����f5 36 H�'�j�Y�]��qC��Z���K3ձ�}!v�\�Pk����Z[����?����{:����f5 64 H�'�j�Y�]��qC��Z���K3ձ�}!v�\�Pk����ZY����?����{:����f5 73 H�'�j�Y�]��qC��Z���K3ձ�}!v�\�Pk����Z[����?����{:����f5 101 H�'�j�Y�]��qC��Z���K3ձ�}!v�\�Pk����ZY����?����{:����f5 169 H�'�j�Y�]��qC��Z���K3ձ�}!v�\�Pk����ZY����?����{:����f5 178 H�'�j�Y�]��qC��Z���K3ձ�}!v�\�Pk����Z[����?����{:����f5 206 H�'�j�Y�]��qC��Z���K3ձ�}!v�\�Pk����ZY����?����{:����f5
|
/external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/X86/ |
D | X86GenRegisterInfo.inc | 132 K3 = 112, 1170 { X86::K3 }, 1332 X86::K0, X86::K1, X86::K2, X86::K3, X86::K4, X86::K5, X86::K6, X86::K7, 1342 X86::K0, X86::K1, X86::K2, X86::K3, X86::K4, X86::K5, X86::K6, X86::K7, 1352 X86::K0, X86::K1, X86::K2, X86::K3, X86::K4, X86::K5, X86::K6, X86::K7, 1362 X86::K0, X86::K1, X86::K2, X86::K3, X86::K4, X86::K5, X86::K6, X86::K7, 1372 X86::K0, X86::K1, X86::K2, X86::K3, X86::K4, X86::K5, X86::K6, X86::K7, 1382 X86::K1, X86::K2, X86::K3, X86::K4, X86::K5, X86::K6, X86::K7, 1392 X86::K1, X86::K2, X86::K3, X86::K4, X86::K5, X86::K6, X86::K7, 1402 X86::K1, X86::K2, X86::K3, X86::K4, X86::K5, X86::K6, X86::K7, [all …]
|