/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/polarssl/ |
A D | sha1.c | 111 temp = W[(t - 3) & 0x0F] ^ W[(t - 8) & 0x0F] ^ \ in sha1_process() 112 W[(t - 14) & 0x0F] ^ W[ t & 0x0F], \ in sha1_process() 130 P( A, B, C, D, E, W[0] ); in sha1_process() 131 P( E, A, B, C, D, W[1] ); in sha1_process() 132 P( D, E, A, B, C, W[2] ); in sha1_process() 133 P( C, D, E, A, B, W[3] ); in sha1_process() 134 P( B, C, D, E, A, W[4] ); in sha1_process() 135 P( A, B, C, D, E, W[5] ); in sha1_process() 136 P( E, A, B, C, D, W[6] ); in sha1_process() 137 P( D, E, A, B, C, W[7] ); in sha1_process() [all …]
|
/AliOS-Things-master/components/linkkit/infra/ |
A D | infra_sha1.c | 103 (temp = W[(t - 3) & 0x0F] ^ W[(t - 8) & 0x0F] ^ W[(t - 14) & 0x0F] ^ \ in utils_sha1_process() 122 P(A, B, C, D, E, W[0]); in utils_sha1_process() 123 P(E, A, B, C, D, W[1]); in utils_sha1_process() 124 P(D, E, A, B, C, W[2]); in utils_sha1_process() 125 P(C, D, E, A, B, W[3]); in utils_sha1_process() 126 P(B, C, D, E, A, W[4]); in utils_sha1_process() 127 P(A, B, C, D, E, W[5]); in utils_sha1_process() 128 P(E, A, B, C, D, W[6]); in utils_sha1_process() 129 P(D, E, A, B, C, W[7]); in utils_sha1_process() 130 P(C, D, E, A, B, W[8]); in utils_sha1_process() [all …]
|
A D | infra_sha256.c | 108 #define R(t) (W[t] = S1(W[t - 2]) + W[t - 7] + S0(W[t - 15]) + W[t - 16]) 120 uint32_t temp1, temp2, W[64]; in utils_sha256_process() local 131 GET_UINT32_BE(W[i], data, 4 * i); in utils_sha256_process() 136 P(A[0], A[1], A[2], A[3], A[4], A[5], A[6], A[7], W[i], K[i]); in utils_sha256_process() 150 GET_UINT32_BE(W[i], data, 4 * i); in utils_sha256_process() 154 P(A[0], A[1], A[2], A[3], A[4], A[5], A[6], A[7], W[i + 0], K[i + 0]); in utils_sha256_process() 155 P(A[7], A[0], A[1], A[2], A[3], A[4], A[5], A[6], W[i + 1], K[i + 1]); in utils_sha256_process() 156 P(A[6], A[7], A[0], A[1], A[2], A[3], A[4], A[5], W[i + 2], K[i + 2]); in utils_sha256_process() 157 P(A[5], A[6], A[7], A[0], A[1], A[2], A[3], A[4], W[i + 3], K[i + 3]); in utils_sha256_process() 158 P(A[4], A[5], A[6], A[7], A[0], A[1], A[2], A[3], W[i + 4], K[i + 4]); in utils_sha256_process() [all …]
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | sha1.c | 159 temp = W[( t - 3 ) & 0x0F] ^ W[( t - 8 ) & 0x0F] ^ \ in mbedtls_internal_sha1_process() 160 W[( t - 14 ) & 0x0F] ^ W[ t & 0x0F], \ in mbedtls_internal_sha1_process() 178 P( A, B, C, D, E, W[0] ); in mbedtls_internal_sha1_process() 179 P( E, A, B, C, D, W[1] ); in mbedtls_internal_sha1_process() 180 P( D, E, A, B, C, W[2] ); in mbedtls_internal_sha1_process() 181 P( C, D, E, A, B, W[3] ); in mbedtls_internal_sha1_process() 182 P( B, C, D, E, A, W[4] ); in mbedtls_internal_sha1_process() 183 P( A, B, C, D, E, W[5] ); in mbedtls_internal_sha1_process() 184 P( E, A, B, C, D, W[6] ); in mbedtls_internal_sha1_process() 185 P( D, E, A, B, C, W[7] ); in mbedtls_internal_sha1_process() [all …]
|
A D | sha256.c | 189 W[t] = S1(W[t - 2]) + W[t - 7] + \ 190 S0(W[t - 15]) + W[t - 16] \ 203 uint32_t temp1, temp2, W[64]; in mbedtls_internal_sha256_process() local 217 GET_UINT32_BE( W[i], data, 4 * i ); in mbedtls_internal_sha256_process() 221 P( A[0], A[1], A[2], A[3], A[4], A[5], A[6], A[7], W[i], K[i] ); in mbedtls_internal_sha256_process() 228 GET_UINT32_BE( W[i], data, 4 * i ); in mbedtls_internal_sha256_process() 232 P( A[0], A[1], A[2], A[3], A[4], A[5], A[6], A[7], W[i+0], K[i+0] ); in mbedtls_internal_sha256_process() 233 P( A[7], A[0], A[1], A[2], A[3], A[4], A[5], A[6], W[i+1], K[i+1] ); in mbedtls_internal_sha256_process() 234 P( A[6], A[7], A[0], A[1], A[2], A[3], A[4], A[5], W[i+2], K[i+2] ); in mbedtls_internal_sha256_process() 235 P( A[5], A[6], A[7], A[0], A[1], A[2], A[3], A[4], W[i+3], K[i+3] ); in mbedtls_internal_sha256_process() [all …]
|
A D | sha512.c | 221 uint64_t temp1, temp2, W[80]; in mbedtls_internal_sha512_process() local 248 GET_UINT64_BE( W[i], data, i << 3 ); in mbedtls_internal_sha512_process() 253 W[i] = S1(W[i - 2]) + W[i - 7] + in mbedtls_internal_sha512_process() 254 S0(W[i - 15]) + W[i - 16]; in mbedtls_internal_sha512_process() 269 P( A, B, C, D, E, F, G, H, W[i], K[i] ); i++; in mbedtls_internal_sha512_process() 270 P( H, A, B, C, D, E, F, G, W[i], K[i] ); i++; in mbedtls_internal_sha512_process() 271 P( G, H, A, B, C, D, E, F, W[i], K[i] ); i++; in mbedtls_internal_sha512_process() 272 P( F, G, H, A, B, C, D, E, W[i], K[i] ); i++; in mbedtls_internal_sha512_process() 273 P( E, F, G, H, A, B, C, D, W[i], K[i] ); i++; in mbedtls_internal_sha512_process() 274 P( D, E, F, G, H, A, B, C, W[i], K[i] ); i++; in mbedtls_internal_sha512_process() [all …]
|
A D | bignum.c | 1760 memset( W, 0, sizeof( W ) ); in mbedtls_mpi_exp_mod() 1825 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &W[j], &W[1] ) ); in mbedtls_mpi_exp_mod() 1828 MBEDTLS_MPI_CHK( mpi_montmul( &W[j], &W[j], N, mm, &T ) ); in mbedtls_mpi_exp_mod() 1836 MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &W[i], &W[i - 1] ) ); in mbedtls_mpi_exp_mod() 1838 MBEDTLS_MPI_CHK( mpi_montmul( &W[i], &W[1], N, mm, &T ) ); in mbedtls_mpi_exp_mod() 1933 mbedtls_mpi_free( &W[i] ); in mbedtls_mpi_exp_mod() 2193 mbedtls_mpi W, R, T, A, RR; in mpi_miller_rabin() local 2207 s = mbedtls_mpi_lsb( &W ); in mpi_miller_rabin() 2223 k = mbedtls_mpi_bitlen( &W ); in mpi_miller_rabin() 2240 if( mbedtls_mpi_cmp_mpi( &A, &W ) == 0 || in mpi_miller_rabin() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/test/images/ |
A D | rgb-3c-8b.ppm | 105 �x �p,��L��e��q��k��]��U��U��S��T��W��U��S��R��P��N��O��P��X��]��W��`��W��S��Q��O��W��X��S��T��… 139 W 147 jP{�>l�<g�;g�9v�5��B��O��W��R��W��^��[��X��U��W~�P{�P�T�V��Y��W��]��l��w�·�ӛ�ֲ�ұ�̗�Ȁ��l��lm�B… 249 …Iu�Ns�Kn�Bu�Fz�Ew�E|�Gz�J~�N{�O}�Q��[��]��_��[��\��[��]��VF9"3DWn@,j>.f.%W9)!… 278 …�D��D��D��H��J��K��N��N��P��R��R��P��P��T��S��S��R��X��X_18ELVVWWVY\YU\ … 282 …D��F��C��D��D��G��G��J��L��L��N��P��P��Q��R��Q��R��T��Q��U��]��J?>JLQRWVWXX W 286 …F��B��B��C��B��M��J��K��L��O��P��S��S��P��R��O��U��T��R��X��`|f28INTWTZ Z V[[X 287 W 303 \ W[XZWSOSWP O 307 …F��J��M��P��Q��Q��Q��P��S��S��V��TrH 7QQTXXZZZ]^^]WXUY UQPW [all …]
|
A D | miniswhite-1c-1b.pbm | 5 …7���������V@����������������w����_�\�տ�������W{���s�� �?������W����… 11 …?���������[U���ȿ���������R���2z����� ���_�_�����������{&W�������@���ޛ���1…
|
A D | minisblack-1c-8b.pgm | 4 …W�����������g@?:EE`�_PRPSUVWXXWVSSRRTQRSUXYYXYYYZZ\]]]_a```a_`^`_`b`b`e�hCD���]x���������̺������º… 48 …;}�qU@60.)'Ql[J=4.1//"U������������������������������YBNRPQTWZ[]^_`ceglkjif[W�|��ʵ;OSVY][]babdfaa… 58 "(/1# 4>?GINROPRPSRTTW\W4JG>@LMIEJIH><<AKF;899662)C����������������������������xW��������������… 76 …W��������������������������jG6\isstxx{��������������{{���������������mfhnwxw~������������������… 87 $/:>:?@?D>>?=?C=OeWXXUTSPIE?565127:9&W���������������������������//GGP_igalrspfYRT_iqx… 130 3ISX]ZZXXZ[UQRVV[ghks{��������eXWWZ^W���������������������������������������������������������…
|
/AliOS-Things-master/components/linksdk/core/utils/ |
A D | core_sha256.c | 107 W[t] = S1(W[t - 2]) + W[t - 7] + \ 108 S0(W[t - 15]) + W[t - 16] \ 120 uint32_t temp1, temp2, W[64]; in core_sha256_process() local 131 GET_UINT32_BE(W[i], data, 4 * i); in core_sha256_process() 136 P(A[0], A[1], A[2], A[3], A[4], A[5], A[6], A[7], W[i], K[i]); in core_sha256_process() 150 GET_UINT32_BE(W[i], data, 4 * i); in core_sha256_process() 154 P(A[0], A[1], A[2], A[3], A[4], A[5], A[6], A[7], W[i + 0], K[i + 0]); in core_sha256_process() 155 P(A[7], A[0], A[1], A[2], A[3], A[4], A[5], A[6], W[i + 1], K[i + 1]); in core_sha256_process() 156 P(A[6], A[7], A[0], A[1], A[2], A[3], A[4], A[5], W[i + 2], K[i + 2]); in core_sha256_process() 157 P(A[5], A[6], A[7], A[0], A[1], A[2], A[3], A[4], W[i + 3], K[i + 3]); in core_sha256_process() [all …]
|
/AliOS-Things-master/components/SDL2/src/video/arm/ |
A D | pixman-arm-neon-asm.h | 482 sub W, W, #(lowbit * 8 / dst_w_bpp) 584 mov W, ORIG_W 819 mov ORIG_W, W 843 subs W, W, #(pixblock_size * 2) 848 subs W, W, #pixblock_size 907 .unreq W 1024 subs W, W, #pixblock_size 1034 subs W, W, #pixblock_size 1038 subs W, W, #pixblock_size 1071 .unreq W [all …]
|
/AliOS-Things-master/components/SDL2/src/gfx/Docs/html/ |
A D | jquery.js | 20 …W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rig… variable 21 …W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.d…
|
/AliOS-Things-master/components/mqtt/example/ |
A D | aiot_mqtt_sign.c | 206 W[t] = S1(W[t - 2]) + W[t - 7] + \ 207 S0(W[t - 15]) + W[t - 16] \ 219 unsigned long int temp1, temp2, W[64]; in utils_sha256_process() local 229 GET_UINT32_BE(W[i], data, 4 * i); in utils_sha256_process() 234 P(A[0], A[1], A[2], A[3], A[4], A[5], A[6], A[7], W[i], K[i]); in utils_sha256_process()
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/ble_stack/hl/src/gap/smpc/ |
A D | smpc_crypto.h | 71 void smpc_f5_init(uint8_t conidx, uint8_t* W,uint8_t* N1,uint8_t* N2,uint8_t* A1,uint8_t* A2); 98 void smpc_f6_init(uint8_t conidx,uint8_t* W, uint8_t* N1, uint8_t* N2, uint8_t* R, uint8_t* IOcap, …
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | ssim.c | 65 int xo, int yo, int W, int H) { in SSIMGetClipped_C() argument 71 const int xmax = (xo + VP8_SSIM_KERNEL > W - 1) ? W - 1 in SSIMGetClipped_C()
|
A D | ssim_sse2.c | 106 const __m128i W = _mm_mullo_epi16(Wx, Wy); \ 113 const __m128i wa1 = _mm_mullo_epi16(a1, W); \ 114 const __m128i wb1 = _mm_mullo_epi16(b1, W); \
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/scripts/ |
A D | extrawarn.mk | 18 export KBUILD_ENABLE_EXTRA_GCC_CHECKS := $(W) 60 $(error W=$(KBUILD_ENABLE_EXTRA_GCC_CHECKS) is unknown)
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/ble_stack/hl/inc/ |
A D | smpc.h | 148 uint8_t* W; member 156 uint8_t W[16]; member
|
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_sysvideo.h | 117 #define FULLSCREEN_VISIBLE(W) \ argument 118 (((W)->flags & SDL_WINDOW_FULLSCREEN) && \ 119 ((W)->flags & SDL_WINDOW_SHOWN) && \ 120 !((W)->flags & SDL_WINDOW_MINIMIZED))
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/examples/ |
A D | test_ref.ppm | 4 …W]~W[{UXwQUs\_}hl�TXrLOmIMkDGdDH_EI^���lq�TXr~����TWtaeqv�������~��qp������������������г��������…
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/enc/ |
A D | picture_csp_enc.c | 297 const int W = RGBToGray(r, g, b); in UpdateChroma() local 298 dst[0 * uv_w] = (fixed_t)(r - W); in UpdateChroma() 299 dst[1 * uv_w] = (fixed_t)(g - W); in UpdateChroma() 300 dst[2 * uv_w] = (fixed_t)(b - W); in UpdateChroma() 410 const int W = best_y[i]; in ConvertWRGBToYUV() local 411 const int r = best_uv[off + 0 * uv_w] + W; in ConvertWRGBToYUV() 412 const int g = best_uv[off + 1 * uv_w] + W; in ConvertWRGBToYUV() 413 const int b = best_uv[off + 2 * uv_w] + W; in ConvertWRGBToYUV() 439 #define SAFE_ALLOC(W, H, T) ((T*)WebPSafeMalloc((W) * (H), sizeof(T))) argument
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | testimg.ppm | 4 …W<1\:0a7+k9.t8-|8+�9,�;/�=0�?1�?2�@3�B5�D8�E:�G=�F>�D?�B>�?=�A?�D?�E>�C8�C1�B.�B,�A.�@-�?,�?,�=-�=… 5 …W�7Y�H]�JGcS1Al6ZtDf~Nu�Z�c��f��j��n��s��t��t�r}�p}�n��m��l��k��n��p��o��o��l�k��n��p��s��r��w�…
|
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/unused/ |
A D | jmemdos.c | 486 #define HIBYTE(W) (((W) >> 8) & 0xFF) argument 487 #define LOBYTE(W) ((W) & 0xFF) argument
|
/AliOS-Things-master/hardware/chip/rtl872xd/ |
A D | ate.bin | 72 …��P� �!FHD��u�-���jh��j!F��l�0kh�0k!F��e�pi �!F���^��k �!F�8��W�0n�'8F�������C o… 140 …� �2|�X���P�ղh��B��h��B���,���E�!���u�_���T��f��E��Q�2�-��O�W����9�*�(� (�2x*… 203 ���A����9�-��OF���u@"!8��(�"!hF��#�O�&�2W�0E��� "� *1�"*�L����@(��@… 331 ��W���m�(GН�@�xC��� @.�(��'!�@B��8����m�1�m.����՝�0� … 1125 …��bҲ�B�" B�2B�A�(�(��(�#��!!�e�-� ��"!�\��� !�W�-� ��!�N�-… 1211 …N�xO�xP�xQ�xR�xS�xT�xU�xV�xW�xX�xY�x… 1355 … F��8@O��a���-��A��F�Y�j F�����j@�T@��H�( �^�#"O�a�j�#"O�a�d��W��`�#O�pBAF�Z��S�… 1742 …xr���r���r��8s��xs x�s`x�s�x8t�xxt�g�x�t�c�@x�t�_��x8u�[��xxu�W�y�u�S�@y�u x8v`xxv… 1834 …��9Ll �/`�?PB�`W 2272 …TA StorageUser ApplicationPARAMETER1USER StorageSDS Storage`W��lW… [all …]
|