HomeSort by relevance Sort by last modified time
    Searched refs:K0 (Results 1 - 25 of 50) sorted by null

1 2

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
GenericMapMaker.java 30 * @param <K0> the base type for all key types of maps built by this map maker
45 abstract class GenericMapMaker<K0, V0> {
55 public abstract GenericMapMaker<K0, V0> initialCapacity(int initialCapacity);
60 abstract GenericMapMaker<K0, V0> maximumSize(int maximumSize);
65 public abstract GenericMapMaker<K0, V0> concurrencyLevel(int concurrencyLevel);
70 abstract GenericMapMaker<K0, V0> expireAfterWrite(long duration, TimeUnit unit);
80 public abstract <K extends K0, V extends V0> ConcurrentMap<K, V> makeMap();
86 abstract <K extends K0, V extends V0> ConcurrentMap<K, V> makeComputingMap(
  /external/guava/guava/src/com/google/common/collect/
GenericMapMaker.java 35 * @param <K0> the base type for all key types of maps built by this map maker
50 abstract class GenericMapMaker<K0, V0> {
61 RemovalListener<K0, V0> removalListener;
70 abstract GenericMapMaker<K0, V0> keyEquivalence(Equivalence<Object> equivalence);
75 public abstract GenericMapMaker<K0, V0> initialCapacity(int initialCapacity);
80 abstract GenericMapMaker<K0, V0> maximumSize(int maximumSize);
85 public abstract GenericMapMaker<K0, V0> concurrencyLevel(int concurrencyLevel);
91 public abstract GenericMapMaker<K0, V0> weakKeys();
97 public abstract GenericMapMaker<K0, V0> weakValues();
110 public abstract GenericMapMaker<K0, V0> softValues()
    [all...]
MultimapBuilder.java 65 * @param <K0> An upper bound on the key type of the generated multimap.
71 public abstract class MultimapBuilder<K0, V0> {
163 public static <K0> MultimapBuilderWithKeys<K0> treeKeys(final Comparator<K0> comparator) {
165 return new MultimapBuilderWithKeys<K0>() {
167 <K extends K0, V> Map<K, Collection<V>> createMap() {
176 public static <K0 extends Enum<K0>> MultimapBuilderWithKeys<K0> enumKeys
    [all...]
  /external/epid-sdk/ext/ipp/sources/ippcp/
pcpsms4ecby8cn.h 100 #define TRANSPOSE_INP(K0,K1,K2,K3, T) \
101 T = _mm_unpacklo_epi32(K0, K1); \
102 K1 = _mm_unpackhi_epi32(K0, K1); \
103 K0 = _mm_unpacklo_epi32(K2, K3); \
108 K1 = _mm_unpackhi_epi64(T, K0); \
109 K0 = _mm_unpacklo_epi64(T, K0)
111 #define TRANSPOSE_OUT(K0,K1,K2,K3, T) \
112 T = _mm_unpacklo_epi32(K1, K0); \
113 K0 = _mm_unpackhi_epi32(K1, K0);
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
SipHashFunctionTest.java 32 private static final long K0 = 0x0706050403020100L;
34 private static final HashFunction SIP_WITH_KEY = Hashing.sipHash24(K0, K1);
121 long k0 = 0x0706050403020100L; local
124 assertEquals(0xa129ca6149be45e5L, Hashing.sipHash24(k0, k1).hashBytes(message).asLong());
159 assertEquals("Hashing.sipHash24(" + K0 + ", " + K1 + ")", SIP_WITH_KEY.toString());
160 assertEquals("Hashing.sipHash24(" + K0 + ", " + K1 + ")", SIP_WITHOUT_KEY.toString());
  /external/pdfium/third_party/lcms/src/
cmsintrp.c 263 cmsS15Fixed16Number k0, k1, rk, K0, K1; local
271 k0 = FIXED_TO_INT(fk);
274 k1 = k0 + (Input[0] != 0xFFFFU ? 1 : 0);
276 K0 = p16 -> opta[0] * k0;
281 Output[OutChan] = LinearInterp(rk, LutTable[K0+OutChan], LutTable[K1+OutChan]);
833 cmsS15Fixed16Number k0, rk; local
834 int K0, K1;
850 k0 = FIXED_TO_INT(fk)
1020 int k0, K0, K1; local
1063 cmsS15Fixed16Number k0, rk; local
1107 int k0, K0, K1; local
1151 cmsS15Fixed16Number k0, rk; local
1194 int k0, K0, K1; local
1237 cmsS15Fixed16Number k0, rk; local
1279 int k0, K0, K1; local
1323 cmsS15Fixed16Number k0, rk; local
1364 int k0, K0, K1; local
    [all...]
  /external/openssh/openbsd-compat/
rmd160.c 63 #define K0 0x00000000U
191 R(a, b, c, d, e, F0, K0, 11, 0);
192 R(e, a, b, c, d, F0, K0, 14, 1);
193 R(d, e, a, b, c, F0, K0, 15, 2);
194 R(c, d, e, a, b, F0, K0, 12, 3);
195 R(b, c, d, e, a, F0, K0, 5, 4);
196 R(a, b, c, d, e, F0, K0, 8, 5);
197 R(e, a, b, c, d, F0, K0, 7, 6);
198 R(d, e, a, b, c, F0, K0, 9, 7);
199 R(c, d, e, a, b, F0, K0, 11, 8)
    [all...]
  /art/runtime/arch/mips/
registers_mips.h 54 K0 = 26, // Reserved for trap handler.
  /art/runtime/arch/mips64/
registers_mips64.h 54 K0 = 26, // Reserved for trap handler.
  /external/skia/tools/viewer/
TouchGesture.cpp 68 const float K0 = 5;
70 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
75 float dist = (fSpeed0 - speed) / K0;
  /external/skqp/tools/viewer/
TouchGesture.cpp 68 const float K0 = 5;
70 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
75 float dist = (fSpeed0 - speed) / K0;
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/MCTargetDesc/
MipsBaseInfo.h 92 case Mips::K0: case Mips::K0_64: case Mips::F26: case Mips::D26_64:
  /external/llvm/lib/Target/Mips/
MipsSEInstrInfo.cpp 232 BuildMI(MBB, I, DL, get(Mips::MFHI), Mips::K0);
233 SrcReg = Mips::K0;
238 BuildMI(MBB, I, DL, get(Mips::MFLO), Mips::K0);
239 SrcReg = Mips::K0;
308 // Load HI/LO through K0. Notably the DestReg is encoded into the
310 unsigned Reg = Mips::K0;
MipsSEFrameLowering.cpp 574 BuildMI(MBB, MBBI, DL, STI.getInstrInfo()->get(Mips::MFC0), Mips::K0)
579 BuildMI(MBB, MBBI, DL, STI.getInstrInfo()->get(Mips::EXT), Mips::K0)
580 .addReg(Mips::K0)
617 SrcReg = Mips::K0;
801 Reg = Mips::K0;
806 BuildMI(MBB, MI, DL, TII.get(Op), Mips::K0)
    [all...]
MipsRegisterInfo.cpp 156 Mips::ZERO, Mips::K0, Mips::K1, Mips::SP
  /external/guice/core/test/com/google/inject/
ScopesTest.java     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
MipsSEFrameLowering.cpp 599 BuildMI(MBB, MBBI, DL, STI.getInstrInfo()->get(Mips::MFC0), Mips::K0)
604 BuildMI(MBB, MBBI, DL, STI.getInstrInfo()->get(Mips::EXT), Mips::K0)
605 .addReg(Mips::K0)
642 SrcReg = Mips::K0;
824 Reg = Mips::K0;
829 BuildMI(MBB, MI, DL, TII.get(Op), Mips::K0)
    [all...]
MipsSEInstrInfo.cpp 305 BuildMI(MBB, I, DL, get(Mips::MFHI), Mips::K0);
306 SrcReg = Mips::K0;
311 BuildMI(MBB, I, DL, get(Mips::MFLO), Mips::K0);
312 SrcReg = Mips::K0;
386 // Load HI/LO through K0. Notably the DestReg is encoded into the
388 unsigned Reg = Mips::K0;
    [all...]
MipsRegisterInfo.cpp 153 Mips::ZERO, Mips::K0, Mips::K1, Mips::SP
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsRegisterInfo.cpp 119 case Mips::K0: case Mips::K0_64: case Mips::F26: case Mips::D26_64:
193 Mips::ZERO, Mips::AT, Mips::K0, Mips::K1,
  /external/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp     [all...]
  /cts/tests/tests/media/res/raw/
testamr.amr 222 ?????]???Q?F???J?????F??????F3W?@?????h<6`p?????(L?qpQ???c?i+:?2???Fw?d?6?2@???k?d??K0???)?Dp??F????; ??|???"???6????>?K?i?A?@????j?&??@?o??[\?zXp???k`?+??f2????????@2??/z??e?F@3m??|(?@2??wj??XK?F@???sV`ut@?????{?,n?u2????T?eO???/O????,?N1&>????6?)?0???RG?"????;?JcE?)!??+?&?7?h???Y?B?~???;a?X?F????f?E?h?~???<&lsN?h?_???????4?????K"??PN&??e?/4????;X??8Ir???k?N?Z???0???z?? <-&0???/d????2????M?J8???????u9?S2??????Dl2?????F?????R??:?????O??"z#3???f?f??H
  /external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/X86/
X86GenRegisterInfo.inc 129 K0 = 109,
1167 { X86::K0 },
    [all...]
  /art/compiler/utils/mips/
assembler_mips32r5_test.cc 117 registers_.push_back(new mips::Register(mips::K0));
150 secondary_register_names_.emplace(mips::Register(mips::K0), "k0");
  /external/capstone/arch/X86/
X86DisassemblerDecoder.h 333 ENTRY(K0) \

Completed in 1001 milliseconds

1 2