Home
last modified time | relevance | path

Searched refs:C (Results 1 – 25 of 104) sorted by relevance

12345

/lib/lwip/lwip/src/netif/ppp/polarssl/
A Dmd5.c87 unsigned long X[16], A, B, C, D; in md5_process() local
115 C = ctx->state[2]; in md5_process()
120 P( A, B, C, D, 0, 7, 0xD76AA478 ); in md5_process()
121 P( D, A, B, C, 1, 12, 0xE8C7B756 ); in md5_process()
122 P( C, D, A, B, 2, 17, 0x242070DB ); in md5_process()
123 P( B, C, D, A, 3, 22, 0xC1BDCEEE ); in md5_process()
124 P( A, B, C, D, 4, 7, 0xF57C0FAF ); in md5_process()
125 P( D, A, B, C, 5, 12, 0x4787C62A ); in md5_process()
126 P( C, D, A, B, 6, 17, 0xA8304613 ); in md5_process()
127 P( B, C, D, A, 7, 22, 0xFD469501 ); in md5_process()
[all …]
A Dsha1.c123 C = ctx->state[2]; 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()
138 P( C, D, E, A, B, W[8] ); in sha1_process()
[all …]
A Dmd4.c111 C = ctx->state[2]; in md4_process()
117 P( A, B, C, D, X[ 0], 3 ); in md4_process()
118 P( D, A, B, C, X[ 1], 7 ); in md4_process()
119 P( C, D, A, B, X[ 2], 11 ); in md4_process()
120 P( B, C, D, A, X[ 3], 19 ); in md4_process()
121 P( A, B, C, D, X[ 4], 3 ); in md4_process()
122 P( D, A, B, C, X[ 5], 7 ); in md4_process()
123 P( C, D, A, B, X[ 6], 11 ); in md4_process()
124 P( B, C, D, A, X[ 7], 19 ); in md4_process()
125 P( A, B, C, D, X[ 8], 3 ); in md4_process()
[all …]
/lib/zstd/common/
A Dcpu.h97 C(sse3, 0)
102 C(vmx, 5)
103 C(smx, 6)
104 C(eist, 7)
105 C(tm2, 8)
108 C(fma, 12)
113 C(dca, 18)
120 C(aes, 25)
123 C(avx, 28)
126 #undef C
[all …]
/lib/
A Dsha1.c102 C = ctx->state[2]; in sha1_process_one()
109 P (A, B, C, D, E, W[0]); in sha1_process_one()
110 P (E, A, B, C, D, W[1]); in sha1_process_one()
111 P (D, E, A, B, C, W[2]); in sha1_process_one()
112 P (C, D, E, A, B, W[3]); in sha1_process_one()
113 P (B, C, D, E, A, W[4]); in sha1_process_one()
114 P (A, B, C, D, E, W[5]); in sha1_process_one()
115 P (E, A, B, C, D, W[6]); in sha1_process_one()
116 P (D, E, A, B, C, W[7]); in sha1_process_one()
117 P (C, D, E, A, B, W[8]); in sha1_process_one()
[all …]
A Dsha256.c61 uint32_t A, B, C, D, E, F, G, H; in sha256_process_one() local
106 C = ctx->state[2]; in sha256_process_one()
113 P(A, B, C, D, E, F, G, H, W[0], 0x428A2F98); in sha256_process_one()
114 P(H, A, B, C, D, E, F, G, W[1], 0x71374491); in sha256_process_one()
115 P(G, H, A, B, C, D, E, F, W[2], 0xB5C0FBCF); in sha256_process_one()
116 P(F, G, H, A, B, C, D, E, W[3], 0xE9B5DBA5); in sha256_process_one()
117 P(E, F, G, H, A, B, C, D, W[4], 0x3956C25B); in sha256_process_one()
118 P(D, E, F, G, H, A, B, C, W[5], 0x59F111F1); in sha256_process_one()
119 P(C, D, E, F, G, H, A, B, W[6], 0x923F82A4); in sha256_process_one()
120 P(B, C, D, E, F, G, H, A, W[7], 0xAB1C5ED5); in sha256_process_one()
[all …]
/lib/mbedtls/external/mbedtls/library/
A Dmd5.c68 uint32_t X[16], A, B, C, D; in mbedtls_internal_md5_process() member
100 local.C = ctx->state[2]; in mbedtls_internal_md5_process()
105 P(local.A, local.B, local.C, local.D, 0, 7, 0xD76AA478); in mbedtls_internal_md5_process()
106 P(local.D, local.A, local.B, local.C, 1, 12, 0xE8C7B756); in mbedtls_internal_md5_process()
107 P(local.C, local.D, local.A, local.B, 2, 17, 0x242070DB); in mbedtls_internal_md5_process()
108 P(local.B, local.C, local.D, local.A, 3, 22, 0xC1BDCEEE); in mbedtls_internal_md5_process()
109 P(local.A, local.B, local.C, local.D, 4, 7, 0xF57C0FAF); in mbedtls_internal_md5_process()
110 P(local.D, local.A, local.B, local.C, 5, 12, 0x4787C62A); in mbedtls_internal_md5_process()
111 P(local.C, local.D, local.A, local.B, 6, 17, 0xA8304613); in mbedtls_internal_md5_process()
112 P(local.B, local.C, local.D, local.A, 7, 22, 0xFD469501); in mbedtls_internal_md5_process()
[all …]
A Dripemd160.c73 uint32_t A, B, C, D, E, Ap, Bp, Cp, Dp, Ep, X[16]; in mbedtls_internal_ripemd160_process() member
95 local.C = local.Cp = ctx->state[2]; in mbedtls_internal_ripemd160_process()
127 P2(local.A, local.B, local.C, local.D, local.E, 0, 11, 5, 8); in mbedtls_internal_ripemd160_process()
128 P2(local.E, local.A, local.B, local.C, local.D, 1, 14, 14, 9); in mbedtls_internal_ripemd160_process()
129 P2(local.D, local.E, local.A, local.B, local.C, 2, 15, 7, 9); in mbedtls_internal_ripemd160_process()
130 P2(local.C, local.D, local.E, local.A, local.B, 3, 12, 0, 11); in mbedtls_internal_ripemd160_process()
131 P2(local.B, local.C, local.D, local.E, local.A, 4, 5, 9, 13); in mbedtls_internal_ripemd160_process()
132 P2(local.A, local.B, local.C, local.D, local.E, 5, 8, 2, 15); in mbedtls_internal_ripemd160_process()
133 P2(local.E, local.A, local.B, local.C, local.D, 6, 7, 11, 15); in mbedtls_internal_ripemd160_process()
248 local.C = ctx->state[1] + local.C + local.Dp; in mbedtls_internal_ripemd160_process()
[all …]
A Dsha1.c69 uint32_t temp, W[16], A, B, C, D, E; in mbedtls_internal_sha1_process() member
109 local.C = ctx->state[2]; in mbedtls_internal_sha1_process()
132 P(local.E, local.A, local.B, local.C, local.D, R(16)); in mbedtls_internal_sha1_process()
133 P(local.D, local.E, local.A, local.B, local.C, R(17)); in mbedtls_internal_sha1_process()
134 P(local.C, local.D, local.E, local.A, local.B, R(18)); in mbedtls_internal_sha1_process()
135 P(local.B, local.C, local.D, local.E, local.A, R(19)); in mbedtls_internal_sha1_process()
143 P(local.A, local.B, local.C, local.D, local.E, R(20)); in mbedtls_internal_sha1_process()
144 P(local.E, local.A, local.B, local.C, local.D, R(21)); in mbedtls_internal_sha1_process()
145 P(local.D, local.E, local.A, local.B, local.C, R(22)); in mbedtls_internal_sha1_process()
146 P(local.C, local.D, local.E, local.A, local.B, R(23)); in mbedtls_internal_sha1_process()
[all …]
A Daes.c119 V(A5, 63, 63, C6), V(84, 7C, 7C, F8), V(99, 77, 77, EE), V(8D, 7B, 7B, F6), \
126 V(BF, 9C, 9C, 23), V(F7, A4, A4, 53), V(96, 72, 72, E4), V(5B, C0, C0, 9B), \
127 V(C2, B7, B7, 75), V(1C, FD, FD, E1), V(AE, 93, 93, 3D), V(6A, 26, 26, 4C), \
135 V(1B, 09, 09, 12), V(9E, 83, 83, 1D), V(74, 2C, 2C, 58), V(2E, 1A, 1A, 34), \
142 V(DE, 4A, 4A, 94), V(D4, 4C, 4C, 98), V(E8, 58, 58, B0), V(4A, CF, CF, 85), \
146 V(F0, 50, 50, A0), V(44, 3C, 3C, 78), V(BA, 9F, 9F, 25), V(E3, A8, A8, 4B), \
151 V(4C, CD, CD, 81), V(14, 0C, 0C, 18), V(35, 13, 13, 26), V(2F, EC, EC, C3), \
157 V(CA, 46, 46, 8C), V(29, EE, EE, C7), V(D3, B8, B8, 6B), V(3C, 14, 14, 28), \
160 V(DB, 49, 49, 92), V(0A, 06, 06, 0C), V(6C, 24, 24, 48), V(E4, 5C, 5C, B8), \
302 V(8C, 61, D7, 9A), V(7A, 0C, A1, 37), V(8E, 14, F8, 59), V(89, 3C, 13, EB), \
[all …]
/lib/mbedtls/external/mbedtls/tests/suites/
A Dtest_suite_x509write.data170 mbedtls_x509_string_to_names:"C=NL,O=Offspark\\, Inc., OU=PolarSSL":"C=NL, O=Offspark\\, Inc., OU=P…
191 mbedtls_x509_string_to_names:"C=NL, O=Offspark\\+ \\> \\=, OU=PolarSSL":"C=NL, O=Offspark\\+ \\> \\…
194 mbedtls_x509_string_to_names:"C=NL, O=\\4F\\66\\66\\73\\70\\61\\72\\6B, OU=PolarSSL":"C=NL, O=Offsp…
197 mbedtls_x509_string_to_names:"C=NL, O=\\4f\\66\\66\\73\\70\\61\\72\\6b, OU=PolarSSL":"C=NL, O=Offsp…
209 mbedtls_x509_string_to_names:"C=NL, 2.5.4.10=#0C084F6666737061726B, OU=PolarSSL":"C=NL, O=Offspark,…
213 mbedtls_x509_string_to_names:"C=NL, 2.5.4.10=#0C084F6666737061726Baa, OU=PolarSSL":"C=NL, O=Offspar…
231 mbedtls_x509_string_to_names:"C=NL, 2.5.4.10=#0C, OU=PolarSSL":"":MBEDTLS_ERR_X509_INVALID_NAME:0
234 mbedtls_x509_string_to_names:"C=NL, 2.5.4.10=#0C":"":MBEDTLS_ERR_X509_INVALID_NAME:0
243 mbedtls_x509_string_to_names:"C=NL, O=#0C084F6666737061726B, OU=PolarSSL":"C=NL, O=Offspark, OU=Pol…
249 mbedtls_x509_string_to_names:"C=NL, O=#040100, OU=PolarSSL":"C=NL, O=\\x00, OU=PolarSSL":0:MAY_FAIL…
[all …]
A Dtest_suite_x509parse.data483 mbedtls_x509_dn_get_next:"C=NL, O=PolarSSL, CN=PolarSSL Server 1":0:"C O CN":3:"C=NL, O=PolarSSL, C…
486 mbedtls_x509_dn_get_next:"C=NL, O=PolarSSL, CN=PolarSSL Server 1":0x01:"C CN":2:"C=NL + O=PolarSSL,…
489 mbedtls_x509_dn_get_next:"C=NL, O=PolarSSL, CN=PolarSSL Server 1":0x03:"C":1:"C=NL + O=PolarSSL + C…
492 mbedtls_x509_dn_get_next:"C=NL, O=PolarSSL, title=Example, CN=PolarSSL Server 1":0x05:"C title":2:"
499 # 13 02 4E 4C <- PrintableString "NL"
503 # 0C 08 50 6F 6C 61 72 53 53 4C <- UTF8String "PolarSSL"
507 # 0C 10 50 6F 6C 61 72 53 53 4C 20 54 65 73 74 20 43 41 <- UTF8String "PolarSSL Test CA"
517 # 13 02 4E 4C <- PrintableString "NL"
521 # 0C 08 50 6F 6C 61 72 53 53 4C <- UTF8String "PolarSSL"
525 # 0C 10 50 6F 6C 61 72 53 53 4C 20 54 65 73 74 20 43 41 <- UTF8String "PolarSSL Test CA"
[all …]
/lib/lzma/
A Dhistory.txt30 - Some changes in ANSI-C 7z Decoder interfaces.
51 - The bug in ANSI-C LZMA Decoder was fixed:
54 - Some changes in ANSI-C 7z Decoder interfaces.
74 - C++ LZMA code now is just wrapper over ANSI-C code.
80 - Small changes for more compatibility with some C/C++ compilers.
85 - .7z ANSI-C Decoder:
95 - Small changes for more compatibility with some C/C++ compilers.
142 - LZMA# SDK (C#.NET version) was included
147 - Some GUIDs/interfaces in C++ were changed.
169 - Small fixes in C++ code
[all …]
A Dlzma.txt33 - ANSI-C/C++/C#/Java source code for LZMA compressing and decompressing
63 C/ - C files
81 7z - 7z ANSI-C Decoder
114 CS/ - C# files
131 C/C++ source code of LZMA SDK is part of 7-Zip project.
275 You can find C source code of such filters in C/Bra*.* files
310 ANSI-C LZMA Decoder
569 C++ LZMA Encoder/Decoder
573 C++ LZMA code is just wrapper over ANSI-C code.
576 C++ Notes
[all …]
/lib/mbedtls/external/mbedtls/programs/test/
A Dgenerate_cpp_dummy_build.sh8 Generate a C++ dummy build program that includes all the headers.
22 export LC_ALL=C
28 * This program is a dummy C++ program to ensure Mbed TLS library header files
29 * can be included and built with a C++ compiler.
/lib/lwip/lwip/contrib/ports/
A DCMakeCommon.cmake57 $<$<COMPILE_LANGUAGE:C>:-Wold-style-definition>
59 $<$<COMPILE_LANGUAGE:C>:-Wmissing-prototypes>
60 $<$<COMPILE_LANGUAGE:C>:-Wnested-externs>
71 $<$<COMPILE_LANGUAGE:C>:-Wc++-compat>
83 $<$<COMPILE_LANGUAGE:C>:-Wc90-c99-compat>
/lib/mbedtls/external/mbedtls/tests/data_files/
A DReadme-x509.txt7 - test-ca.crt aka "C=NL, O=PolarSSL, CN=PolarSSL Test CA"
11 - test-ca2*.crt aka "C=NL, O=PolarSSL, CN=Polarssl Test EC CA"
17 - test-int-ca.crt "C=NL, O=PolarSSL, CN=PolarSSL Test Intermediate CA"
20 - test-int-ca2.crt "C=NL, O=PolarSSL, CN=PolarSSL Test Intermediate EC CA"
24 - test-int-ca3.crt "C=UK, O=mbed TLS, CN=mbed TLS Test intermediate CA 3"
48 - C -> there is a CRL revoking this cert (see below)
63 - server1*.crt: 1* R C* P1*: misc *(server1-v1 see test-ca-v1.crt above)
87 - server6.crt, server6.pem: 2 E L C: revoked
100 - server9*.crt: 1 R C* L P1*: signed using RSASSA-PSS
A Dtest-ca.server1.db1 R 210212144406Z 110212124407Z 01 unknown /C=NL/O=PolarSSL/CN=PolarSSL Server 1
2 R 210212144400Z 110212124407Z 03 unknown /C=NL/O=PolarSSL/CN=PolarSSL Test CA
A Dtest-ca.server1.future-crl.db1 R 210212144406Z 290101124407Z 01 unknown /C=NL/O=PolarSSL/CN=PolarSSL Server 1
2 R 210212144400Z 290101124407Z 03 unknown /C=NL/O=PolarSSL/CN=PolarSSL Test CA
/lib/mbedtls/external/mbedtls/
A D.gitattributes1 # Classify all '.function' files as C for syntax highlighting purposes
2 *.function linguist-language=C
/lib/lwip/lwip/src/apps/http/makefsdata/
A Dreadme.txt1 This directory contains a script ('makefsdata') to create C code suitable for
4 There is also a plain C console application doing the same and extended a bit.
15 The C version of this program can optionally store the none-SSI files in
/lib/mbedtls/external/mbedtls/visualc/VS2017/
A DmbedTLS.sln355 {4D29BE4A-979C-C5AE-44B5-30FB37D8D4EE}.Debug|Win32.Build.0 = Debug|Win32
356 {4D29BE4A-979C-C5AE-44B5-30FB37D8D4EE}.Debug|x64.ActiveCfg = Debug|x64
357 {4D29BE4A-979C-C5AE-44B5-30FB37D8D4EE}.Debug|x64.Build.0 = Debug|x64
361 {4D29BE4A-979C-C5AE-44B5-30FB37D8D4EE}.Release|x64.Build.0 = Release|x64
451 {C429B336-1B30-119C-3B34-21A186D6744F}.Debug|Win32.Build.0 = Debug|Win32
452 {C429B336-1B30-119C-3B34-21A186D6744F}.Debug|x64.ActiveCfg = Debug|x64
453 {C429B336-1B30-119C-3B34-21A186D6744F}.Debug|x64.Build.0 = Debug|x64
508 {95C50864-854C-2A11-4C91-BCE654E344FB}.Debug|x64.ActiveCfg = Debug|x64
509 {95C50864-854C-2A11-4C91-BCE654E344FB}.Debug|x64.Build.0 = Debug|x64
732 {D4D691D4-137C-CBFA-735B-D46636D7E4D8}.Debug|x64.ActiveCfg = Debug|x64
[all …]
/lib/mbedtls/external/mbedtls/docs/proposed/
A Dpsa-driver-developer-guide.md26C linkage, and to declare these functions in a **driver description file**. The driver description…
33 * C header files defining the types required by the driver description. The names of these header f…
36 ## Driver C interfaces
/lib/mbedtls/external/mbedtls/3rdparty/everest/
A DREADME.md3 This is a formally verified implementation of Curve25519-based handshakes. The C code is automatica…
5 …orted platforms are currently `x86` and `x86_64` using gcc or clang, and Visual C (2010 and later).
/lib/mbedtls/external/mbedtls/tests/data_files/dir1/
A Dtest-ca.crt6 Issuer: C=NL, O=PolarSSL, CN=PolarSSL Test CA
10 Subject: C=NL, O=PolarSSL, CN=PolarSSL Test CA
41 DirName:/C=NL/O=PolarSSL/CN=PolarSSL Test CA

Completed in 68 milliseconds

12345