Searched defs:rk (Results 1 - 15 of 15) sorted by relevance

/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-internal.c779 int rijndaelKeySetupEnc(u32 rk[], const u8 cipherKey[], int keyBits) argument
784 rk[0] = GETU32(cipherKey );
785 rk[1] = GETU32(cipherKey + 4);
786 rk[2] = GETU32(cipherKey + 8);
787 rk[3] = GETU32(cipherKey + 12);
791 temp = rk[3];
792 rk[4] = rk[0] ^ TE421(temp) ^ TE432(temp) ^
794 rk[5] = rk[
[all...]
H A Daes-internal-enc.c23 static void rijndaelEncrypt(const u32 rk[], int Nr, const u8 pt[16], u8 ct[16]) argument
34 s0 = GETU32(pt ) ^ rk[0];
35 s1 = GETU32(pt + 4) ^ rk[1];
36 s2 = GETU32(pt + 8) ^ rk[2];
37 s3 = GETU32(pt + 12) ^ rk[3];
40 d##0 = TE0(s##0) ^ TE1(s##1) ^ TE2(s##2) ^ TE3(s##3) ^ rk[4 * i]; \
41 d##1 = TE0(s##1) ^ TE1(s##2) ^ TE2(s##3) ^ TE3(s##0) ^ rk[4 * i + 1]; \
42 d##2 = TE0(s##2) ^ TE1(s##3) ^ TE2(s##0) ^ TE3(s##1) ^ rk[4 * i + 2]; \
43 d##3 = TE0(s##3) ^ TE1(s##0) ^ TE2(s##1) ^ TE3(s##2) ^ rk[4 * i + 3]
65 rk
100 u32 *rk; local
117 u32 *rk = ctx; local
[all...]
H A Daes-internal-dec.c28 static int rijndaelKeySetupDec(u32 rk[], const u8 cipherKey[], int keyBits) argument
34 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits);
39 temp = rk[i ]; rk[i ] = rk[j ]; rk[j ] = temp;
40 temp = rk[i + 1]; rk[i + 1] = rk[j + 1]; rk[
61 u32 *rk; local
152 u32 *rk = ctx; local
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Daes-internal.c779 int rijndaelKeySetupEnc(u32 rk[], const u8 cipherKey[], int keyBits) argument
784 rk[0] = GETU32(cipherKey );
785 rk[1] = GETU32(cipherKey + 4);
786 rk[2] = GETU32(cipherKey + 8);
787 rk[3] = GETU32(cipherKey + 12);
791 temp = rk[3];
792 rk[4] = rk[0] ^ TE421(temp) ^ TE432(temp) ^
794 rk[5] = rk[
[all...]
H A Daes-internal-enc.c23 static void rijndaelEncrypt(const u32 rk[], int Nr, const u8 pt[16], u8 ct[16]) argument
34 s0 = GETU32(pt ) ^ rk[0];
35 s1 = GETU32(pt + 4) ^ rk[1];
36 s2 = GETU32(pt + 8) ^ rk[2];
37 s3 = GETU32(pt + 12) ^ rk[3];
40 d##0 = TE0(s##0) ^ TE1(s##1) ^ TE2(s##2) ^ TE3(s##3) ^ rk[4 * i]; \
41 d##1 = TE0(s##1) ^ TE1(s##2) ^ TE2(s##3) ^ TE3(s##0) ^ rk[4 * i + 1]; \
42 d##2 = TE0(s##2) ^ TE1(s##3) ^ TE2(s##0) ^ TE3(s##1) ^ rk[4 * i + 2]; \
43 d##3 = TE0(s##3) ^ TE1(s##0) ^ TE2(s##1) ^ TE3(s##2) ^ rk[4 * i + 3]
65 rk
100 u32 *rk; local
117 u32 *rk = ctx; local
[all...]
H A Daes-internal-dec.c28 static int rijndaelKeySetupDec(u32 rk[], const u8 cipherKey[], int keyBits) argument
34 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits);
39 temp = rk[i ]; rk[i ] = rk[j ]; rk[j ] = temp;
40 temp = rk[i + 1]; rk[i + 1] = rk[j + 1]; rk[
61 u32 *rk; local
152 u32 *rk = ctx; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-internal.c779 int rijndaelKeySetupEnc(u32 rk[], const u8 cipherKey[], int keyBits) argument
784 rk[0] = GETU32(cipherKey );
785 rk[1] = GETU32(cipherKey + 4);
786 rk[2] = GETU32(cipherKey + 8);
787 rk[3] = GETU32(cipherKey + 12);
791 temp = rk[3];
792 rk[4] = rk[0] ^ TE421(temp) ^ TE432(temp) ^
794 rk[5] = rk[
[all...]
H A Daes-internal-enc.c23 static void rijndaelEncrypt(const u32 rk[], int Nr, const u8 pt[16], u8 ct[16]) argument
34 s0 = GETU32(pt ) ^ rk[0];
35 s1 = GETU32(pt + 4) ^ rk[1];
36 s2 = GETU32(pt + 8) ^ rk[2];
37 s3 = GETU32(pt + 12) ^ rk[3];
40 d##0 = TE0(s##0) ^ TE1(s##1) ^ TE2(s##2) ^ TE3(s##3) ^ rk[4 * i]; \
41 d##1 = TE0(s##1) ^ TE1(s##2) ^ TE2(s##3) ^ TE3(s##0) ^ rk[4 * i + 1]; \
42 d##2 = TE0(s##2) ^ TE1(s##3) ^ TE2(s##0) ^ TE3(s##1) ^ rk[4 * i + 2]; \
43 d##3 = TE0(s##3) ^ TE1(s##0) ^ TE2(s##1) ^ TE3(s##2) ^ rk[4 * i + 3]
65 rk
100 u32 *rk; local
117 u32 *rk = ctx; local
[all...]
H A Daes-internal-dec.c28 static int rijndaelKeySetupDec(u32 rk[], const u8 cipherKey[], int keyBits) argument
34 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits);
39 temp = rk[i ]; rk[i ] = rk[j ]; rk[j ] = temp;
40 temp = rk[i + 1]; rk[i + 1] = rk[j + 1]; rk[
61 u32 *rk; local
152 u32 *rk = ctx; local
[all...]
/external/boringssl/src/crypto/aes/
H A Daes.c538 uint32_t *rk; local
560 rk = aeskey->rd_key;
562 rk[0] = GETU32(key);
563 rk[1] = GETU32(key + 4);
564 rk[2] = GETU32(key + 8);
565 rk[3] = GETU32(key + 12);
568 temp = rk[3];
569 rk[4] = rk[0] ^ (Te2[(temp >> 16) & 0xff] & 0xff000000) ^
573 rk[
633 uint32_t *rk; local
681 const uint32_t *rk; local
869 const uint32_t *rk; local
[all...]
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-alg-fst.c142 int rijndaelEncrypt(word8 in[16], word8 out[16], word8 rk[MAXROUNDS+1][4][4], int ROUNDS) { argument
158 *((word32*)temp[0]) = *((word32*)(a )) ^ *((word32*)rk[0][0]);
159 *((word32*)temp[1]) = *((word32*)(a+ 4)) ^ *((word32*)rk[0][1]);
160 *((word32*)temp[2]) = *((word32*)(a+ 8)) ^ *((word32*)rk[0][2]);
161 *((word32*)temp[3]) = *((word32*)(a+12)) ^ *((word32*)rk[0][3]);
179 *((word32*)temp[0]) = *((word32*)(b )) ^ *((word32*)rk[r][0]);
180 *((word32*)temp[1]) = *((word32*)(b+ 4)) ^ *((word32*)rk[r][1]);
181 *((word32*)temp[2]) = *((word32*)(b+ 8)) ^ *((word32*)rk[r][2]);
182 *((word32*)temp[3]) = *((word32*)(b+12)) ^ *((word32*)rk[r][3]);
202 *((word32*)temp[0]) = *((word32*)(b )) ^ *((word32*)rk[ROUND
240 rijndaelEncryptRound(word8 a[4][4], word8 rk[MAXROUNDS+1][4][4], int ROUNDS, int rounds) argument
307 rijndaelDecrypt(word8 in[16], word8 out[16], word8 rk[MAXROUNDS+1][4][4], int ROUNDS) argument
409 rijndaelDecryptRound(word8 a[4][4], word8 rk[MAXROUNDS+1][4][4], int ROUNDS, int rounds) argument
[all...]
/external/eigen/unsupported/Eigen/src/Splines/
H A DSpline.h412 DenseIndex rk,pk,j1,j2; local
413 rk = r-k; pk = p-k;
417 a(s2,0) = a(s1,0)/ndu(pk+1,rk);
418 d = a(s2,0)*ndu(rk,pk);
421 if (rk>=-1) j1 = 1;
422 else j1 = -rk;
429 a(s2,j) = (a(s1,j)-a(s1,j-1))/ndu(pk+1,rk+j);
430 d += a(s2,j)*ndu(rk+j,pk);
/external/eigen/Eigen/src/SPQRSupport/
H A DSuiteSparseQRSupport.h164 Index rk = this->rank(); local
167 y.topRows(rk) = this->matrixR().topLeftCorner(rk, rk).template triangularView<Upper>().solve(y2.topRows(rk));
172 for(Index i = 0; i < rk; ++i) dest.row(m_E[i]) = y.row(i);
173 for(Index i = rk; i < cols(); ++i) dest.row(m_E[i]).setZero();
175 // y.bottomRows(y.rows()-rk).setZero();
/external/pdfium/third_party/lcms2-2.6/src/
H A Dcmsintrp.c263 cmsS15Fixed16Number k0, k1, rk, K0, K1; local
272 rk = (cmsUInt16Number) FIXED_REST_TO_INT(fk);
281 Output[OutChan] = LinearInterp(rk, LutTable[K0+OutChan], LutTable[K1+OutChan]);
833 cmsS15Fixed16Number k0, rk; local
855 rk = FIXED_REST_TO_INT(fk);
1002 Output[i] = LinearInterp(rk, Tmp1[i], Tmp2[i]);
1063 cmsS15Fixed16Number k0, rk; local
1073 rk = FIXED_REST_TO_INT(fk);
1093 Output[i] = LinearInterp(rk, Tmp1[i], Tmp2[i]);
1151 cmsS15Fixed16Number k0, rk; local
1237 cmsS15Fixed16Number k0, rk; local
1323 cmsS15Fixed16Number k0, rk; local
[all...]
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 158 milliseconds