Searched refs:k2 (Results 1 - 25 of 209) sorted by relevance

123456789

/external/clang/test/CXX/class/class.union/
H A Dp2-0x.cpp7 static const int k2 = k1; member in union:U1
8 static int k3 = k2; // expected-error {{non-const static data member must be initialized out of line}}
9 static constexpr double k4 = k2;
15 constexpr int U1::k2; member in class:U1
24 static double k2; member in union:U2
28 template<typename T> double U2<T>::k2 = 5.3; member in class:U2
/external/guava/guava/src/com/google/common/hash/
H A DMurmur3_128HashFunction.java61 long k2 = bb.getLong();
63 bmix64(k1, k2);
66 private void bmix64(long k1, long k2) { argument
76 k2 *= c2;
77 k2 = Long.rotateLeft(k2, 33);
78 k2 *= c1;
79 h2 ^= k2;
88 long k2 = 0;
92 k2
[all...]
/external/chromium_org/third_party/angle/src/third_party/murmurhash/
H A DMurmurHash3.cpp174 uint32_t k2 = getblock(blocks,i*4+1); local
182 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
201 uint32_t k2 = 0; local
218 case 8: k2 ^= tail[ 7] << 24;
219 case 7: k2 ^= tail[ 6] << 16;
220 case 6: k2
275 uint64_t k2 = getblock(blocks,i*2+1); local
292 uint64_t k2 = 0; local
[all...]
/external/chromium_org/third_party/smhasher/src/
H A DMurmurHash3.cpp174 uint32_t k2 = getblock32(blocks,i*4+1); local
182 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
201 uint32_t k2 = 0; local
218 case 8: k2 ^= tail[ 7] << 24;
219 case 7: k2 ^= tail[ 6] << 16;
220 case 6: k2
275 uint64_t k2 = getblock64(blocks,i*2+1); local
292 uint64_t k2 = 0; local
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Dhash.h162 uint32_t k2 = hash_get_block_32(blocks, i*4 + 1); local
171 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
192 uint32_t k2 = 0; local
208 case 8: k2 ^= tail[ 7] << 24;
209 case 7: k2 ^= tail[ 6] << 16;
210 case 6: k2
260 uint64_t k2 = hash_get_block_64(blocks, i*2 + 1); local
278 uint64_t k2 = 0; local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dfft.c276 int j, jc, jf, jj, k, k1, k2, k3, k4, kk, kt, nn, ns, nt; local
440 k2 = kk + kspan;
441 ak = Re [k2];
442 bk = Im [k2];
443 Re [k2] = Re [kk] - ak;
444 Im [k2] = Im [kk] - bk;
447 kk = k2 + kspan;
459 k2 = kk + kspan;
460 ak = Re [kk] - Re [k2];
461 bk = Im [kk] - Im [k2];
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dfft.c276 int j, jc, jf, jj, k, k1, k2, k3, k4, kk, kt, nn, ns, nt; local
444 k2 = kk + kspan;
445 ak = Re [k2];
446 bk = Im [k2];
447 Re [k2] = Re [kk] - ak;
448 Im [k2] = Im [kk] - bk;
451 kk = k2 + kspan;
463 k2 = kk + kspan;
464 ak = Re [kk] - Re [k2];
465 bk = Im [kk] - Im [k2];
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dmath-partial-sums.js9 var k2 = k3 = sk = ck = 0.0;
12 k2 = k*k;
13 k3 = k2*k;
24 a7 += 1.0/k2;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dmath-partial-sums.js9 var k2 = k3 = sk = ck = 0.0;
12 k2 = k*k;
13 k3 = k2*k;
24 a7 += 1.0/k2;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dmath-partial-sums.js9 var k2 = k3 = sk = ck = 0.0;
12 k2 = k*k;
13 k3 = k2*k;
24 a7 += 1.0/k2;
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dauthor_first_release.sh15 done | sort -k2 | uniq -f2
/external/libvpx/libvpx/tools/
H A Dauthor_first_release.sh15 done | sort -k2 | uniq -f2
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DDoubleKeyMap.cs9 public virtual TValue Put(TKey1 k1, TKey2 k2, TValue v) { argument
17 data2.TryGetValue(k2, out prev);
19 data2[k2] = v;
23 public virtual TValue Get(TKey1 k1, TKey2 k2) { argument
30 data2.TryGetValue(k2, out value);
67 foreach (IDictionary<TKey2, TValue> k2 in data.Values) {
68 foreach (TValue v in k2.Values) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
H A DDoubleKeyMap`3.cs9 public virtual TValue Put(TKey1 k1, TKey2 k2, TValue v) argument
21 data2.TryGetValue(k2, out prev);
23 data2[k2]= v;
27 public virtual TValue Get(TKey1 k1, TKey2 k2) argument
35 data2.TryGetValue(k2, out value);
77 foreach (IDictionary<TKey2, TValue> k2 in data.Values)
79 foreach (TValue v in k2.Values)
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DDoubleKeyMap.java12 public Value put(Key1 k1, Key2 k2, Value v) { argument
20 prev = data2.get(k2);
22 data2.put(k2, v);
26 public Value get(Key1 k1, Key2 k2) { argument
29 return data2.get(k2);
55 for (Map<Key2, Value> k2 : data.values()) {
56 for (Value v : k2.values()) {
/external/clang/test/OpenMP/
H A Dsimd_ast_print.cpp64 int k1 = 0, k2 = 0; local
65 #pragma omp simd safelen(LEN) linear(k1,k2:LEN) aligned(a:LEN)
69 c[k2] = a[k2] + b[k2];
71 k2 = k2 + LEN;
79 // CHECK-NEXT: int k1 = 0, k2 = 0;
80 // CHECK-NEXT: #pragma omp simd safelen(4) linear(k1,k2: 4) aligned(a: 4)
84 // CHECK-NEXT: c[k2]
92 int k1=0,k2=0; local
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfft.c74 int16_t k0, k1, k2, k3, k4, kk; local
100 k2 = k1 + 60;
101 k3 = k2 + 60;
103 akpQx = RexQx[k0] + RexQx[k2];
104 akmQx = RexQx[k0] - RexQx[k2];
107 bkpQx = ImxQx[k0] + ImxQx[k2];
108 bkmQx = ImxQx[k0] - ImxQx[k2];
142 // RexQ16[k2] = ajpQ16 * ccc2Q14 - bjpQ16 * sss2Q14;
145 // ImxQ16[k2] = ajpQ16 * sss2Q14 + bjpQ16 * ccc2Q14;
150 RexQx[k2]
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dfft.c74 WebRtc_Word16 k0, k1, k2, k3, k4, kk; local
100 k2 = k1 + 60;
101 k3 = k2 + 60;
103 akpQx = RexQx[k0] + RexQx[k2];
104 akmQx = RexQx[k0] - RexQx[k2];
107 bkpQx = ImxQx[k0] + ImxQx[k2];
108 bkmQx = ImxQx[k0] - ImxQx[k2];
142 // RexQ16[k2] = ajpQ16 * ccc2Q14 - bjpQ16 * sss2Q14;
145 // ImxQ16[k2] = ajpQ16 * sss2Q14 + bjpQ16 * ccc2Q14;
150 RexQx[k2]
[all...]
/external/chromium_org/third_party/webrtc/common_audio/resampler/
H A Dsinc_resampler_neon.cc21 const float* k2,
33 m_sums2 = vmlaq_f32(m_sums2, m_input, vld1q_f32(k2));
34 k2 += 4;
20 Convolve_NEON(const float* input_ptr, const float* k1, const float* k2, double kernel_interpolation_factor) argument
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRDoubleKeyMap.h18 - (id) setObject:(id)v forKey1:(id)k1 forKey2:(NSString *)k2;
19 - (id) objectForKey1:(id)k1 forKey2:(id)k2;
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DZeroPole.cpp46 const float k2 = 1 - pole; local
60 float output2 = k2 * output1 + pole * lastY;
/external/clang/test/CodeGenCXX/
H A Dstatic-data-member.cpp93 static const int k2 = 76; member in union:test5::U
99 const int U::k2; member in class:test5::U
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEComposite.h52 float k2() 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/chromium_org/third_party/skia/include/effects/
H A DSkArithmeticMode.h19 * 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/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dabs_quant_loop.c26 int n, k1, k2; local
42 for(k2=0;k2<quantLen[k1];k2++){

Completed in 864 milliseconds

123456789