/system/bt/stack/smp/ |
D | p_256_ecc_pp.cc | 52 if (multiprecision_iszero(p->z)) { in ECC_Double() 53 multiprecision_init(q->z); in ECC_Double() 59 z1 = p->z; in ECC_Double() 62 z3 = q->z; in ECC_Double() 105 z1 = p->z; in ECC_Add() 108 z2 = q->z; in ECC_Add() 111 z3 = r->z; in ECC_Add() 205 multiprecision_init(p->z); in ECC_PointMult_Bin_NAF() 206 p->z[0] = 1; in ECC_PointMult_Bin_NAF() 215 multiprecision_init(minus_p.z); in ECC_PointMult_Bin_NAF() [all …]
|
D | p_256_ecc_pp.h | 34 uint32_t z[KEY_LENGTH_DWORDS_P256]; member
|
D | crypto_toolbox.h | 26 uint8_t z);
|
/system/keymaster/km_openssl/ |
D | ecies_kem.cpp | 101 Buffer z; in Encrypt() local 106 z.Reinitialize(output_encrypted_key->peek_read(), output_encrypted_key->available_read()); in Encrypt() 109 Buffer actual_secret(z.available_read() + shared_secret.available_read()); in Encrypt() 110 actual_secret.write(z.peek_read(), z.available_read()); in Encrypt() 156 Buffer z; in Decrypt() local 161 z.Reinitialize(public_value.peek_read(), public_value.available_read()); in Decrypt() 164 Buffer actual_secret(z.available_read() + shared_secret.available_read()); in Decrypt() 165 actual_secret.write(z.peek_read(), z.available_read()); in Decrypt()
|
/system/media/audio_utils/tests/ |
D | variadic_tests.cpp | 109 double z = 3; in TEST() local 113 std::cout << "x=" << x << " z=" << z << " x+z=" << (x + z) << "\n"; in TEST() 114 std::cout << "x=" << x << " z=" << z << " x*z=" << (x * z) << "\n"; in TEST() 133 std::cout << "px=" << px << " z=" << z << " px+z=" << (px + z) << "\n"; in TEST() 134 std::cout << "px=" << px << " z=" << z << " px*z=" << (px * z) << "\n"; in TEST() 146 std::cout << "ax=" << ax << " z=" << z << " ax+z=" << (ax + z) << "\n"; in TEST() 147 std::cout << "ax=" << ax << " z=" << z << " ax*z=" << (ax * z) << "\n"; in TEST()
|
/system/bt/gd/security/ecc/ |
D | p_256_ecc_pp.cc | 57 if (multiprecision_iszero(p->z)) { in ECC_Double() 58 multiprecision_init(q->z); in ECC_Double() 64 z1 = p->z; in ECC_Double() 67 z3 = q->z; in ECC_Double() 110 z1 = p->z; in ECC_Add() 113 z2 = q->z; in ECC_Add() 116 z3 = r->z; in ECC_Add() 215 multiprecision_init(minus_p.z); in ECC_PointMult_Bin_NAF() 216 minus_p.z[0] = 1; in ECC_PointMult_Bin_NAF() 236 multiprecision_inv_mod(minus_p.x, q->z, modp); in ECC_PointMult_Bin_NAF() [all …]
|
D | p_256_ecc_pp.h | 37 uint32_t z[KEY_LENGTH_DWORDS_P256]; member 64 ….z = {0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x000000…
|
/system/iorap/tests/src/tmp/ |
D | introspection_test.cc | 28 char z; member 31 IORAP_INTROSPECT_ADAPT_STRUCT(TestStructXyz, x, y, z); 99 EXPECT_EQ(xyz_expected.z, xyz.z); in TEST() 115 EXPECT_EQ(xyz_expected.z, xyz.z); in TEST() 136 EXPECT_EQ(xyz_expected.z, xyz.z); in TEST() 159 EXPECT_EQ(xyz_expected.z, xyz.z); in TEST()
|
/system/tools/hidl/test/hidl_test/ |
D | hidl_test_helper | 47 if [ -z ${TEST_NAME+x} ]; then 52 if [ -z ${CLIENT_PATH32+x} ]; then 57 if [ -z ${CLIENT_PATH64+x} ]; then 62 if [ -z ${SERVER_PATH32+x} ]; then 67 if [ -z ${SERVER_PATH64+x} ]; then
|
/system/bt/gd/security/ |
D | ecdh_keys.cc | 72 memset(public_key.z, 0, 32); in ValidateECDHPoint() 82 memset(peer_publ_key.z, 0, 32); in ComputeDHKey() 83 peer_publ_key.z[0] = 1; in ComputeDHKey()
|
/system/media/audio_utils/ |
D | fixedfft.cpp | 156 int32_t z = half(v[n - i]); in fixed_fft_real() local 157 int32_t y = z - (x ^ 0xFFFF); in fixed_fft_real() 158 x = half(x + (z ^ 0xFFFF)); in fixed_fft_real()
|
/system/core/libpixelflinger/ |
D | clear.cpp | 88 static inline GGLfixed fixedToZ(GGLfixed z) { in fixedToZ() argument 89 return GGLfixed(((int64_t(z) << 16) - z) >> 16); in fixedToZ()
|
/system/bt/stack/crypto_toolbox/ |
D | crypto_toolbox.cc | 37 Octet16 f4(const uint8_t* u, const uint8_t* v, const Octet16& x, uint8_t z) { in f4() argument 44 << +z; in f4() 48 it = std::copy(&z, &z + 1, it); in f4()
|
D | crypto_toolbox.h | 27 uint8_t z);
|
/system/chre/apps/sensor_world/ |
D | sensor_world.cc | 317 float x = 0, y = 0, z = 0; in nanoappHandleEvent() local 321 z += data[i].v[2]; in nanoappHandleEvent() 326 z /= header.readingCount; in nanoappHandleEvent() 329 getSensorNameForEventType(eventType), header.readingCount, x, y, z, in nanoappHandleEvent()
|
/system/chre/chre_api/legacy/v1_2/chre/ |
D | sensor_types.h | 292 float z; member
|
/system/keymaster/key_blob_utils/ |
D | ocb.c | 387 #define AES_set_encrypt_key(x, y, z) \ argument 389 rijndaelKeySetupEnc((z)->rd_key, x, y); \ 390 (z)->rounds = y / 32 + 6; \ 392 #define AES_set_decrypt_key(x, y, z) \ argument 394 rijndaelKeySetupDec((z)->rd_key, x, y); \ 395 (z)->rounds = y / 32 + 6; \ 400 #define AES_set_encrypt_key(x, y, z) rijndaelKeySetupEnc((z)->rd_key, x, y) argument 401 #define AES_set_decrypt_key(x, y, z) rijndaelKeySetupDec((z)->rd_key, x, y) argument 403 #define AES_encrypt(x, y, z) rijndaelEncrypt((z)->rd_key, ROUNDS(z), x, y) argument 404 #define AES_decrypt(x, y, z) rijndaelDecrypt((z)->rd_key, ROUNDS(z), x, y) argument
|
/system/bt/gd/crypto_toolbox/ |
D | crypto_toolbox.cc | 38 Octet16 f4(uint8_t* u, uint8_t* v, const Octet16& x, uint8_t z) { in f4() argument 46 it = std::copy(&z, &z + 1, it); in f4()
|
D | crypto_toolbox.h | 40 extern Octet16 f4(uint8_t* u, uint8_t* v, const Octet16& x, uint8_t z);
|
/system/chre/chre_api/include/chre_api/chre/ |
D | sensor_types.h | 345 float z; member
|
/system/update_engine/ |
D | pylintrc | 281 function-rgx=^(?:(?P<camel_case>_?[A-Z][a-zA-Z0-9]*)|(?P<snake_case>_?[a-z][a-z0-9_]*))$ 287 variable-rgx=^[a-z][a-z0-9_]*$ 293 const-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$ 299 attr-rgx=^_{0,2}[a-z][a-z0-9_]*$ 305 argument-rgx=^[a-z][a-z0-9_]*$ 311 class-attribute-rgx=^(_?[A-Z][A-Z0-9_]*|__[a-z0-9_]+__|_?[a-z][a-z0-9_]*)$ 318 inlinevar-rgx=^[a-z][a-z0-9_]*$ 332 module-rgx=^(_?[a-z][a-z0-9_]*)|__init__$ 341 …_[a-z0-9_]+__|next)|(?P<camel_case>_{0,2}[A-Z][a-zA-Z0-9]*)|(?P<snake_case>_{0,2}[a-z][a-z0-9_]*))$
|
/system/core/libpixelflinger/codeflinger/ |
D | GGLAssembler.cpp | 415 parts.z = reg_t(obtainReg()); in build_scanline_prolog() 419 int ydzdy = parts.z.reg; in build_scanline_prolog() 422 MLA(AL, 0, parts.z.reg, Rx, dzdx, ydzdy); in build_scanline_prolog() 764 int z = parts.z.reg; in build_depth_test() local 772 CMP(AL, depth, reg_imm(z, LSR, 16)); in build_depth_test() 780 MOV(AL, 0, depth, reg_imm(z, LSR, 16)); in build_depth_test() 793 ADD(AL, 0, parts.z.reg, parts.z.reg, dzdx); in build_iterate_z()
|
/system/extras/memtrack/ |
D | Android.bp | 51 ldflags: ["-Wl,-z,muldefs"],
|
/system/tools/hidl/test/java_test/ |
D | hidl_test_java_native.cpp | 276 foo.y.z = 2.5; in TEST_F() 282 foo.aaa[i].z = 1.0f + (float)i * 0.01f; in TEST_F() 317 foo[0].y.z = 2.5; in TEST_F() 322 foo[0].aaa[i].z = 1.0f + (float)i * 0.01f; in TEST_F() 327 foo[1].y.z = -2.5; in TEST_F() 332 foo[1].aaa[i].z = 2.0f - (float)i * 0.01f; in TEST_F() 353 foo[0].y.z = 2.5; in TEST_F() 358 foo[0].aaa[i].z = 1.0f + (float)i * 0.01f; in TEST_F() 363 foo[1].y.z = -2.5; in TEST_F() 368 foo[1].aaa[i].z = 2.0f - (float)i * 0.01f; in TEST_F()
|
/system/chre/chre_api/legacy/v1_0/chre/ |
D | sensor.h | 537 float z; member
|