/external/chromium_org/chrome/app/ |
chrome_exe_main_win.cc | 36 unsigned short k1 = ::GetAsyncKeyState(VK_CONTROL); local 39 if ((k1 & kPressedMask) && (k2 & kPressedMask))
|
/external/openfst/src/include/fst/ |
bi-table.h | 228 bool operator()(I k1, I k2) const { 229 if (k1 >= kCurrentKey && k2 >= kCurrentKey) { 230 return (*ht_->hash_equal_)(ht_->Key2Entry(k1), ht_->Key2Entry(k2)); 232 return k1 == k2; 437 bool operator()(I k1, I k2) const { 438 if (k1 >= kCurrentKey && k2 >= kCurrentKey) { 439 return ht_->Key2Entry(k1) == ht_->Key2Entry(k2); 441 return k1 == k2;
|
sparse-tuple-weight.h | 278 const K& k1 = (w1_it.Done()) ? w2_it.Value().first : w1_it.Value().first; local 282 if (k1 == k2) { 283 ret->Push(k1, operator_mapper.Map(k1, v1, v2)); 286 } else if (k1 < k2) { 287 ret->Push(k1, operator_mapper.Map(k1, v1, v2_def)); 306 const K& k1 = (w1_it.Done()) ? w2_it.Value().first : w1_it.Value().first; local 310 if (k1 == k2) { 314 } else if (k1 < k2) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGFECompositeElement.h | 93 DECLARE_ANIMATED_NUMBER(K1, k1)
|
SVGFECompositeElement.cpp | 36 DEFINE_ANIMATED_NUMBER(SVGFECompositeElement, SVGNames::k1Attr, K1, k1) 45 REGISTER_LOCAL_ANIMATED_PROPERTY(k1)
|
/external/chromium_org/third_party/smhasher/src/ |
Stats.h | 78 keytype & k1 = keys[i]; local 80 hashtype h = hash(&k1,sizeof(keytype),0); 89 printbits(&k1,sizeof(keytype)); 95 tab.insert( std::make_pair(h,k1) );
|
/external/clang/test/SemaCXX/ |
address-of-temporary.cpp | 52 void k1() { consume(S { Y{}.a }); } function in namespace:PointerToArrayDecay
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_utilities_camera.h | 174 double k1,k2; local 176 k1=db_sqr(H[2])+db_sqr(H[5]); 178 if(k1>=k2) 180 return(db_SafeSqrt(db_SafeDivision(k1,1.0-db_sqr(H[8]))));
|
/packages/apps/Camera2/jni/feature_stab/db_vlvm/ |
db_utilities_camera.h | 174 double k1,k2; local 176 k1=db_sqr(H[2])+db_sqr(H[5]); 178 if(k1>=k2) 180 return(db_SafeSqrt(db_SafeDivision(k1,1.0-db_sqr(H[8]))));
|
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_utilities_camera.h | 174 double k1,k2; local 176 k1=db_sqr(H[2])+db_sqr(H[5]); 178 if(k1>=k2) 180 return(db_SafeSqrt(db_SafeDivision(k1,1.0-db_sqr(H[8]))));
|
/external/guava/guava/src/com/google/common/collect/ |
ImmutableSortedMap.java | 104 ImmutableSortedMap<K, V> of(K k1, V v1) { 106 ImmutableList.of(entryOf(k1, v1)), Ordering.natural()); 117 of(K k1, V v1, K k2, V v2) { 119 .put(k1, v1).put(k2, v2).build(); 130 of(K k1, V v1, K k2, V v2, K k3, V v3) { 132 .put(k1, v1).put(k2, v2).put(k3, v3).build(); 143 of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { 145 .put(k1, v1).put(k2, v2).put(k3, v3).put(k4, v4).build(); 156 of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) { 158 .put(k1, v1).put(k2, v2).put(k3, v3).put(k4, v4).put(k5, v5).build() [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
NodeSorter.java | 497 NodeSortKey k1 = (NodeSortKey) m_keys.elementAt(0); local 498 XObject r = k1.m_selectPat.execute(m_execContext, node, 499 k1.m_namespaceContext); 503 if (k1.m_treatAsNumbers) 512 m_key1Value = k1.m_col.getCollationKey(r.str());
|
/external/eigen/unsupported/test/ |
FFTW.cpp | 40 for (size_t k1=0;k1<(size_t)timebuf.size();++k1) { 41 acc += promote( timebuf[k1] ) * exp( complex<long double>(0,k1*phinc) );
|
/external/eigen/Eigen/src/Core/products/ |
TriangularMatrixMatrix.h | 157 for (Index k1=0; k1<actual_kc; k1+=SmallPanelWidth) 159 Index actualPanelWidth = std::min<Index>(actual_kc-k1, SmallPanelWidth); 160 Index lengthTarget = IsLower ? actual_kc-k1-actualPanelWidth : k1; 161 Index startBlock = actual_k2+k1; 162 Index blockBOffset = k1; 182 Index startTarget = IsLower ? actual_k2+k1+actualPanelWidth : actual_k2;
|
/external/chromium/testing/gmock/include/gmock/ |
gmock-generated-actions.h | 392 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::type is the 399 // SelectArgs<Result, ArgumentTuple, k1, k2, ..., k_n>::Select(args) 400 // returns the selected fields (k1, k2, ..., k_n) of args as a tuple. 406 // The numbers in list k1, k2, ..., k_n must be >= 0, where n can be 410 template <typename Result, typename ArgumentTuple, int k1, int k2, int k3, 414 typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1), 423 return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args), 441 template <typename Result, typename ArgumentTuple, int k1> 443 k1, -1, -1, -1, -1, -1, -1, -1, -1, -1> { 445 typedef Result type(GMOCK_FIELD_(ArgumentTuple, k1)); [all...] |
/external/tremolo/Tremolo/ |
floor1.c | 82 int k1=j; local 86 while(k1<mid && k2<end){ 87 if(vals[A[k1]]<vals[A[k2]]) 88 B[j++]=A[k1++]; 92 while(k1<mid) B[j++]=A[k1++];
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/ |
TimePickerDialog.java | 812 int k1 = KeyEvent.KEYCODE_1; 826 Node minuteFirstDigit = new Node(k0, k1, k2, k3, k4, k5); 827 Node minuteSecondDigit = new Node(k0, k1, k2, k3, k4, k5, k6, k7, k8, k9) [all...] |
/external/eigen/demos/opengl/ |
icosphere.cpp | 75 int k1 = (k+1)%3; local 77 int e1 = indices[i+k1];
|
/external/webrtc/src/modules/audio_processing/aec/ |
aec_rdft_sse2.c | 157 int k1 = 2; local 158 int k2 = 2 * k1; 244 int j1, j2, k1, k2; local 318 k1 = 32 - j1; 319 wkr = 0.5f - c[k1]; 334 int j1, j2, k1, k2; local 409 k1 = 32 - j1; 410 wkr = 0.5f - c[k1];
|
/external/chromium_org/third_party/freetype/src/base/ |
fttrigon.c | 83 FT_UInt32 v1, v2, k1, k2, hi, lo1, lo2, lo3; local 92 k1 = (FT_UInt32)FT_TRIG_SCALE >> 16; /* constant */ 95 hi = k1 * v1; 96 lo1 = k1 * v2 + k2 * v1; /* can't overflow */
|
/external/freetype/src/base/ |
fttrigon.c | 83 FT_UInt32 v1, v2, k1, k2, hi, lo1, lo2, lo3; local 92 k1 = (FT_UInt32)FT_TRIG_SCALE >> 16; /* constant */ 95 hi = k1 * v1; 96 lo1 = k1 * v2 + k2 * v1; /* can't overflow */
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
saturation.rs | 24 static const int k1=255 << ABITS; 128 rs = (short) ((k1 * chroma) / iMax);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
TwofishEngine.java | 390 int k1 = sBoxKeys[1]; local 420 [(P[P_02][b0] & 0xff) ^ b0(k1)] & 0xff) ^ b0(k0)]; 422 [(P[P_12][b1] & 0xff) ^ b1(k1)] & 0xff) ^ b1(k0)]; 424 [(P[P_22][b2] & 0xff) ^ b2(k1)] & 0xff) ^ b2(k0)]; 426 [(P[P_32][b3] & 0xff) ^ b3(k1)] & 0xff) ^ b3(k0)]; 530 int k1 = k32[1]; local 555 gMDS0[(P[P_01][(P[P_02][b0]&0xff)^b0(k1)]&0xff)^b0(k0)] ^ 556 gMDS1[(P[P_11][(P[P_12][b1]&0xff)^b1(k1)]&0xff)^b1(k0)] ^ 557 gMDS2[(P[P_21][(P[P_22][b2]&0xff)^b2(k1)]&0xff)^b2(k0)] ^ 558 gMDS3[(P[P_31][(P[P_32][b3]&0xff)^b3(k1)]&0xff)^b3(k0)] [all...] |
/external/openssh/ |
umac.c | 340 UINT32 k0,k1,k2,k3,k4,k5,k6,k7; local 348 k0 = *(k+0); k1 = *(k+1); k2 = *(k+2); k3 = *(k+3); 351 h += MUL64((k1 + d1), (k5 + d5)); 373 UINT32 k0,k1,k2,k3,k4,k5,k6,k7, local 378 k0 = *(k+0); k1 = *(k+1); k2 = *(k+2); k3 = *(k+3); 390 h1 += MUL64((k1 + d1), (k5 + d5)); 399 k0 = k8; k1 = k9; k2 = k10; k3 = k11; 420 UINT32 k0,k1,k2,k3,k4,k5,k6,k7, local 426 k0 = *(k+0); k1 = *(k+1); k2 = *(k+2); k3 = *(k+3); 440 h1 += MUL64((k1 + d1), (k5 + d5)) 475 UINT32 k0,k1,k2,k3,k4,k5,k6,k7, local [all...] |
/external/llvm/include/llvm/ADT/ |
Hashing.h | 169 static const uint64_t k1 = 0xb492b66fbe98f273ULL; member in namespace:llvm::hashing::detail 217 uint64_t a = fetch64(s) * k1; 275 0, seed, hash_16_bytes(seed, k1), rotate(seed ^ k1, 49), 276 seed * k1, shift_mix(seed), 0, seed }; 298 h0 = rotate(h0 + h1 + h3 + fetch64(s + 8), 37) * k1; 299 h1 = rotate(h1 + h4 + fetch64(s + 48), 42) * k1; 302 h2 = rotate(h2 + h5, 33) * k1; 303 h3 = h4 * k1; 315 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2 [all...] |