Home
last modified time | relevance | path

Searched refs:K0 (Results 1 – 25 of 50) sorted by relevance

12

/external/guava/guava/src/com/google/common/collect/
DMultimapBuilder.java71 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(
177 final Class<K0> keyClass) {
179 return new MultimapBuilderWithKeys<K0>() {
182 <K extends K0, V> Map<K, Collection<V>> createMap() {
185 return (Map<K, Collection<V>>) new EnumMap<K0, Collection<V>>(keyClass);
278 public abstract static class MultimapBuilderWithKeys<K0> {
[all …]
DGenericMapMaker.java50 abstract class GenericMapMaker<K0, V0> {
61 RemovalListener<K0, V0> removalListener;
70 abstract GenericMapMaker<K0, V0> keyEquivalence(Equivalence<Object> equivalence); in keyEquivalence()
75 public abstract GenericMapMaker<K0, V0> initialCapacity(int initialCapacity); in initialCapacity()
80 abstract GenericMapMaker<K0, V0> maximumSize(int maximumSize); in maximumSize()
85 public abstract GenericMapMaker<K0, V0> concurrencyLevel(int concurrencyLevel); in concurrencyLevel()
91 public abstract GenericMapMaker<K0, V0> weakKeys(); in weakKeys()
97 public abstract GenericMapMaker<K0, V0> weakValues(); in weakValues()
110 public abstract GenericMapMaker<K0, V0> softValues(); in softValues()
115 abstract GenericMapMaker<K0, V0> expireAfterWrite(long duration, TimeUnit unit); in expireAfterWrite()
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DGenericMapMaker.java45 abstract class GenericMapMaker<K0, V0> {
55 public abstract GenericMapMaker<K0, V0> initialCapacity(int initialCapacity); in initialCapacity()
60 abstract GenericMapMaker<K0, V0> maximumSize(int maximumSize); in maximumSize()
65 public abstract GenericMapMaker<K0, V0> concurrencyLevel(int concurrencyLevel); in concurrencyLevel()
70 abstract GenericMapMaker<K0, V0> expireAfterWrite(long duration, TimeUnit unit); in expireAfterWrite()
80 public abstract <K extends K0, V extends V0> ConcurrentMap<K, V> makeMap(); in makeMap()
86 abstract <K extends K0, V extends V0> ConcurrentMap<K, V> makeComputingMap( in makeComputingMap()
/external/pdfium/third_party/lcms2-2.6/src/
Dcmsintrp.c263 cmsS15Fixed16Number k0, k1, rk, K0, K1; in Eval1Input() local
276 K0 = p16 -> opta[0] * k0; in Eval1Input()
281 Output[OutChan] = LinearInterp(rk, LutTable[K0+OutChan], LutTable[K1+OutChan]); in Eval1Input()
834 int K0, K1; in Eval4Inputs() local
860 K0 = p16 -> opta[3] * k0; in Eval4Inputs()
861 K1 = K0 + (Input[0] == 0xFFFFU ? 0 : p16->opta[3]); in Eval4Inputs()
873 LutTable += K0; in Eval4Inputs()
1020 int k0, K0, K1; in Eval4InputsFloat() local
1030 K0 = p -> opta[3] * k0; in Eval4InputsFloat()
1031 K1 = K0 + (Input[0] >= 1.0 ? 0 : p->opta[3]); in Eval4InputsFloat()
[all …]
/external/guava/guava-tests/test/com/google/common/hash/
DSipHashFunctionTest.java32 private static final long K0 = 0x0706050403020100L; field in SipHashFunctionTest
34 private static final HashFunction SIP_WITH_KEY = Hashing.sipHash24(K0, K1);
159 assertEquals("Hashing.sipHash24(" + K0 + ", " + K1 + ")", SIP_WITH_KEY.toString()); in testToString()
160 assertEquals("Hashing.sipHash24(" + K0 + ", " + K1 + ")", SIP_WITHOUT_KEY.toString()); in testToString()
/external/openssh/openbsd-compat/
Drmd160.c63 #define K0 0x00000000U macro
191 R(a, b, c, d, e, F0, K0, 11, 0); in RMD160Transform()
192 R(e, a, b, c, d, F0, K0, 14, 1); in RMD160Transform()
193 R(d, e, a, b, c, F0, K0, 15, 2); in RMD160Transform()
194 R(c, d, e, a, b, F0, K0, 12, 3); in RMD160Transform()
195 R(b, c, d, e, a, F0, K0, 5, 4); in RMD160Transform()
196 R(a, b, c, d, e, F0, K0, 8, 5); in RMD160Transform()
197 R(e, a, b, c, d, F0, K0, 7, 6); in RMD160Transform()
198 R(d, e, a, b, c, F0, K0, 9, 7); in RMD160Transform()
199 R(c, d, e, a, b, F0, K0, 11, 8); in RMD160Transform()
[all …]
/external/elfutils/lib/
Dsha1.c205 #define K0 0x5a827999 macro
255 e = CYCLIC (a, 5) + FF (b, c, d) + e + W (i) + K0; \ in sha1_process_block()
295 OP (16, FF, E, A, B, C, D, K0); in sha1_process_block()
296 OP (17, FF, D, E, A, B, C, K0); in sha1_process_block()
297 OP (18, FF, C, D, E, A, B, K0); in sha1_process_block()
298 OP (19, FF, B, C, D, E, A, K0); in sha1_process_block()
/external/skia/src/views/
DSkTouchGesture.cpp68 const float K0 = 5; in evaluateMatrix() local
70 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1); in evaluateMatrix()
75 float dist = (fSpeed0 - speed) / K0; in evaluateMatrix()
/external/guice/core/test/com/google/inject/
DScopesTest.java1041 static class K0 {
1047 K0(K1 k) {
1108 Future<K0> thirdThreadResult = Executors.newSingleThreadExecutor().submit(new Callable<K0>() {
1109 public K0 call() {
1111 return injector.getInstance(K0.class);
1161 errorMessage.contains(J0.class.getName()) && errorMessage.contains(K0.class.getName()));
1163 errorMessage.contains(K0.class.getName()) && errorMessage.contains(I0.class.getName()));
/external/llvm/lib/Target/Mips/
DMipsSEFrameLowering.cpp574 BuildMI(MBB, MBBI, DL, STI.getInstrInfo()->get(Mips::MFC0), Mips::K0) in emitInterruptPrologueStub()
579 BuildMI(MBB, MBBI, DL, STI.getInstrInfo()->get(Mips::EXT), Mips::K0) in emitInterruptPrologueStub()
580 .addReg(Mips::K0) in emitInterruptPrologueStub()
617 SrcReg = Mips::K0; in emitInterruptPrologueStub()
801 Reg = Mips::K0; in spillCalleeSavedRegisters()
806 BuildMI(MBB, MI, DL, TII.get(Op), Mips::K0) in spillCalleeSavedRegisters()
DMipsSEInstrInfo.cpp232 BuildMI(MBB, I, DL, get(Mips::MFHI), Mips::K0); in storeRegToStack()
233 SrcReg = Mips::K0; in storeRegToStack()
238 BuildMI(MBB, I, DL, get(Mips::MFLO), Mips::K0); in storeRegToStack()
239 SrcReg = Mips::K0; in storeRegToStack()
310 unsigned Reg = Mips::K0; in loadRegFromStack()
DMipsRegisterInfo.td114 def K0 : MipsGPRReg< 26, "26">, DwarfRegNum<[26]>;
148 def K0_64 : Mips64GPRReg< 26, "26", [K0]>, DwarfRegNum<[26]>;
290 K0, K1, GP, SP, FP, RA)>;
DMipsRegisterInfo.cpp156 Mips::ZERO, Mips::K0, Mips::K1, Mips::SP in getReservedRegs()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/it-IT/
Dit-IT_kdt_posd.pkb32 …;�``�1\=�[@@���s�z���/x�ABZ�p斆����� (x���5,Bγ)����s�,��%�C����K0�hu�fy�?@�ܲ�6�6ç�5}�…
/external/llvm/test/CodeGen/X86/
Dipra-reg-usage.ll6 … DR7 DR8 DR9 DR10 DR11 DR12 DR13 DR14 DR15 FP0 FP1 FP2 FP3 FP4 FP5 FP6 FP7 K0 K1 K2 K3 K4 K5 K6 K7…
/external/llvm/test/CodeGen/AMDGPU/
Dcaptured-frame-index.ll58 ; GCN-DAG: v_mov_b32_e32 [[K0:v[0-9]+]], 32{{$}}
59 ; GCN: buffer_store_dword [[K0]], [[ZERO]], s{{\[[0-9]+:[0-9]+\]}}, s{{[0-9]+}} offen{{$}}
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
DMipsRegisterInfo.td100 def K0 : MipsGPRReg< 26, "26">, DwarfRegNum<[26]>;
134 def K0_64 : Mips64GPRReg< 26, "26", [K0]>;
256 ZERO, AT, K0, K1, GP, SP, FP, RA)>;
DMipsRegisterInfo.cpp119 case Mips::K0: case Mips::K0_64: case Mips::F26: case Mips::D26_64: in getRegisterNumbering()
193 Mips::ZERO, Mips::AT, Mips::K0, Mips::K1, in getReservedRegs()
/external/ImageMagick/PerlMagick/t/
Dinput_gray_lsb_08bit.mat3 …[[Z[\WOA622100+&!:gk~h\VKZJHGDHXdaQGFIIDN^`Vo�cXZWY[[Z[Z\\\ab]K0…
/external/swiftshader/third_party/LLVM/lib/Target/Mips/MCTargetDesc/
DMipsBaseInfo.h92 case Mips::K0: case Mips::K0_64: case Mips::F26: case Mips::D26_64: in getMipsRegisterNumbering()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/
Des-ES_zl0_kpdf_dur.pkb6 zќ�B�@ 0�@��:a�ja�)BA"��1� � ��K0�:2 �@"@"@"�@"�  ��5P�DA@"b"Q$@����U`d�…
/external/llvm/lib/Target/X86/
DX86RegisterInfo.td229 def K0 : X86Reg<"k0", 0>, DwarfRegNum<[118, 93, 93]>;
519 def VK1WM : RegisterClass<"X86", [i1], 16, (sub VK1, K0)> {let Size = 16;}
520 def VK2WM : RegisterClass<"X86", [v2i1], 16, (sub VK2, K0)> {let Size = 16;}
521 def VK4WM : RegisterClass<"X86", [v4i1], 16, (sub VK4, K0)> {let Size = 16;}
522 def VK8WM : RegisterClass<"X86", [v8i1], 16, (sub VK8, K0)> {let Size = 16;}
/external/llvm/lib/Target/AMDGPU/
DSIISelLowering.cpp2171 const SDValue K0 = DAG.getConstantFP(K0Val, SL, MVT::f32); in LowerFDIV32() local
2181 SDValue r2 = DAG.getSetCC(SL, SetCCVT, r1, K0, ISD::SETOGT); in LowerFDIV32()
2716 ConstantSDNode *K0 = dyn_cast<ConstantSDNode>(Op0.getOperand(1)); in performIntMed3ImmCombine() local
2717 if (!K0) in performIntMed3ImmCombine()
2721 if (K0->getAPIntValue().sge(K1->getAPIntValue())) in performIntMed3ImmCombine()
2724 if (K0->getAPIntValue().uge(K1->getAPIntValue())) in performIntMed3ImmCombine()
2728 EVT VT = K0->getValueType(0); in performIntMed3ImmCombine()
2730 Op0.getOperand(0), SDValue(K0, 0), SDValue(K1, 0)); in performIntMed3ImmCombine()
2746 ConstantFPSDNode *K0 = dyn_cast<ConstantFPSDNode>(Op0.getOperand(1)); in performFPMed3ImmCombine() local
2747 if (!K0) in performFPMed3ImmCombine()
[all …]
/external/ImageMagick/PerlMagick/t/reference/filter/
DEmboss.miff57 …���/�t �^"�A<��;�#�Qs� ��O*�eM� �\g�gt��6D�$j�O�����}�)��iq��U�>D�:��K0�F�b�C �j#�v1� ���…
78 * 'K0��XJ�n��;��oԽ!�$VĴ������[��[��[��Z��U��L��Z��u��?�U���������������ԙ����������ڏ�ө����������…
DShear.miff14 …o;3�s?9�p?7�j<3�l81�k61�g5/�f6.�g7.�i60�g5-�_0&�e5+��MG�wXL�YSC�IO<�?L5�<K0�?K0�8=+�:<1�7:0�:C.�f�…

12