Searched refs:K0 (Results 1 - 9 of 9) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DGenericMapMaker.java35 * @param <K0> the base type for all key types of maps built by this map maker
42 public abstract class GenericMapMaker<K0, V0> {
53 RemovalListener<K0, V0> removalListener;
62 abstract GenericMapMaker<K0, V0> keyEquivalence(Equivalence<Object> equivalence);
68 abstract GenericMapMaker<K0, V0> valueEquivalence(Equivalence<Object> equivalence);
73 public abstract GenericMapMaker<K0, V0> initialCapacity(int initialCapacity);
78 abstract GenericMapMaker<K0, V0> maximumSize(int maximumSize);
83 abstract GenericMapMaker<K0, V0> strongKeys();
88 public abstract GenericMapMaker<K0, V0> concurrencyLevel(int concurrencyLevel);
94 public abstract GenericMapMaker<K0, V
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DGenericMapMaker.java30 * @param <K0> the base type for all key types of maps built by this map maker
37 public abstract class GenericMapMaker<K0, V0> {
47 public abstract GenericMapMaker<K0, V0> initialCapacity(int initialCapacity);
52 abstract GenericMapMaker<K0, V0> maximumSize(int maximumSize);
57 abstract GenericMapMaker<K0, V0> strongKeys();
62 public abstract GenericMapMaker<K0, V0> concurrencyLevel(int concurrencyLevel);
67 abstract GenericMapMaker<K0, V0> strongValues();
74 abstract GenericMapMaker<K0, V0> expiration(long duration, TimeUnit unit);
79 abstract GenericMapMaker<K0, V0> expireAfterWrite(long duration, TimeUnit unit);
89 public abstract <K extends K0,
[all...]
/external/skia/src/gpu/
H A DFlingState.cpp69 const float K0 = 5.0; local
71 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
76 float dist = (fSpeed0 - speed) / K0;
/external/elfutils/lib/
H A Dsha1.c208 #define K0 0x5a827999 macro
261 e = CYCLIC (a, 5) + FF (b, c, d) + e + W (i) + K0; \
301 OP (16, FF, E, A, B, C, D, K0);
302 OP (17, FF, D, E, A, B, C, K0);
303 OP (18, FF, C, D, E, A, B, K0);
304 OP (19, FF, B, C, D, E, A, K0);
/external/skia/src/views/
H A DSkTouchGesture.cpp69 const float K0 = 5; local
71 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
76 float dist = (fSpeed0 - speed) / K0;
/external/llvm/lib/Target/Mips/
H A DMipsRegisterInfo.cpp84 Mips::ZERO, Mips::AT, Mips::K0, Mips::K1, Mips::SP
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsBaseInfo.h189 case Mips::K0: case Mips::K0_64: case Mips::F26: case Mips::D26_64:
/external/dropbear/libtomcrypt/src/ciphers/
H A Danubis.c903 ulong32 v, K0, K1, K2, K3; local
947 K0 = T4[(kappa[N - 1] >> 24) & 0xff];
952 K0 = T4[(kappa[i] >> 24) & 0xff] ^
953 (T5[(K0 >> 24) & 0xff] & 0xff000000U) ^
954 (T5[(K0 >> 16) & 0xff] & 0x00ff0000U) ^
955 (T5[(K0 >> 8) & 0xff] & 0x0000ff00U) ^
956 (T5[(K0 ) & 0xff] & 0x000000ffU);
975 K0 = K1 = K2 = K3 = 0;
977 K0 ^= U[i][(kappa[i] >> 24) & 0xff];
983 skey->anubis.roundKeyEnc[r][0] = K0;
[all...]
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp331 .Case("k0", Mips::K0)

Completed in 1356 milliseconds