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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/class/class.union/
p2-0x.cpp 7 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/
Murmur3_128HashFunction.java 61 long k2 = bb.getLong(); local
63 bmix64(k1, k2);
66 private void bmix64(long k1, long k2) {
76 k2 *= c2;
77 k2 = Long.rotateLeft(k2, 33);
78 k2 *= c1;
79 h2 ^= k2;
88 long k2 = 0; local
92 k2 ^= (long) toInt(bb.get(14)) << 48; // fall throug
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct.cpp 41 Int k0, k1, k2, k3, k4, k5, k6, k7; local
65 k2 = mask & (tmp >> 7);
66 k1 = k2 - (k1 << 1);
67 k2 = (tmp2 >> 16) & 0xFF;
69 k2 = k3 - (k2 << 1);
95 k2 = k2 + k5;
96 k5 = k2 - (k5 << 1);
102 k1 = k1 + k2;
270 register Int k0, k1, k2, k3, k4, k5, k6, k7; local
476 register Int k0, k1, k2, k3, k4, k5, k6, k7; local
655 Int k0, k1, k2, k3, k4, k5, k6, k7; local
866 register Int k0, k1, k2, k3, k4, k5, k6, k7; local
1053 register Int k0, k1, k2, k3, k4, k5, k6, k7; local
    [all...]
  /external/chromium_org/third_party/angle/src/third_party/murmurhash/
MurmurHash3.cpp 174 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 ^= tail[ 5] << 8
275 uint64_t k2 = getblock(blocks,i*2+1); local
292 uint64_t k2 = 0; local
    [all...]
  /external/chromium_org/third_party/smhasher/src/
MurmurHash3.cpp 174 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 ^= tail[ 5] << 8
275 uint64_t k2 = getblock64(blocks,i*2+1); local
292 uint64_t k2 = 0; local
    [all...]
  /external/jemalloc/include/jemalloc/internal/
hash.h 162 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 ^= tail[ 5] << 8
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/
fft.c 276 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/
fft.c 276 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/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/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/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
math-partial-sums.js 9 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/
math-partial-sums.js 9 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/
math-partial-sums.js 9 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/
author_first_release.sh 15 done | sort -k2 | uniq -f2
  /external/libvpx/libvpx/tools/
author_first_release.sh 15 done | sort -k2 | uniq -f2
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
author_first_release.sh 15 done | sort -k2 | uniq -f2
  /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) {
20 prev = data2.get(k2);
22 data2.put(k2, v);
26 public Value get(Key1 k1, Key2 k2) {
29 return data2.get(k2);
55 for (Map<Key2, Value> k2 : data.values()) {
56 for (Value v : k2.values()) {
  /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)
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] = a[k2] + b[k2]
92 int k1=0,k2=0; local
    [all...]
  /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
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] = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(ccc2Q14, ajpQx, 14)
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
fft.c 74 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] = (WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(ccc2Q14, ajpQx, 14)
    [all...]
  /external/chromium_org/third_party/webrtc/common_audio/resampler/
sinc_resampler_neon.cc 21 const float* k2,
33 m_sums2 = vmlaq_f32(m_sums2, m_input, vld1q_f32(k2));
34 k2 += 4;
  /packages/apps/Gallery2/jni/filters/
hsv.c 40 int k2=HSCALE << ABITS; local
70 rh = (short)( (k2*(6*chroma+gi - bi))/(6*chroma));
71 if (rh >= k2) rh -= k2;
73 rh = (short)( (k2*(2*chroma+bi - ri ))/(6*chroma));
75 rh = (short)( (k2*(4*chroma+ri - gi ))/(6*chroma));
89 int k2=HSCALE<<ABITS; local
111 H = (6*ih)/k2;
112 X = ((iv*is)/k2)*(k2- abs(6*ih- 2*(H>>1)*k2 - k2))
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
shadows.rs 37 static const int k2=HSCALE << ABITS;
83 rh = (short)( (k2*(6*chroma+gi - bi))/(6*chroma));
84 if (rh >= k2) rh -= k2;
86 rh = (short)( (k2*(2*chroma+bi - ri ))/(6*chroma));
88 rh = (short)( (k2*(4*chroma+ri - gi ))/(6*chroma));
105 int k2=HSCALE<<ABITS;
127 H = (6*ih)/k2;
128 X = ((iv*is)/k2)*(k2- abs(6*ih- 2*(H>>1)*k2 - k2))
    [all...]
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
shadows.rs 37 static const int k2=HSCALE << ABITS;
83 rh = (short)( (k2*(6*chroma+gi - bi))/(6*chroma));
84 if (rh >= k2) rh -= k2;
86 rh = (short)( (k2*(2*chroma+bi - ri ))/(6*chroma));
88 rh = (short)( (k2*(4*chroma+ri - gi ))/(6*chroma));
105 int k2=HSCALE<<ABITS;
127 H = (6*ih)/k2;
128 X = ((iv*is)/k2)*(k2- abs(6*ih- 2*(H>>1)*k2 - k2))
    [all...]
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
shadows.rs 37 static const int k2=HSCALE << ABITS;
83 rh = (short)( (k2*(6*chroma+gi - bi))/(6*chroma));
84 if (rh >= k2) rh -= k2;
86 rh = (short)( (k2*(2*chroma+bi - ri ))/(6*chroma));
88 rh = (short)( (k2*(4*chroma+ri - gi ))/(6*chroma));
105 int k2=HSCALE<<ABITS;
127 H = (6*ih)/k2;
128 X = ((iv*is)/k2)*(k2- abs(6*ih- 2*(H>>1)*k2 - k2))
    [all...]

Completed in 1688 milliseconds

1 2 3 4 5 6 7 8 91011>>