/AliOS-Things-master/components/ble_host/bt_host/host/ |
A D | aes_ccm.c | 41 u8_t X0[16]) in ccm_calculate_X0() 50 err = bt_encrypt_be(key, b, X0); in ccm_calculate_X0() 60 b[i] = X0[i] ^ b[i]; in ccm_calculate_X0() 67 b[i] = X0[i] ^ aad[j]; in ccm_calculate_X0() 74 err = bt_encrypt_be(key, b, X0); in ccm_calculate_X0() 81 b[i] = X0[i] ^ aad[j]; in ccm_calculate_X0() 85 b[i] = X0[i]; in ccm_calculate_X0() 88 err = bt_encrypt_be(key, b, X0); in ccm_calculate_X0()
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | blowfish.c | 244 uint32_t X0, X1; in mbedtls_blowfish_crypt_ecb() local 251 GET_UINT32_BE( X0, input, 0 ); 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() 263 PUT_UINT32_BE( X0, output, 0 ); 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 877 GET_UINT32_LE( X0, input, 0 ); X0 ^= *RK++; in mbedtls_internal_aes_encrypt() 888 AES_FROUND( Y0, Y1, Y2, Y3, X0, X1, X2, X3 ); in mbedtls_internal_aes_encrypt() 890 X0 = *RK++ ^ \ in mbedtls_internal_aes_encrypt() 914 PUT_UINT32_LE( X0, output, 0 ); in mbedtls_internal_aes_encrypt() 941 uint32_t *RK, X0, X1, X2, X3, Y0, Y1, Y2, Y3; in mbedtls_internal_aes_decrypt() local 945 GET_UINT32_LE( X0, input, 0 ); X0 ^= *RK++; in mbedtls_internal_aes_decrypt() 956 AES_RROUND( Y0, Y1, Y2, Y3, X0, X1, X2, X3 ); in mbedtls_internal_aes_decrypt() 958 X0 = *RK++ ^ \ in mbedtls_internal_aes_decrypt() [all …]
|
/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 685 GET_UINT32_LE(X0, input, 0); in infra_aes_internal_aes_encrypt() 686 X0 ^= *RK++; in infra_aes_internal_aes_encrypt() 699 AES_FROUND(Y0, Y1, Y2, Y3, X0, X1, X2, X3); in infra_aes_internal_aes_encrypt() 701 X0 = *RK++ ^ ((uint32_t)FSb[(Y0) & 0xFF]) ^ in infra_aes_internal_aes_encrypt() 721 PUT_UINT32_LE(X0, output, 0); in infra_aes_internal_aes_encrypt() 743 GET_UINT32_LE(X0, input, 0); in infra_aes_internal_aes_decrypt() 744 X0 ^= *RK++; in infra_aes_internal_aes_decrypt() 757 AES_RROUND(Y0, Y1, Y2, Y3, X0, X1, X2, X3); in infra_aes_internal_aes_decrypt() 759 X0 = *RK++ ^ ((uint32_t)RSb[(Y0) & 0xFF]) ^ in infra_aes_internal_aes_decrypt() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/ |
A D | tif_color.c | 62 *X = cielab->X0 * (tmp - 0.13793F) / 7.787F; in TIFFCIELabToXYZ() 64 *X = cielab->X0 * tmp * tmp * tmp; in TIFFCIELabToXYZ() 163 cielab->X0 = refWhite[0]; in TIFFCIELabToRGBInit()
|
A D | tiffio.h | 169 float X0, Y0, Z0; /* Reference white point */ member
|
/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() 903 *X0 = info_ptr->pcal_X0; 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 371 info_ptr->pcal_X0 = X0; in png_set_pCAL()
|
A D | png.h | 2039 png_inforp info_ptr, png_charp *purpose, png_int_32 *X0, 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 2309 X0 = png_get_int_32((png_bytep)buf+1); 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/solutions/eduk1_demo/k1_apps/gyroscope/ |
A D | gyroscope.md | 40 MPU-60X0是世界上第一款集成 6 轴MotionTracking设备。它集成了**3轴MEMS陀螺仪,3轴MEMS加速度计**,以及一个可扩展的数字运动处理器 DMP( Digita…
|
/AliOS-Things-master/components/csi/csi2/include/core/ |
A D | core_801.h | 207 uint32_t X0: 1; /*!< bit: 0 Non executable attribute setting */ member
|
A D | core_802.h | 221 uint32_t X0: 1; /*!< bit: 0 Non executable attribute setting */ member
|
A D | core_803.h | 222 uint32_t X0: 1; /*!< bit: 0 Non executable attribute setting */ member
|
A D | core_804.h | 225 uint32_t X0: 1; /*!< bit: 0 Non executable attribute setting */ member
|
A D | core_805.h | 219 uint32_t X0: 1; /*!< bit: 0 Non executable attribute setting */ member
|
/AliOS-Things-master/components/csi/csi1/include/core/ |
A D | core_801.h | 207 uint32_t X0: 1; /*!< bit: 0 Non executable attribute setting */ member
|
A D | core_802.h | 221 uint32_t X0: 1; /*!< bit: 0 Non executable attribute setting */ member
|
A D | core_805.h | 219 uint32_t X0: 1; /*!< bit: 0 Non executable attribute setting */ member
|
A D | core_803.h | 222 uint32_t X0: 1; /*!< bit: 0 Non executable attribute setting */ member
|
A D | core_804.h | 222 uint32_t X0: 1; /*!< bit: 0 Non executable attribute setting */ member
|
/AliOS-Things-master/components/SDL2/src/image/VisualC/external/include/ |
A D | tiffio.h | 169 float X0, Y0, Z0; /* Reference white point */ member
|
A D | png.h | 2039 png_inforp info_ptr, png_charp *purpose, png_int_32 *X0, 2046 png_inforp info_ptr, png_const_charp purpose, png_int_32 X0, png_int_32 X1,
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/images/ |
A D | minisblack-1c-8b.pgm | 76 …����mfhnwxw~�����������������������g!&+38BCHKNSYZXYW[`h�����b[X.:96221$4X0 be#~m-B7*d�������…
|