Home
last modified time | relevance | path

Searched refs:z (Results 1 – 21 of 21) sorted by relevance

/system/bt/stack/smp/
Dp_256_ecc_pp.c56 if (multiprecision_iszero(p->z, keyLength)) in ECC_Double()
58 multiprecision_init(q->z, keyLength); in ECC_Double()
62 x1=p->x; y1=p->y; z1=p->z; in ECC_Double()
63 x3=q->x; y3=q->y; z3=q->z; in ECC_Double()
105 x1=p->x; y1=p->y; z1=p->z; in ECC_Add()
106 x2=q->x; y2=q->y; z2=q->z; in ECC_Add()
107 x3=r->x; y3=r->y; z3=r->z; in ECC_Add()
220 multiprecision_init(p->z, keyLength); in ECC_PointMult_Bin_NAF()
221 p->z[0] = 1; in ECC_PointMult_Bin_NAF()
230 multiprecision_init(minus_p.z, keyLength); in ECC_PointMult_Bin_NAF()
[all …]
Dp_256_ecc_pp.h34 DWORD z[KEY_LENGTH_DWORDS_P256]; member
Dsmp_cmac.c265 BT_OCTET16 z = {0}; in cmac_generate_subkey() local
270 if (SMP_Encrypt(key, BT_OCTET16_LEN, z, BT_OCTET16_LEN, &output)) in cmac_generate_subkey()
Dsmp_keys.c1261 void smp_calculate_f4(UINT8 *u, UINT8 *v, UINT8 *x, UINT8 z, UINT8 *c) in smp_calculate_f4() argument
1281 p_prnt = &z; in smp_calculate_f4()
1286 UINT8_TO_STREAM(p, z); in smp_calculate_f4()
Dsmp_int.h520 extern void smp_calculate_f4(UINT8 *u, UINT8 *v, UINT8 *x, UINT8 z, UINT8 *c);
/system/extras/ext4_utils/
Dsha1.c53 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
54 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
55 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); argument
56 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); argument
57 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30); argument
76 #define nR0(v,w,x,y,z,i) R0(*v,*w,*x,*y,*z,i) argument
77 #define nR1(v,w,x,y,z,i) R1(*v,*w,*x,*y,*z,i) argument
78 #define nR2(v,w,x,y,z,i) R2(*v,*w,*x,*y,*z,i) argument
79 #define nR3(v,w,x,y,z,i) R3(*v,*w,*x,*y,*z,i) argument
80 #define nR4(v,w,x,y,z,i) R4(*v,*w,*x,*y,*z,i) argument
/system/media/audio_utils/
Dfixedfft.cpp159 int32_t z = half(v[n - i]); in fixed_fft_real() local
160 int32_t y = z - (x ^ 0xFFFF); in fixed_fft_real()
161 x = half(x + (z ^ 0xFFFF)); in fixed_fft_real()
/system/extras/ksmutils/
Dlookup3.c776 time_t a,z; in driver1() local
784 time(&z); in driver1()
785 if (z-a > 0) printf("time %d %.8x\n", z-a, h); in driver1()
796 uint32_t c[HASHSTATE], d[HASHSTATE], i=0, j=0, k, l, m=0, z; in driver2() local
804 z=0; in driver2()
840 if (k>z) z=k; in driver2()
848 if (z==MAXPAIR) goto done; in driver2()
853 if (z < MAXPAIR) in driver2()
856 printf("required %d trials\n", z/2); in driver2()
/system/core/libpixelflinger/
Dclear.cpp88 static inline GGLfixed fixedToZ(GGLfixed z) { in fixedToZ() argument
89 return GGLfixed(((int64_t(z) << 16) - z) >> 16); in fixedToZ()
Dscanline.cpp672 GGLfixed z = (xs * c->shade.dzdx) + ci.ydzdy; in scanline() local
876 uint16_t zz = uint32_t(z)>>(16); in scanline()
937 z += c->shade.dzdx; in scanline()
/system/keymaster/
Docb.c375 #define AES_set_encrypt_key(x, y, z) \ argument
377 rijndaelKeySetupEnc((z)->rd_key, x, y); \
378 (z)->rounds = y / 32 + 6; \
380 #define AES_set_decrypt_key(x, y, z) \ argument
382 rijndaelKeySetupDec((z)->rd_key, x, y); \
383 (z)->rounds = y / 32 + 6; \
388 #define AES_set_encrypt_key(x, y, z) rijndaelKeySetupEnc((z)->rd_key, x, y) argument
389 #define AES_set_decrypt_key(x, y, z) rijndaelKeySetupDec((z)->rd_key, x, y) argument
391 #define AES_encrypt(x, y, z) rijndaelEncrypt((z)->rd_key, ROUNDS(z), x, y) argument
392 #define AES_decrypt(x, y, z) rijndaelDecrypt((z)->rd_key, ROUNDS(z), x, y) argument
/system/core/libpixelflinger/codeflinger/
DGGLAssembler.cpp417 parts.z = reg_t(obtainReg()); in build_scanline_prolog()
421 int ydzdy = parts.z.reg; in build_scanline_prolog()
424 MLA(AL, 0, parts.z.reg, Rx, dzdx, ydzdy); in build_scanline_prolog()
766 int z = parts.z.reg; in build_depth_test() local
774 CMP(AL, depth, reg_imm(z, LSR, 16)); in build_depth_test()
782 MOV(AL, 0, depth, reg_imm(z, LSR, 16)); in build_depth_test()
795 ADD(AL, 0, parts.z.reg, parts.z.reg, dzdx); in build_iterate_z()
Dtexturing.cpp420 if (parts.z.reg > 0 && parts.covPtr.reg > 0) in build_textures()
425 if (parts.z.reg > 0) in build_textures()
426 spill_list |= 1<<parts.z.reg; in build_textures()
DGGLAssembler.h307 reg_t z; member
/system/media/camera/docs/
Dhtml.mako86 /* TODO for each x.y.z try to link it to the entry */
115 # Convert node name "x.y.z" of kind w to an HTML anchor of form
116 # <a href="#w_x.y.z">x.y.z</a>
142 # linkify tag names such as "android.x.y.z" into html anchors
/system/core/liblog/
Devent.logtags8 # "[A-Z][a-z][0-9]_". Do not include spaces or punctuation (the former
/system/core/logd/
Devent.logtags8 # "[A-Z][a-z][0-9]_". Do not include spaces or punctuation (the former
/system/core/libmincrypt/
Dp256_ec.c805 const felem y, const felem z) { in point_double() argument
808 felem_square(delta, z); in point_double()
817 felem_sum(tmp, y, z); in point_double()
1226 felem x, y, z; in p256_base_point_mul() local
1228 scalar_base_mult(x, y, z, n); in p256_base_point_mul()
1233 point_to_affine(x_affine, y_affine, x, y, z); in p256_base_point_mul()
/system/core/logcat/
Devent.logtags8 # "[A-Z][a-z][0-9]_". Do not include spaces or punctuation (the former
/system/bt/doc/
Dstyle_guide.md287 z = -y;
/system/bt/stack/btm/
Dbtm_ble_gap.c222 #define BTM_LE_STATES_SUPPORTED(x, y, z) ((x)[(z)] & (y)) argument