Home
last modified time | relevance | path

Searched defs:k1 (Results 1 – 25 of 139) sorted by relevance

123456

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
DDoubleKeyMap.cs9 public virtual TValue Put(TKey1 k1, TKey2 k2, TValue v) { in Put()
23 public virtual TValue Get(TKey1 k1, TKey2 k2) { in Get()
34 public virtual IDictionary<TKey2, TValue> Get(TKey1 k1) { in Get()
41 public virtual ICollection<TValue> Values(TKey1 k1) { in Values()
56 public virtual ICollection<TKey2> KeySet(TKey1 k1) { in KeySet()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
DDoubleKeyMap`3.cs9 public virtual TValue Put(TKey1 k1, TKey2 k2, TValue v) in Put()
27 public virtual TValue Get(TKey1 k1, TKey2 k2) in Get()
39 public virtual IDictionary<TKey2, TValue> Get(TKey1 k1) in Get()
47 public virtual ICollection<TValue> Values(TKey1 k1) in Values()
64 public virtual ICollection<TKey2> KeySet(TKey1 k1) in KeySet()
/external/guava/guava/src/com/google/common/hash/
DMurmur3_32HashFunction.java85 int k1 = mixK1(input); in hashInt() local
95 int k1 = mixK1(low); in hashLong() local
110 int k1 = input.charAt(i - 1) | (input.charAt(i) << 16); in hashString() local
117 int k1 = input.charAt(input.length() - 1); in hashString() local
125 private static int mixK1(int k1) { in mixK1()
132 private static int mixH1(int h1, int k1) { in mixH1()
162 int k1 = Murmur3_32HashFunction.mixK1(bb.getInt()); in process() local
169 int k1 = 0; in processRemaining() local
DMurmur3_128HashFunction.java94 long k1 = bb.getLong(); in process() local
100 private void bmix64(long k1, long k2) { in bmix64()
115 long k1 = 0; in processRemaining() local
188 private static long mixK1(long k1) { in mixK1()
DSipHashFunction.java44 private final long k1; field in SipHashFunction
52 SipHashFunction(int c, int d, long k0, long k1) { in SipHashFunction()
118 SipHasher(int c, int d, long k0, long k1) { in SipHasher()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
DDoubleKeyMap.java12 public Value put(Key1 k1, Key2 k2, Value v) { in put()
26 public Value get(Key1 k1, Key2 k2) { in get()
32 public Map<Key2, Value> get(Key1 k1) { return data.get(k1); } in get()
35 public Collection<Value> values(Key1 k1) { in values()
47 public Set<Key2> keySet(Key1 k1) { in keySet()
/external/guava/guava/src/com/google/common/collect/
DImmutableSortedMapFauxverideShim.java50 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of(K k1, V v1) { in of()
64 K k1, V v1, K k2, V v2) { in of()
79 K k1, V v1, K k2, V v2, K k3, V v3) { in of()
94 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of()
109 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) { in of()
DImmutableBiMap.java56 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) { in of()
65 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) { in of()
75 K k1, V v1, K k2, V v2, K k3, V v3) { in of()
85 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of()
96 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) { in of()
DImmutableListMultimap.java70 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) { in of()
80 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) { in of()
92 K k1, V v1, K k2, V v2, K k3, V v3) { in of()
105 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of()
119 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) { in of()
DImmutableMap.java79 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) { in of()
88 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) { in of()
98 K k1, V v1, K k2, V v2, K k3, V v3) { in of()
109 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of()
120 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) { in of()
/external/clang/test/CodeGenCXX/
Dvtable-layout-extreme.cpp27 int k1; member in Test1::C3
64 int k1; member in Test1::C7
75 int k1; member in Test1::C8
203 int k1; member in Test1::C9
/external/clang/test/CXX/class/class.union/
Dp2-0x.cpp6 static constexpr int k1 = 0; member
14 constexpr int U1::k1; member in U1
23 static const int k1; member
27 template<typename T> constexpr int U2<T>::k1 = sizeof(U2<T>); member in U2<T>
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DBiMapPutTester.java38 K k1 = samples.e1.getKey(); in testPutWithSameValueFails() local
79 K k1 = samples.e1.getKey(); in testForcePutOverwritesOldValueEntry() local
93 K k1 = samples.e1.getKey(); in testInversePut() local
/external/jemalloc/include/jemalloc/internal/
Dhash.h105 uint32_t k1 = hash_get_block_32(blocks, i); in hash_x86_32() local
121 uint32_t k1 = 0; in hash_x86_32() local
162 uint32_t k1 = hash_get_block_32(blocks, i*4 + 0); in hash_x86_128() local
192 uint32_t k1 = 0; in hash_x86_128() local
260 uint64_t k1 = hash_get_block_64(blocks, i*2 + 0); in hash_x64_128() local
278 uint64_t k1 = 0; in hash_x64_128() local
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DImmutableBiMap.java37 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) { in of()
42 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) { in of()
47 K k1, V v1, K k2, V v2, K k3, V v3) { in of()
53 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of()
59 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) { in of()
DImmutableListMultimap.java65 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) { in of()
75 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) { in of()
87 K k1, V v1, K k2, V v2, K k3, V v3) { in of()
100 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of()
114 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) { in of()
DImmutableMap.java51 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) { in of()
55 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) { in of()
60 K k1, V v1, K k2, V v2, K k3, V v3) { in of()
66 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of()
72 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) { in of()
DImmutableSetMultimap.java73 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1) { in of()
84 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) { in of()
97 K k1, V v1, K k2, V v2, K k3, V v3) { in of()
111 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of()
126 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) { in of()
/external/skia/src/effects/
DSkArithmeticMode.cpp22 static SkArithmeticMode_scalar* Create(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, in Create()
40 … SkArithmeticMode_scalar(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, bool enforcePMColor) { in SkArithmeticMode_scalar()
64 const SkScalar k1 = buffer.readScalar(); in CreateProc() local
81 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, in arith()
101 SkScalar k1 = fK[0] / 255; in xfer32() local
207 SkXfermode* SkArithmeticMode::Create(SkScalar k1, SkScalar k2, in Create()
DSkArithmeticMode_gpu.cpp104 GrArithmeticFP::GrArithmeticFP(float k1, float k2, float k3, float k4, in GrArithmeticFP()
146 float k1 = rand->nextF(); in TestCreate() local
163 static GrXferProcessor* Create(float k1, float k2, float k3, float k4, bool enforcePMColor, in Create()
178 float k1() const { return fK1; } in k1() function in ArithmeticXP
265 ArithmeticXP::ArithmeticXP(float k1, float k2, float k3, float k4, bool enforcePMColor, in ArithmeticXP()
294 GrArithmeticXPFactory::GrArithmeticXPFactory(float k1, float k2, float k3, float k4, in GrArithmeticXPFactory()
327 float k1 = random->nextF(); in TestCreate() local
DSkArithmeticMode_gpu.h34 static GrFragmentProcessor* Create(float k1, float k2, float k3, float k4, bool enforcePMColor, in Create()
47 float k1() const { return fK1; } in k1() function
76 static GrXPFactory* Create(float k1, float k2, float k3, float k4, bool enforcePMColor) { in Create()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
DX9FieldID.java44 public X9FieldID(int m, int k1) in X9FieldID()
64 public X9FieldID(int m, int k1, int k2, int k3) in X9FieldID()
/external/fio/crc/
Dmurmur3.c28 uint32_t k1 = 0; in murmur3_tail() local
56 uint32_t k1 = blocks[i]; in murmurhash3() local
/external/webrtc/src/modules/audio_processing/aec/
Daec_rdft.c47 int j, j1, k, k1, m, m2; in bitrv2_32or128() local
148 int k1; in makewt_32() local
212 int j, k1, k2; in cft1st_128_C() local
318 int j0, j1, j2, j3, k, k1, k2, m2; in cftmdl_128_C() local
504 int j1, j2, k1, k2; in rftfsub_128_C() local
525 int j1, j2, k1, k2; in rftbsub_128_C() local
/external/openssh/
Dcipher-3des1.c45 EVP_CIPHER_CTX k1, k2, k3; member
56 u_char *k1, *k2, *k3; in ssh1_3des_init() local

123456