Searched defs:K0 (Results 1 - 4 of 4) sorted by relevance

/external/elfutils/lib/
H A Dsha1.c208 #define K0 0x5a827999 macro
261 e = CYCLIC (a, 5) + FF (b, c, d) + e + W (i) + K0; \
301 OP (16, FF, E, A, B, C, D, K0);
302 OP (17, FF, D, E, A, B, C, K0);
303 OP (18, FF, C, D, E, A, B, K0);
304 OP (19, FF, B, C, D, E, A, K0);
/external/skia/src/gpu/
H A DFlingState.cpp69 const float K0 = 5.0; local
71 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
76 float dist = (fSpeed0 - speed) / K0;
/external/dropbear/libtomcrypt/src/ciphers/
H A Danubis.c903 ulong32 v, K0, K1, K2, K3; local
947 K0 = T4[(kappa[N - 1] >> 24) & 0xff];
952 K0 = T4[(kappa[i] >> 24) & 0xff] ^
953 (T5[(K0 >> 24) & 0xff] & 0xff000000U) ^
954 (T5[(K0 >> 16) & 0xff] & 0x00ff0000U) ^
955 (T5[(K0 >> 8) & 0xff] & 0x0000ff00U) ^
956 (T5[(K0 ) & 0xff] & 0x000000ffU);
975 K0 = K1 = K2 = K3 = 0;
977 K0 ^= U[i][(kappa[i] >> 24) & 0xff];
983 skey->anubis.roundKeyEnc[r][0] = K0;
[all...]
/external/skia/src/views/
H A DSkTouchGesture.cpp69 const float K0 = 5; local
71 const float speed = fSpeed0 * (sk_float_exp(- K0 * t) - K1);
76 float dist = (fSpeed0 - speed) / K0;

Completed in 102 milliseconds