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

1 2 3 4 5 6 7 8 910

  /external/guava/guava/src/com/google/common/hash/
Murmur3_32HashFunction.java 56 int k1 = bb.getInt(); local
59 k1 *= c1;
60 k1 = Integer.rotateLeft(k1, 15);
61 k1 *= c2;
63 h1 ^= k1;
70 int k1 = 0; local
73 k1 ^= toInt(bb.get(2)) << 16;
76 k1 ^= toInt(bb.get(1)) << 8;
79 k1 ^= toInt(bb.get(0))
    [all...]
Murmur3_128HashFunction.java 60 long k1 = bb.getLong(); local
63 bmix64(k1, k2);
66 private void bmix64(long k1, long k2) {
67 k1 *= c1;
68 k1 = Long.rotateLeft(k1, 31);
69 k1 *= c2;
70 h1 ^= k1;
87 long k1 = 0; local
111 k1 ^= (long) toInt(bb.get(7)) << 56; // fall throug
    [all...]
  /external/clang/test/CXX/class/class.union/
p2-0x.cpp 6 static constexpr int k1 = 0; member in union:U1
7 static const int k2 = k1;
11 int n[k1 + 3];
14 constexpr int U1::k1; member in class:U1
23 static const int k1; member in union:U2
27 template<typename T> constexpr int U2<T>::k1 = sizeof(U2<T>); member in class:U2
30 static_assert(U2<int>::k1 == sizeof(int), "");
31 static_assert(U2<char>::k1 == sizeof(char), "");
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDoubleKeyMap.h 18 - (id) setObject:(id)v forKey1:(id)k1 forKey2:(NSString *)k2;
19 - (id) objectForKey1:(id)k1 forKey2:(id)k2;
20 - (AMutableDictionary *) objectForKey:(id)k1;
21 - (NSArray *) valuesForKey:(id)k1;
23 - (AMutableArray *) allKeys2:(id)k1;
  /external/chromium_org/third_party/angle/src/third_party/murmurhash/
MurmurHash3.cpp 112 uint32_t k1 = getblock(blocks,i); local
114 k1 *= c1;
115 k1 = ROTL32(k1,15);
116 k1 *= c2;
118 h1 ^= k1;
128 uint32_t k1 = 0; local
132 case 3: k1 ^= tail[2] << 16;
133 case 2: k1 ^= tail[1] << 8;
134 case 1: k1 ^= tail[0]
173 uint32_t k1 = getblock(blocks,i*4+0); local
200 uint32_t k1 = 0; local
274 uint64_t k1 = getblock(blocks,i*2+0); local
291 uint64_t k1 = 0; local
    [all...]
  /external/chromium_org/third_party/smhasher/src/
MurmurHash3.cpp 112 uint32_t k1 = getblock32(blocks,i); local
114 k1 *= c1;
115 k1 = ROTL32(k1,15);
116 k1 *= c2;
118 h1 ^= k1;
128 uint32_t k1 = 0; local
132 case 3: k1 ^= tail[2] << 16;
133 case 2: k1 ^= tail[1] << 8;
134 case 1: k1 ^= tail[0]
173 uint32_t k1 = getblock32(blocks,i*4+0); local
200 uint32_t k1 = 0; local
274 uint64_t k1 = getblock64(blocks,i*2+0); local
291 uint64_t k1 = 0; local
    [all...]
PMurHash.c 150 #define DOBLOCK(h1, k1) do{ \
151 k1 *= C1; \
152 k1 = ROTL32(k1,15); \
153 k1 *= C2; \
155 h1 ^= k1; \
201 uint32_t k1 = READ_UINT32(ptr); local
202 DOBLOCK(h1, k1);
219 uint32_t k1 = READ_UINT32(ptr); local
220 DOBLOCK(h1, k1);
225 uint32_t k1 = c>>24; local
233 uint32_t k1 = c>>16; local
241 uint32_t k1 = c>>8; local
265 uint32_t k1; local
    [all...]
  /external/jemalloc/include/jemalloc/internal/
hash.h 104 uint32_t k1 = hash_get_block_32(blocks, i); local
106 k1 *= c1;
107 k1 = hash_rotl_32(k1, 15);
108 k1 *= c2;
110 h1 ^= k1;
120 uint32_t k1 = 0; local
123 case 3: k1 ^= tail[2] << 16;
124 case 2: k1 ^= tail[1] << 8;
125 case 1: k1 ^= tail[0]; k1 *= c1; k1 = hash_rotl_32(k1, 15)
161 uint32_t k1 = hash_get_block_32(blocks, i*4 + 0); local
191 uint32_t k1 = 0; local
259 uint64_t k1 = hash_get_block_64(blocks, i*2 + 0); local
277 uint64_t k1 = 0; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
DoubleKeyMap.java 12 public Value put(Key1 k1, Key2 k2, Value v) {
13 Map<Key2, Value> data2 = data.get(k1);
17 data.put(k1, data2);
26 public Value get(Key1 k1, Key2 k2) {
27 Map<Key2, Value> data2 = data.get(k1);
32 public Map<Key2, Value> get(Key1 k1) { return data.get(k1); }
35 public Collection<Value> values(Key1 k1) {
36 Map<Key2, Value> data2 = data.get(k1);
47 public Set<Key2> keySet(Key1 k1) {
    [all...]
  /external/openssl/crypto/des/
rpw.c 64 DES_cblock k,k1; local
78 if ((i=des_read_2passwords(&k,&k1,
87 printf("%02x ",k1[i]);
ofb64ede.c 67 DES_key_schedule *k1, DES_key_schedule *k2,
94 DES_encrypt3(ti,k1,k2,k3);
120 register unsigned char *out, long length, DES_key_schedule k1,
123 DES_ede3_ofb64_encrypt(in, out, length, k1,k2,k1, ivec, num);
  /external/chromium_org/third_party/skia/include/effects/
SkArithmeticMode.h 19 * result = clamp[k1 * src * dst + k2 * src + k3 * dst + k4]
24 * k1=k2=k3=0, k4=1.0 results in returning opaque white
25 * k1=k3=k4=0, k2=1.0 results in returning the src
26 * k1=k2=k4=0, k3=1.0 results in returning the dst
28 static SkXfermode* Create(SkScalar k1, SkScalar k2,
  /external/clang/test/CodeGenCXX/
vtable-layout-extreme.cpp 27 int k1; member in class:Test1::C3
64 int k1; member in class:Test1::C7
75 int k1; member in class:Test1::C8
203 int k1; member in class:Test1::C9
static-data-member.cpp 92 static const int k1; member in union:test5::U
98 const int U::k1 = (k0 = 9, 42); member in class:test5::U
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FECompositeArithmeticNEON.h 39 unsigned pixelArrayLength, float k1, float k2, float k3, float k4)
41 float32x4_t k1x4 = vdupq_n_f32(k1 / 255);
76 unsigned pixelArrayLength, float k1, float k2, float k3, float k4)
79 if (!k1) {
80 computeArithmeticPixelsNeon<0, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
84 computeArithmeticPixelsNeon<1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
88 if (!k1) {
89 computeArithmeticPixelsNeon<0, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
92 computeArithmeticPixelsNeon<1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
  /external/clang/test/OpenMP/
simd_ast_print.cpp 64 int k1 = 0, k2 = 0; local
65 #pragma omp simd safelen(LEN) linear(k1,k2:LEN) aligned(a:LEN)
68 c[k1] = a[k1] + b[k1];
70 k1 = k1 + LEN;
79 // CHECK-NEXT: int k1 = 0, k2 = 0;
80 // CHECK-NEXT: #pragma omp simd safelen(4) linear(k1,k2: 4) aligned(a: 4)
83 // CHECK-NEXT: c[k1] = a[k1] + b[k1]
92 int k1=0,k2=0; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
abs_quant_loop.c 26 int n, k1, k2; local
41 for(k1=0;k1<2;k1++) {
42 for(k2=0;k2<quantLen[k1];k2++){
  /external/guava/guava/src/com/google/common/collect/
ImmutableSortedMapFauxverideShim.java 53 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of(K k1, V v1) {
67 K k1, V v1, K k2, V v2) {
82 K k1, V v1, K k2, V v2, K k3, V v3) {
97 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
112 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
fft.c 74 int16_t k0, k1, k2, k3, k4, kk; local
99 k1 = k0 + 60;
100 k2 = k1 + 60;
105 ajpQx = RexQx[k1] + RexQx[k3];
106 ajmQx = RexQx[k1] - RexQx[k3];
109 bjpQx = ImxQx[k1] + ImxQx[k3];
110 bjmQx = ImxQx[k1] - ImxQx[k3];
141 // RexQ16[k1] = akpQ16 * ccc1Q14 - bkpQ16 * sss1Q14;
144 // ImxQ16[k1] = akpQ16 * sss1Q14 + bkpQ16 * ccc1Q14;
148 RexQx[k1] = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(ccc1Q14, akpQx, 14)
    [all...]
  /external/chromium_org/third_party/webrtc/common_audio/resampler/
sinc_resampler_neon.cc 20 float SincResampler::Convolve_NEON(const float* input_ptr, const float* k1,
31 m_sums1 = vmlaq_f32(m_sums1, m_input, vld1q_f32(k1));
32 k1 += 4;
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
ZeroPole.cpp 45 const float k1 = 1 / (1 - zero); local
56 float output1 = k1 * (input - zero * lastX);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEComposite.cpp 42 FEComposite::FEComposite(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4)
45 , m_k1(k1)
52 PassRefPtr<FEComposite> FEComposite::create(Filter* filter, const CompositeOperationType& type, float k1, float k2, float k3, float k4)
54 return adoptRef(new FEComposite(filter, type, k1, k2, k3, k4));
70 float FEComposite::k1() const function in class:blink::FEComposite
75 bool FEComposite::setK1(float k1)
77 if (m_k1 == k1)
79 m_k1 = k1;
132 float k1, float k2, float k3, float k4)
137 scaledK1 = k1 / 255.0f
    [all...]
FEComposite.h 49 float k1() const;
80 float k1, float k2, float k3, float k4);
83 unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
85 unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
  /external/clang/test/Lexer/
cxx1y_binary_literal.cpp 15 int k1 = 0b1234; // expected-error {{invalid digit '2' in binary constant}} variable
  /external/openssl/crypto/des/t/
test 20 ($k1,$k2)=DES::string_to_2keys($str);
21 @a=split(//,$k1);

Completed in 1791 milliseconds

1 2 3 4 5 6 7 8 910