| /components/net/lwip/lwip-2.1.2/src/netif/ppp/polarssl/ |
| A D | md4.c | 114 #define F(x, y, z) ((x & y) | ((~x) & z)) in md4_process() macro 115 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x; a = S(a,s); } in md4_process() 135 #undef F in md4_process() 137 #define F(x,y,z) ((x & y) | (x & z) | (y & z)) in md4_process() macro 138 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x5A827999; a = S(a,s); } in md4_process() 158 #undef F in md4_process() 160 #define F(x,y,z) (x ^ y ^ z) in md4_process() macro 161 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x6ED9EBA1; a = S(a,s); } in md4_process() 180 #undef F in md4_process()
|
| A D | md5.c | 110 a += F(b,c,d) + X[k] + t; a = S(a,s) + b; \ in md5_process() 118 #define F(x,y,z) (z ^ (x & (y ^ z))) in md5_process() macro 137 #undef F in md5_process() 139 #define F(x,y,z) (y ^ (z & (x ^ y))) in md5_process() macro 158 #undef F in md5_process() 160 #define F(x,y,z) (x ^ y ^ z) in md5_process() macro 179 #undef F in md5_process() 181 #define F(x,y,z) (y ^ (x | ~z)) in md5_process() macro 200 #undef F in md5_process()
|
| A D | sha1.c | 118 e += S(a,5) + F(b,c,d) + K + x; b = S(b,30); \ in sha1_process() 127 #define F(x,y,z) (z ^ (x & (y ^ z))) in sha1_process() macro 152 #undef F in sha1_process() 154 #define F(x,y,z) (x ^ y ^ z) in sha1_process() macro 179 #undef F in sha1_process() 181 #define F(x,y,z) ((x & y) | (z & (x | y))) in sha1_process() macro 206 #undef F in sha1_process() 208 #define F(x,y,z) (x ^ y ^ z) in sha1_process() macro 233 #undef F in sha1_process()
|
| /components/net/lwip/lwip-2.0.3/src/netif/ppp/polarssl/ |
| A D | md4.c | 114 #define F(x, y, z) ((x & y) | ((~x) & z)) in md4_process() macro 115 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x; a = S(a,s); } in md4_process() 135 #undef F in md4_process() 137 #define F(x,y,z) ((x & y) | (x & z) | (y & z)) in md4_process() macro 138 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x5A827999; a = S(a,s); } in md4_process() 158 #undef F in md4_process() 160 #define F(x,y,z) (x ^ y ^ z) in md4_process() macro 161 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x6ED9EBA1; a = S(a,s); } in md4_process() 180 #undef F in md4_process()
|
| A D | md5.c | 110 a += F(b,c,d) + X[k] + t; a = S(a,s) + b; \ in md5_process() 118 #define F(x,y,z) (z ^ (x & (y ^ z))) in md5_process() macro 137 #undef F in md5_process() 139 #define F(x,y,z) (y ^ (z & (x ^ y))) in md5_process() macro 158 #undef F in md5_process() 160 #define F(x,y,z) (x ^ y ^ z) in md5_process() macro 179 #undef F in md5_process() 181 #define F(x,y,z) (y ^ (x | ~z)) in md5_process() macro 200 #undef F in md5_process()
|
| A D | sha1.c | 118 e += S(a,5) + F(b,c,d) + K + x; b = S(b,30); \ in sha1_process() 127 #define F(x,y,z) (z ^ (x & (y ^ z))) in sha1_process() macro 152 #undef F in sha1_process() 154 #define F(x,y,z) (x ^ y ^ z) in sha1_process() macro 179 #undef F in sha1_process() 181 #define F(x,y,z) ((x & y) | (z & (x | y))) in sha1_process() macro 206 #undef F in sha1_process() 208 #define F(x,y,z) (x ^ y ^ z) in sha1_process() macro 233 #undef F in sha1_process()
|
| /components/libc/cplusplus/cpp11/gcc/ |
| A D | thread | 70 template <class F, class ...Args> 71 explicit thread(F&& f, Args&&... args) 74 std::forward<F>(f), 134 invoker(Callable&& F) : func(std::forward<Callable>(F)) { } 140 shared_ptr<invoker<Callable>> make_invoker_ptr(Callable&& F) 142 return std::make_shared<invoker<Callable>>(std::forward<Callable>(F));
|
| /components/net/lwip/lwip-1.4.1/src/netif/ppp/ |
| A D | md5.c | 73 #define F(x, y, z) (((x) & (y)) | ((~x) & (z))) macro 84 {(a) += F ((b), (c), (d)) + (x) + (u32_t)(ac); \
|
| /components/net/lwip/lwip-1.4.1/doc/ |
| A D | savannah.txt | 96 cvs rtag -F -r DEVEL merged_from_DEVEL_to_main lwip
|
| /components/net/lwip/lwip-1.4.1/ |
| A D | UPGRADING | 39 * correctly implemented SO(F)_REUSEADDR
|
| A D | CHANGELOG | 1280 SO(F)_BROADCAST filter for all API layers. Avoid the unindented reception
|
| /components/lwp/arch/arm/cortex-a/ |
| A D | lwp_gcc.S | 26 #define F_Bit 0x40 @; when F bit is set, FIQ is disabled
|
| /components/net/lwip/lwip-2.0.3/ |
| A D | UPGRADING | 138 * correctly implemented SO(F)_REUSEADDR
|
| A D | CHANGELOG | 2236 SO(F)_BROADCAST filter for all API layers. Avoid the unindented reception
|
| /components/net/lwip/lwip-2.1.2/ |
| A D | UPGRADING | 173 * correctly implemented SO(F)_REUSEADDR
|
| A D | CHANGELOG | 2489 SO(F)_BROADCAST filter for all API layers. Avoid the unindented reception
|