/AliOS-Things-master/components/ble_host/bt_crypto/tinycrypt/source/ |
A D | ecc.c | 473 uECC_vli_modAdd(X1, X1, Z1, curve->p, num_words); /* t1 = x1 + z1^2 */ in double_jacobian_default() 476 uECC_vli_modMult_fast(X1, X1, Z1, curve); /* t1 = x1^2 - z1^4 */ in double_jacobian_default() 478 uECC_vli_modAdd(Z1, X1, X1, curve->p, num_words); /* t3 = 2*(x1^2 - z1^4) */ in double_jacobian_default() 479 uECC_vli_modAdd(X1, X1, Z1, curve->p, num_words); /* t1 = 3*(x1^2 - z1^4) */ in double_jacobian_default() 480 if (uECC_vli_testBit(X1, 0)) { in double_jacobian_default() 481 uECC_word_t l_carry = uECC_vli_add(X1, X1, curve->p, num_words); in double_jacobian_default() 493 uECC_vli_modMult_fast(X1, X1, t5, curve); /* t1 = B * (A - x3) */ in double_jacobian_default() 633 uECC_vli_modMult_fast(X1, X1, t1, curve); /* x1 * z^2 */ in apply_z() 656 apply_z(X1, Y1, z, curve); in XYcZ_initial_double() 671 uECC_vli_modMult_fast(X1, X1, t5, curve); /* t1 = x1*A = B */ in XYcZ_add() [all …]
|
/AliOS-Things-master/components/freetype/src/autofit/ |
A D | afwarp.c | 175 FT_Int X1, X2; in af_warper_compute() local 213 X1 = X2 = points[0].fx; in af_warper_compute() 219 if ( X < X1 ) in af_warper_compute() 220 X1 = X; in af_warper_compute() 225 X1 = X2 = segments[0].pos; in af_warper_compute() 231 if ( X < X1 ) in af_warper_compute() 232 X1 = X; in af_warper_compute() 238 if ( X1 >= X2 ) in af_warper_compute() 241 warper->x1 = FT_MulFix( X1, org_scale ) + org_delta; in af_warper_compute() 345 new_delta = xx1 - FT_MulFix( X1, new_scale ); in af_warper_compute() [all …]
|
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_rect.c | 317 SDL_IntersectRectAndLine(const SDL_Rect * rect, int *X1, int *Y1, int *X2, in SDL_IntersectRectAndLine() argument 335 if (!X1) { in SDL_IntersectRectAndLine() 360 x1 = *X1; in SDL_IntersectRectAndLine() 384 *X1 = rectx1; in SDL_IntersectRectAndLine() 386 *X1 = rectx2; in SDL_IntersectRectAndLine() 461 *X1 = x1; in SDL_IntersectRectAndLine()
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | blowfish.c | 244 uint32_t X0, X1; in mbedtls_blowfish_crypt_ecb() local 252 GET_UINT32_BE( X1, input, 4 ); in mbedtls_blowfish_crypt_ecb() 256 blowfish_dec( ctx, &X0, &X1 ); in mbedtls_blowfish_crypt_ecb() 260 blowfish_enc( ctx, &X0, &X1 ); in mbedtls_blowfish_crypt_ecb() 264 PUT_UINT32_BE( X1, output, 4 ); in mbedtls_blowfish_crypt_ecb()
|
A D | aes.c | 818 #define AES_FROUND(X0,X1,X2,X3,Y0,Y1,Y2,Y3) \ argument 873 uint32_t *RK, X0, X1, X2, X3, Y0, Y1, Y2, Y3; in mbedtls_internal_aes_encrypt() local 878 GET_UINT32_LE( X1, input, 4 ); X1 ^= *RK++; in mbedtls_internal_aes_encrypt() 888 AES_FROUND( Y0, Y1, Y2, Y3, X0, X1, X2, X3 ); in mbedtls_internal_aes_encrypt() 896 X1 = *RK++ ^ \ in mbedtls_internal_aes_encrypt() 915 PUT_UINT32_LE( X1, output, 4 ); in mbedtls_internal_aes_encrypt() 941 uint32_t *RK, X0, X1, X2, X3, Y0, Y1, Y2, Y3; in mbedtls_internal_aes_decrypt() local 946 GET_UINT32_LE( X1, input, 4 ); X1 ^= *RK++; in mbedtls_internal_aes_decrypt() 956 AES_RROUND( Y0, Y1, Y2, Y3, X0, X1, X2, X3 ); in mbedtls_internal_aes_decrypt() 964 X1 = *RK++ ^ \ in mbedtls_internal_aes_decrypt() [all …]
|
/AliOS-Things-master/components/ble_host/bt_crypto/tinycrypt/include/tinycrypt/ |
A D | ecc.h | 120 void (*double_jacobian)(uECC_word_t * X1, uECC_word_t * Y1, uECC_word_t * Z1, 133 void double_jacobian_default(uECC_word_t * X1, uECC_word_t * Y1, 367 void XYcZ_add(uECC_word_t * X1, uECC_word_t * Y1, uECC_word_t * X2, 377 void apply_z(uECC_word_t * X1, uECC_word_t * Y1, const uECC_word_t * const Z,
|
/AliOS-Things-master/components/linkkit/infra/ |
A D | infra_aes.c | 681 uint32_t *RK, X0, X1, X2, X3, Y0, Y1, Y2, Y3; in infra_aes_internal_aes_encrypt() local 687 GET_UINT32_LE(X1, input, 4); in infra_aes_internal_aes_encrypt() 688 X1 ^= *RK++; in infra_aes_internal_aes_encrypt() 699 AES_FROUND(Y0, Y1, Y2, Y3, X0, X1, X2, X3); in infra_aes_internal_aes_encrypt() 706 X1 = *RK++ ^ ((uint32_t)FSb[(Y1) & 0xFF]) ^ in infra_aes_internal_aes_encrypt() 722 PUT_UINT32_LE(X1, output, 4); in infra_aes_internal_aes_encrypt() 745 GET_UINT32_LE(X1, input, 4); in infra_aes_internal_aes_decrypt() 746 X1 ^= *RK++; in infra_aes_internal_aes_decrypt() 757 AES_RROUND(Y0, Y1, Y2, Y3, X0, X1, X2, X3); in infra_aes_internal_aes_decrypt() 764 X1 = *RK++ ^ ((uint32_t)RSb[(Y1) & 0xFF]) ^ in infra_aes_internal_aes_decrypt() [all …]
|
/AliOS-Things-master/hardware/arch/riscv/src/rv64fd_32gpr/ |
A D | k_arch.h | 12 long X1; member
|
/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_rect.h | 162 rect, int *X1,
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | pngget.c | 892 png_charp *purpose, png_int_32 *X0, png_int_32 *X1, int *type, int *nparams, in png_get_pCAL() argument 899 purpose != NULL && X0 != NULL && X1 != NULL && type != NULL && in png_get_pCAL() 904 *X1 = info_ptr->pcal_X1; in png_get_pCAL()
|
A D | pngtest.c | 1244 png_int_32 X0, X1; in test_one_file() local 1247 if (png_get_pCAL(read_ptr, read_info_ptr, &purpose, &X0, &X1, &type, in test_one_file() 1250 png_set_pCAL(write_ptr, write_info_ptr, purpose, X0, X1, type, in test_one_file()
|
A D | pngset.c | 313 png_const_charp purpose, png_int_32 X0, png_int_32 X1, int type, in png_set_pCAL() argument 372 info_ptr->pcal_X1 = X1; in png_set_pCAL()
|
A D | png.h | 2040 png_int_32 *X1, int *type, int *nparams, png_charp *units, 2046 png_inforp info_ptr, png_const_charp purpose, png_int_32 X0, png_int_32 X1,
|
A D | pngrutil.c | 2249 png_int_32 X0, X1; in png_handle_pCAL() local 2310 X1 = png_get_int_32((png_bytep)buf+5); in png_handle_pCAL() 2366 png_set_pCAL(png_ptr, info_ptr, (png_charp)buffer, X0, X1, type, nparams, in png_handle_pCAL()
|
/AliOS-Things-master/components/csi/csi2/include/core/ |
A D | core_801.h | 208 uint32_t X1: 1; /*!< bit: 1 Non executable attribute setting */ member
|
A D | core_802.h | 222 uint32_t X1: 1; /*!< bit: 1 Non executable attribute setting */ member
|
A D | core_803.h | 223 uint32_t X1: 1; /*!< bit: 1 Non executable attribute setting */ member
|
A D | core_804.h | 226 uint32_t X1: 1; /*!< bit: 1 Non executable attribute setting */ member
|
A D | core_805.h | 220 uint32_t X1: 1; /*!< bit: 1 Non executable attribute setting */ member
|
/AliOS-Things-master/components/csi/csi1/include/core/ |
A D | core_801.h | 208 uint32_t X1: 1; /*!< bit: 1 Non executable attribute setting */ member
|
A D | core_802.h | 222 uint32_t X1: 1; /*!< bit: 1 Non executable attribute setting */ member
|
A D | core_805.h | 220 uint32_t X1: 1; /*!< bit: 1 Non executable attribute setting */ member
|
A D | core_803.h | 223 uint32_t X1: 1; /*!< bit: 1 Non executable attribute setting */ member
|
A D | core_804.h | 223 uint32_t X1: 1; /*!< bit: 1 Non executable attribute setting */ member
|
/AliOS-Things-master/components/SDL2/src/image/VisualC/external/include/ |
A D | png.h | 2040 png_int_32 *X1, int *type, int *nparams, png_charp *units, 2046 png_inforp info_ptr, png_const_charp purpose, png_int_32 X0, png_int_32 X1,
|