/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 | 742 int k1 = KeyEvent.KEYCODE_1; 756 Node minuteFirstDigit = new Node(k0, k1, k2, k3, k4, k5); 757 Node minuteSecondDigit = new Node(k0, k1, k2, k3, k4, k5, k6, k7, k8, k9); 762 Node firstDigit = new Node(k0, k1); 766 Node secondDigit = new Node(k0, k1, k2, k3, k4, k5); 787 secondDigit = new Node(k0, k1, k2, k3); 809 Node firstDigit = new Node(k1); 815 Node secondDigit = new Node(k0, k1, k2); 821 Node thirdDigit = new Node(k0, k1, k2, k3, k4, k5); [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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
TwofishEngine.java | 389 int k1 = sBoxKeys[1]; local 419 [(P[P_02][b0] & 0xff) ^ b0(k1)] & 0xff) ^ b0(k0)]; 421 [(P[P_12][b1] & 0xff) ^ b1(k1)] & 0xff) ^ b1(k0)]; 423 [(P[P_22][b2] & 0xff) ^ b2(k1)] & 0xff) ^ b2(k0)]; 425 [(P[P_32][b3] & 0xff) ^ b3(k1)] & 0xff) ^ b3(k0)]; 529 int k1 = k32[1]; local 554 gMDS0[(P[P_01][(P[P_02][b0]&0xff)^b0(k1)]&0xff)^b0(k0)] ^ 555 gMDS1[(P[P_11][(P[P_12][b1]&0xff)^b1(k1)]&0xff)^b1(k0)] ^ 556 gMDS2[(P[P_21][(P[P_22][b2]&0xff)^b2(k1)]&0xff)^b2(k0)] ^ 557 gMDS3[(P[P_31][(P[P_32][b3]&0xff)^b3(k1)]&0xff)^b3(k0)] [all...] |
/external/webkit/Source/WebCore/svg/ |
SVGFECompositeElement.cpp | 37 DEFINE_ANIMATED_NUMBER(SVGFECompositeElement, SVGNames::k1Attr, K1, k1) 91 return composite->setK1(k1()); 180 k1(), k2(), k3(), k4());
|
/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...] |
/external/srec/srec/cfront/ |
sp_fft.c | 427 unsigned k1, k2, k3; local 432 k1 = quarterLength; 433 k2 = k1 + quarterLength; 437 r1 = data[k1]; 441 i1 = data[k1+1]; 447 data[k1] = r1 + r3; 449 data[k1+1] = i1 + i3;
|
/external/valgrind/main/VEX/switchback/ |
test_bzip2.c | 4889 UChar k1; local 5043 UChar k1; local [all...] |
/external/valgrind/main/exp-sgcheck/tests/ |
hackedbz2.c | 4913 UChar k1; local 5067 UChar k1; local [all...] |
/external/valgrind/main/memcheck/tests/ |
origin5-bz2.c | 4904 UChar k1; local 5058 UChar k1; local [all...] |
varinfo6.c | 4942 UChar k1; local 5096 UChar k1; local [all...] |
/external/valgrind/main/perf/ |
bz2.c | 4904 UChar k1; local 5058 UChar k1; local [all...] |
/external/aac/libSBRdec/src/ |
lpp_tran.cpp | 248 FIXP_DBL k1, k1_below=0, k1_below2=0; local 553 k1 = FL2FXCONST_DBL(0.0f); 558 k1 = (FIXP_DBL)MAXVAL_DBL /*FL2FXCONST_SGL(1.0f)*/; 561 k1 = (FIXP_DBL)(MINVAL_DBL+1) /*FL2FXCONST_SGL(-1.0f)*/; 567 k1 = scaleValue(result,scale); 570 k1 = -k1; 578 if (((loBand & 1) == 0) && (k1 < FL2FXCONST_DBL(0.0f))){ 589 if (((loBand & 1) == 1) && (k1 > FL2FXCONST_DBL(0.0f))){ 601 /* remember k1 values of the 2 QMF channels below the current channel * [all...] |
/external/chromium/net/http/ |
http_auth_handler_ntlm_portable.cc | 277 uint8 k1[8], k2[8]; local 278 DESMakeKey(reinterpret_cast<const uint8*>(passbuf.data()) , k1); local 283 DESEncrypt(k1, LM_MAGIC, hash); 324 uint8 keybytes[21], k1[8], k2[8], k3[8]; local 329 DESMakeKey(keybytes , k1); 333 DESEncrypt(k1, challenge, response);
|
/external/openssl/crypto/ec/ |
ec_asn1.c | 104 int EC_GROUP_get_pentanomial_basis(const EC_GROUP *group, unsigned int *k1, 117 if (k1) 118 *k1 = group->poly[3]; 131 long k1; member in struct:x9_62_pentanomial_st 199 ASN1_SIMPLE(X9_62_PENTANOMIAL, k1, LONG), 399 unsigned int k1, k2, k3; 401 if (!EC_GROUP_get_pentanomial_basis(group, &k1, &k2, &k3)) 412 char_two->p.ppBasis->k1 = (long)k1; 850 if (!(char_two->m > penta->k3 && penta->k3 > penta->k2 && penta->k2 > penta->k1 && penta->k1 > 0) [all...] |
/dalvik/vm/compiler/template/mips/ |
TEMPLATE_RESTORE_STATE.S | 45 lw k1, r_K1*4(a0) # restore k1
|
TEMPLATE_SAVE_STATE.S | 57 sw k1, r_K1*4(a0) # save k1
|
/external/ceres-solver/internal/ceres/gmock/ |
gmock.h | [all...] |
/external/clang/test/Sema/ |
struct-packed-align.c | 106 extern int k1[sizeof(union au6) == 4 ? 1 : -1];
|
/external/freetype/src/base/ |
fttrigon.c | 68 FT_UInt32 v1, v2, k1, k2, hi, lo1, lo2, lo3; local 77 k1 = (FT_UInt32)FT_TRIG_SCALE >> 16; /* constant */ 80 hi = k1 * v1; 81 lo1 = k1 * v2 + k2 * v1; /* can't overflow */
|
/external/opencv/cv/src/ |
cvundistort.cpp | 55 float k1 = dist_coeffs[0], k2 = dist_coeffs[1], k3 = dist_coeffs[4]; local 68 float kr = 1 + ((k3*r2 + k2)*r2 + k1)*r2; 106 float fx, float fy, float cx, float cy, float k1, float k2, uchar *pBuffer ); 193 float u0, v0, fx, fy, ifx, ify, x0, y0, k1, k2, k3, p1, p2; local 233 k1 = k[0]; k2 = k[1]; k3 = k[4]; 247 double kr = 1 + ((k3*r2 + k2)*r2 + k1)*r2; 277 double fx, fy, u0, v0, k1, k2, k3, p1, p2; local 342 k1 = k[0]; k2 = k[1]; k3 = k[4]; 358 double kr = 1 + ((k3*r2 + k2)*r2 + k1)*r2;
|
/external/libvorbis/lib/ |
smallft.c | 43 int k1, l1, l2, ib; local 84 for (k1=0;k1<nfm1;k1++){ 85 ip=ifac[k1+2]; 574 int i,k1,l1,l2; local 583 for(k1=0;k1<nf;k1++){ 584 kh=nf-k1; 1155 int i,k1,l1,l2; local [all...] |