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

1 2 3 4 5 6 7

  /external/clang/test/Lexer/
cxx1y_binary_literal.cpp 18 int k2 = 0b10010f; // expected-error {{invalid digit 'f' in binary constant}} variable
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p17.cpp 13 void k2() { function
  /external/chromium_org/chrome/app/
chrome_exe_main_win.cc 29 unsigned short k2 = ::GetAsyncKeyState(VK_MENU); local
31 if ((k1 & kPressedMask) && (k2 & kPressedMask))
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
ZeroPole.cpp 46 const float k2 = 1 - pole; local
60 float output2 = k2 * output1 + pole * lastY;
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
stack_trace_table_test.cc 60 static const uintptr_t k2[] = {1, 1024, 2, 1, 2, 0}; local
61 CheckTracesAndReset(&table, k2, ARRAYSIZE(k2));
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
stack_trace_table_test.cc 60 static const uintptr_t k2[] = {1, 1024, 2, 1, 2, 0}; local
61 CheckTracesAndReset(&table, k2, ARRAYSIZE(k2));
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
abs_quant_loop.c 26 int n, k1, k2; local
42 for(k2=0;k2<quantLen[k1];k2++){
  /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/clang/test/CXX/expr/expr.ass/
p9-cxx11.cpp 34 int k2 = T() = { 1, 2 } + 1; // expected-error {{initializer list cannot be used on the left hand side of operator '+'}} variable
  /external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
p3-0x.cpp 16 float &k2 = g2(f1()); member in namespace:std_example
  /external/clang/test/CodeGenCXX/
vtable-layout-extreme.cpp 28 int k2; member in class:Test1::C3
204 int k2; member in class:Test1::C9
static-data-member.cpp 93 static const int k2 = 76; member in union:test5::U
99 const int U::k2; member in class:test5::U
  /external/clang/test/Modules/
template-specialization-visibility.cpp 12 int k2 = explicit_inst_class_template.n; variable
  /external/clang/test/PCH/
cxx11-enum-template.cpp 22 int k2 = (int)decltype(b)::e; member in struct:S
  /external/compiler-rt/test/dfsan/
propagate.c 25 int k2 = 4; local
26 dfsan_set_label(k_label, &k2, sizeof(k2));
41 assert(dfsan_get_label(k + k2) == k_label);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFECompositeElement.h 39 SVGAnimatedNumber* k2() { return m_k2.get(); } function in class:blink::FINAL
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
p2.cpp 75 int k2 = inline_ns::x + inline_ns::y; // expected-error 2{{ambiguous}} member in namespace:inline_ns
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9Curve.java 67 int k2 = 0; local
80 k2 = ASN1Integer.getInstance(pentanomial.getObjectAt(1)).getValue().intValue();
87 X9FieldElement x9A = new X9FieldElement(m, k1, k2, k3, (ASN1OctetString)seq.getObjectAt(0));
88 X9FieldElement x9B = new X9FieldElement(m, k1, k2, k3, (ASN1OctetString)seq.getObjectAt(1));
90 curve = new ECCurve.F2m(m, k1, k2, k3, x9A.getValue().toBigInteger(), x9B.getValue().toBigInteger());
  /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/
DifferentialTest.h 104 void DiffTestRecurse ( pfHash hash, keytype & k1, keytype & k2, hashtype & h1, hashtype & h2, int start, int bitsleft, std::vector<keytype> & diffs )
110 flipbit(&k2,sizeof(k2),i);
113 hash(&k2,sizeof(k2),0,&h2);
117 diffs.push_back(k1 ^ k2);
122 DiffTestRecurse(hash,k1,k2,h1,h2,i+1,bitsleft,diffs);
125 flipbit(&k2,sizeof(k2),i);
146 keytype k1,k2; local
222 keytype k2 = keys[i] ^ d; local
    [all...]
  /external/clang/test/SemaCXX/
dr1301.cpp 67 int k2 = K().j.f(); // expected-error {{call to implicitly-deleted default}} variable
  /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...]
  /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/openssl/crypto/cmac/
cmac.c 68 /* Keys k1 and k2 */
70 unsigned char k2[EVP_MAX_BLOCK_LENGTH]; member in struct:CMAC_CTX_st
80 /* Make temporary keys K1 and K2 */
120 OPENSSL_cleanse(ctx->k2, EVP_MAX_BLOCK_LENGTH);
145 memcpy(out->k2, in->k2, bl);
203 make_kn(ctx->k2, ctx->k1, bl);
287 out[i] = ctx->last_block[i] ^ ctx->k2[i];
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
Utils.java 129 Keyframe k2 = Keyframe.ofFloat(0.69f, increaseRatio); local
132 PropertyValuesHolder scaleX = PropertyValuesHolder.ofKeyframe("scaleX", k0, k1, k2, k3);
133 PropertyValuesHolder scaleY = PropertyValuesHolder.ofKeyframe("scaleY", k0, k1, k2, k3);

Completed in 477 milliseconds

1 2 3 4 5 6 7