HomeSort by relevance Sort by last modified time
    Searched refs:k2 (Results 1 - 25 of 375) 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
  /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 Int k0, k1, k2, k3, k4, k5, k6, k7; local
476 Int k0, k1, k2, k3, k4, k5, k6, k7; local
655 Int k0, k1, k2, k3, k4, k5, k6, k7; local
866 Int k0, k1, k2, k3, k4, k5, k6, k7; local
1053 Int k0, k1, k2, k3, k4, k5, k6, k7; local
    [all...]
  /external/guava/guava/src/com/google/common/hash/
Murmur3_128HashFunction.java 95 long k2 = bb.getLong(); local
96 bmix64(k1, k2);
100 private void bmix64(long k1, long k2) {
107 h2 ^= mixK2(k2);
116 long k2 = 0; local
120 k2 ^= (long) toInt(bb.get(14)) << 48; // fall through
122 k2 ^= (long) toInt(bb.get(13)) << 40; // fall through
124 k2 ^= (long) toInt(bb.get(12)) << 32; // fall through
126 k2 ^= (long) toInt(bb.get(11)) << 24; // fall through
128 k2 ^= (long) toInt(bb.get(10)) << 16; // fall throug
    [all...]
  /external/llvm/test/MC/X86/
avx512bw-encoding.s 111 // CHECK: vptestmw %zmm19, %zmm29, %k4 {%k2}
113 vptestmw %zmm19, %zmm29, %k4 {%k2}
139 // CHECK: vptestnmb %zmm23, %zmm24, %k2
141 vptestnmb %zmm23, %zmm24, %k2
143 // CHECK: vptestnmb %zmm23, %zmm24, %k2 {%k7}
145 vptestnmb %zmm23, %zmm24, %k2 {%k7}
147 // CHECK: vptestnmb (%rcx), %zmm24, %k2
149 vptestnmb (%rcx), %zmm24, %k2
151 // CHECK: vptestnmb 291(%rax,%r14,8), %zmm24, %k2
153 vptestnmb 291(%rax,%r14,8), %zmm24, %k2
    [all...]
intel-syntax-avx512.s 35 // CHECK: vcmppd k2 , zmm12, zmm26, 171
37 vcmppd k2,zmm12,zmm26,0xab
39 // CHECK: vcmppd k2 {k3}, zmm12, zmm26, 171
41 vcmppd k2{k3},zmm12,zmm26,0xab
43 // CHECK: vcmppd k2 , zmm12, zmm26,{sae}, 171
45 vcmppd k2,zmm12,zmm26,{sae},0xab
47 // CHECK: vcmppd k2 , zmm12, zmm26, 123
49 vcmppd k2 ,zmm12,zmm26,0x7b
51 // CHECK: vcmppd k2 , zmm12, zmm26,{sae}, 123
53 vcmppd k2,zmm12,zmm26,{sae},0x7
    [all...]
  /external/webrtc/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/skia/include/effects/
SkArithmeticMode.h 19 * result = clamp[k1 * src * dst + k2 * src + k3 * dst + k4]
21 * k1=k2=k3=0, k4=1.0 results in returning opaque white
22 * k1=k3=k4=0, k2=1.0 results in returning the src
23 * k1=k2=k4=0, k3=1.0 results in returning the dst
25 static SkXfermode* Create(SkScalar k1, SkScalar k2,
  /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/skia/src/effects/
SkArithmeticMode_gpu.h 34 static const GrFragmentProcessor* Create(float k1, float k2, float k3, float k4,
36 return new GrArithmeticFP(k1, k2, k3, k4, enforcePMColor, dst);
45 str.appendf("K1: %.2f K2: %.2f K3: %.2f K4: %.2f", fK1, fK2, fK3, fK4);
50 float k2() const { return fK2; } function in class:GrArithmeticFP
64 GrArithmeticFP(float k1, float k2, float k3, float k4, bool enforcePMColor,
80 static GrXPFactory* Create(float k1, float k2, float k3, float k4, bool enforcePMColor) {
81 return new GrArithmeticXPFactory(k1, k2, k3, k4, enforcePMColor);
88 GrArithmeticXPFactory(float k1, float k2, float k3, float k4, bool enforcePMColor);
  /external/clang/test/OpenMP/
for_simd_ast_print.cpp 64 int k1 = 0, k2 = 0; local
65 #pragma omp for simd safelen(LEN) linear(k1,k2:LEN) aligned(a:LEN) simdlen(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 for simd safelen(4) linear(k1,k2: 4) aligned(a: 4) simdlen(4)
84 // CHECK-NEXT: c[k2] = a[k2] + b[k2]
92 int k1=0,k2=0; local
    [all...]
  /external/jemalloc/include/jemalloc/internal/
hash.h 183 uint32_t k2 = hash_get_block_32(blocks, i*4 + 1); local
192 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
213 uint32_t k2 = 0; local
229 case 8: k2 ^= tail[ 7] << 24;
230 case 7: k2 ^= tail[ 6] << 16;
231 case 6: k2 ^= tail[ 5] << 8
281 uint64_t k2 = hash_get_block_64(blocks, i*2 + 1); local
299 uint64_t k2 = 0; local
    [all...]
  /external/vboot_reference/tests/
vb21_host_key_tests.c 36 struct vb2_private_key *key, *k2; local
79 TEST_EQ(vb2_private_key_read(&k2, testfile),
85 TEST_SUCC(vb2_private_key_read(&k2, testfile), "Read key good");
86 TEST_PTR_NEQ(k2, NULL, " key_ptr");
87 TEST_EQ(k2->sig_alg, key->sig_alg, " sig alg");
88 TEST_EQ(k2->hash_alg, key->hash_alg, " hash alg");
89 TEST_EQ(memcmp(&k2->guid, &key->guid, sizeof(k2->guid)), 0, " guid");
90 TEST_EQ(strcmp(k2->desc, testdesc), 0, " desc");
91 vb2_private_key_free(k2);
171 struct vb2_public_key *key, k2; local
    [all...]
vb20_rsa_padding_tests.c 26 * @param k2 Destination new key
29 void vb2_public_key_to_vb2(struct vb2_public_key *k2,
32 k2->arrsize = key->len;
33 k2->n0inv = key->n0inv;
34 k2->n = key->n;
35 k2->rr = key->rr;
36 k2->sig_alg = vb2_crypto_to_signature(key->algorithm);
37 k2->hash_alg = vb2_crypto_to_hash(key->algorithm);
127 struct vb2_public_key k2; local
145 vb2_public_key_to_vb2(&k2, key)
    [all...]
  /external/webrtc/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/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...]
  /frameworks/rs/java/tests/ScriptGroupTest/src/com/android/rs/sgtest/
shadows_f.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...]
  /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;
  /external/clang/test/CodeGenCXX/
static-data-member.cpp 99 static const int k2 = 76; member in union:test5::U
105 const int U::k2; member in class:test5::U
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
CollationKeyTest.java 22 CollationKey k2 = c.getCollationKey("this"); local
25 testEHCS(k1, k2, kn);
42 CollationKey k2 = c.getCollationKey("this"); local
45 assertTrue(0 == k1.compareTo(k2));
56 CollationKey k2 = c.getCollationKey("this"); local
57 assertTrue(0 == k1.compareTo(k2));
67 CollationKey k2 = c.getCollationKey("this"); local
68 assertTrue(k1.equals((Object)k2));

Completed in 944 milliseconds

1 2 3 4 5 6 7 8 91011>>