/AliOS-Things-master/components/SDL2/src/render/software/ |
A D | SDL_blendpoint.c | 31 Uint8 g, Uint8 b, Uint8 a) in SDL_BlendPoint_RGB555() 57 Uint8 g, Uint8 b, Uint8 a) in SDL_BlendPoint_RGB565() 83 Uint8 g, Uint8 b, Uint8 a) in SDL_BlendPoint_RGB888() 108 SDL_BlendPoint_ARGB8888(SDL_Surface * dst, int x, int y, SDL_BlendMode blendMode, in SDL_BlendPoint_ARGB8888() 109 Uint8 r, Uint8 g, Uint8 b, Uint8 a) in SDL_BlendPoint_ARGB8888() 135 Uint8 g, Uint8 b, Uint8 a) in SDL_BlendPoint_RGB() 186 Uint8 g, Uint8 b, Uint8 a) in SDL_BlendPoint_RGBA() 217 SDL_BlendPoint(SDL_Surface * dst, int x, int y, SDL_BlendMode blendMode, Uint8 r, in SDL_BlendPoint() 218 Uint8 g, Uint8 b, Uint8 a) in SDL_BlendPoint() 279 SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a) in SDL_BlendPoints() [all …]
|
/AliOS-Things-master/components/freetype/include/config/ |
A D | ftconfig.h | 348 FT_Int32 b ) in FT_MulFix_arm() 381 FT_Int32 b ) in FT_MulFix_arm() 417 FT_Int32 b ) in FT_MulFix_i386() 453 FT_Int32 b ) in FT_MulFix_i386() 486 FT_Int32 b ) in FT_MulFix_x86_64() 561 #define FT_LOCAL_DEF( x ) x argument 573 #define FT_BASE( x ) extern "C" x argument 575 #define FT_BASE( x ) extern x argument 584 #define FT_BASE_DEF( x ) x argument 586 #define FT_BASE_DEF( x ) x argument [all …]
|
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/polarssl/ |
A D | md4.c | 53 #define GET_ULONG_LE(n,b,i) \ argument 63 #define PUT_ULONG_LE(n,b,i) \ argument 107 #define S(x,n) ((x << n) | ((x & 0xFFFFFFFF) >> (32 - n))) in md4_process() argument 114 #define F(x, y, z) ((x & y) | ((~x) & z)) in md4_process() argument 115 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x; a = S(a,s); } in md4_process() argument 137 #define F(x,y,z) ((x & y) | (x & z) | (y & z)) in md4_process() argument 138 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x5A827999; a = S(a,s); } in md4_process() argument 160 #define F(x,y,z) (x ^ y ^ z) in md4_process() argument 161 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x6ED9EBA1; a = S(a,s); } in md4_process() argument
|
A D | md5.c | 52 #define GET_ULONG_LE(n,b,i) \ argument 62 #define PUT_ULONG_LE(n,b,i) \ argument 106 #define S(x,n) ((x << n) | ((x & 0xFFFFFFFF) >> (32 - n))) in md5_process() argument 108 #define P(a,b,c,d,k,s,t) \ in md5_process() argument 118 #define F(x,y,z) (z ^ (x & (y ^ z))) in md5_process() argument 139 #define F(x,y,z) (y ^ (z & (x ^ y))) in md5_process() argument 160 #define F(x,y,z) (x ^ y ^ z) in md5_process() argument 181 #define F(x,y,z) (y ^ (x | ~z)) in md5_process() argument
|
A D | sha1.c | 52 #define GET_ULONG_BE(n,b,i) \ argument 62 #define PUT_ULONG_BE(n,b,i) \ argument 107 #define S(x,n) ((x << n) | ((x & 0xFFFFFFFF) >> (32 - n))) in sha1_process() argument 116 #define P(a,b,c,d,e,x) \ in sha1_process() argument 127 #define F(x,y,z) (z ^ (x & (y ^ z))) in sha1_process() argument 154 #define F(x,y,z) (x ^ y ^ z) in sha1_process() argument 181 #define F(x,y,z) ((x & y) | (z & (x | y))) in sha1_process() argument 208 #define F(x,y,z) (x ^ y ^ z) in sha1_process() argument
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/kissfft/ |
A D | _kiss_fft_guts.h | 58 # define CHECK_OVERFLOW_OP(a,op,b) \ argument 69 # define C_MUL(m,a,b) \ argument 73 # define DIVSCALAR(x,k) \ argument 86 # define S_MUL(a,b) ( (a)*(b) ) argument 87 #define C_MUL(m,a,b) \ argument 100 #define C_ADD( res, a,b)\ argument 106 #define C_SUB( res, a,b)\ argument 130 # define HALF_OF(x) ((x)>>1) argument 134 # define HALF_OF(x) ((x)*_mm_set1_ps(.5)) argument 138 # define HALF_OF(x) ((x)*.5) argument [all …]
|
/AliOS-Things-master/components/SDL2/src/test/ |
A D | SDL_test_md5.c | 73 #define F(x, y, z) (((x) & (y)) | ((~x) & (z))) argument 74 #define G(x, y, z) (((x) & (z)) | ((y) & (~z))) argument 75 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument 76 #define I(x, y, z) ((y) ^ ((x) | (~z))) argument 79 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) argument 84 #define FF(a, b, c, d, x, s, ac) \ argument 89 #define GG(a, b, c, d, x, s, ac) \ argument 94 #define HH(a, b, c, d, x, s, ac) \ argument 99 #define II(a, b, c, d, x, s, ac) \ argument 234 MD5UINT4 a = buf[0], b = buf[1], c = buf[2], d = buf[3]; in SDLTest_Md5Transform() local
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/multimedia/speech/inc/ |
A D | ae_math.h | 28 #define AE_ABS(x) ((x) > 0 ? (x) : (-(x))) argument 30 #define AE_FLOOR(x) (floorf(x)) argument 32 #define AE_ROUND(x) (roundf(x)) argument 34 #define AE_INT(x) ((int)(x)) argument 41 #define AE_MIN(a,b) ((a) < (b) ? (a) : (b)) argument 43 #define AE_MAX(a,b) ((a) > (b) ? (a) : (b)) argument 45 #define SQUARE(x) ((x) * (x)) argument 50 #define AE_SIN(x) sinf(x) argument 51 #define AE_COS(x) cosf(x) argument 53 #define AE_SIN(x) arm_sin_f32(x) argument [all …]
|
/AliOS-Things-master/components/py_engine/engine/lib/crypto-algorithms/ |
A D | sha256.c | 21 #define ROTLEFT(a,b) (((a) << (b)) | ((a) >> (32-(b)))) argument 22 #define ROTRIGHT(a,b) (((a) >> (b)) | ((a) << (32-(b)))) argument 24 #define CH(x,y,z) (((x) & (y)) ^ (~(x) & (z))) argument 25 #define MAJ(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument 26 #define EP0(x) (ROTRIGHT(x,2) ^ ROTRIGHT(x,13) ^ ROTRIGHT(x,22)) argument 27 #define EP1(x) (ROTRIGHT(x,6) ^ ROTRIGHT(x,11) ^ ROTRIGHT(x,25)) argument 28 #define SIG0(x) (ROTRIGHT(x,7) ^ ROTRIGHT(x,18) ^ ((x) >> 3)) argument 29 #define SIG1(x) (ROTRIGHT(x,17) ^ ROTRIGHT(x,19) ^ ((x) >> 10)) argument 46 WORD a, b, c, d, e, f, g, h, i, j, t1, t2, m[64]; in sha256_transform() local
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/gregbook/ |
A D | readpng.h | 62 # define MAX(a,b) ((a) > (b)? (a) : (b)) argument 63 # define MIN(a,b) ((a) < (b)? (a) : (b)) argument 67 # define Trace(x) {fprintf x ; fflush(stderr); fflush(stdout);} argument 69 # define Trace(x) ; argument
|
/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | bytearray_slice_assign.py | 8 x = bytearray(range(10)) variable 45 b = bytearray(2) variable 49 b = bytearray(10) variable 54 b = bytearray(x) variable 59 b = bytearray(2) variable 64 b = bytearray(b'12345678') variable
|
A D | del_global.py | 7 x = 1 variable 30 b = 3 variable 42 b = 2 variable 59 b = 2 variable
|
A D | fun_kwonly.py | 10 def f(*, a, b): argument 17 def f(a, *, b, c): argument 40 def f(a, *, b, **kw): argument 47 def f(*a, b, c): argument 54 def f(a, *b, c): 62 def f(*, x=lambda:1): argument
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | md4.c | 56 #define GET_UINT32_LE(n,b,i) \ argument 66 #define PUT_UINT32_LE(n,b,i) \ argument 140 #define S(x,n) ((x << n) | ((x & 0xFFFFFFFF) >> (32 - n))) in mbedtls_internal_md4_process() argument 147 #define F(x, y, z) ((x & y) | ((~x) & z)) in mbedtls_internal_md4_process() argument 148 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x; a = S(a,s); } in mbedtls_internal_md4_process() argument 170 #define F(x,y,z) ((x & y) | (x & z) | (y & z)) in mbedtls_internal_md4_process() argument 171 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x5A827999; a = S(a,s); } in mbedtls_internal_md4_process() argument 193 #define F(x,y,z) (x ^ y ^ z) in mbedtls_internal_md4_process() argument 194 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x6ED9EBA1; a = S(a,s); } in mbedtls_internal_md4_process() argument
|
A D | aria.c | 68 #define GET_UINT32_LE( n, b, i ) \ argument 101 static inline uint32_t aria_p1( uint32_t x ) in aria_p1() 110 static inline uint32_t aria_p1( uint32_t x ) in aria_p1() 122 #define ARIA_P1(x) ARIA_P2( ARIA_P3( x ) ) argument 152 static inline uint32_t aria_p3( uint32_t x ) in aria_p3() 181 #define ARIA_P3(x) ARIA_P2( ARIA_P1 ( x ) ) argument 207 static inline void aria_a( uint32_t *a, uint32_t *b, in aria_a() 239 static inline void aria_sl( uint32_t *a, uint32_t *b, in aria_sl() 375 uint32_t a, b, c, d; in aria_fo_xor() local 397 uint32_t a, b, c, d; in aria_fe_xor() local [all …]
|
/AliOS-Things-master/components/linksdk/components/ota/ |
A D | ota_md5.c | 8 #define GET_UINT32_LE(n,b,i) \ argument 18 #define PUT_UINT32_LE(n,b,i) \ argument 87 #define S(x,n) ((x << n) | ((x & 0xFFFFFFFF) >> (32 - n))) in utils_internal_md5_process() argument 89 #define P(a,b,c,d,k,s,t) \ in utils_internal_md5_process() argument 99 #define F(x,y,z) (z ^ (x & (y ^ z))) in utils_internal_md5_process() argument 120 #define F(x,y,z) (y ^ (z & (x ^ y))) in utils_internal_md5_process() argument 141 #define F(x,y,z) (x ^ y ^ z) in utils_internal_md5_process() argument 162 #define F(x,y,z) (y ^ (x | ~z)) in utils_internal_md5_process() argument
|
/AliOS-Things-master/components/py_engine/tests/float/ |
A D | float_divmod.py | 5 def test(x, y): argument 17 b = 0.7 variable 24 x = (i - 12.5) / 6 variable
|
A D | float_divmod_relaxed.py | 8 def test(x, y): argument 19 b = 0.7 variable 26 x = (i - 12.5) / 6 variable
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | cutils.h | 34 #define likely(x) __builtin_expect(!!(x), 1) argument 35 #define unlikely(x) __builtin_expect(!!(x), 0) argument 40 #define xglue(x, y) x ## y argument 41 #define glue(x, y) xglue(x, y) argument 49 #define countof(x) (sizeof(x) / sizeof((x)[0])) argument 66 static inline int max_int(int a, int b) in max_int() 74 static inline int min_int(int a, int b) in min_int() 82 static inline uint32_t max_uint32(uint32_t a, uint32_t b) in max_uint32() 98 static inline int64_t max_int64(int64_t a, int64_t b) in max_int64() 106 static inline int64_t min_int64(int64_t a, int64_t b) in min_int64() [all …]
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/ |
A D | test_loop.js | 88 a = {x:2, y: 2, "1": 3}; property in test_for_in.a 89 b = {"4" : 3 }; class in test_for_in 101 b = {"x" : 3 }; class in test_for_in 120 a={x:0}; property in test_for_in.a
|
/AliOS-Things-master/components/py_engine/tests/micropython/ |
A D | native_misc.py | 5 def native_test(x): argument 19 def f(a, b): argument 27 def f(a, b, c): argument
|
/AliOS-Things-master/components/linksdk/core/utils/ |
A D | core_sha256.c | 11 #define GET_UINT32_BE(n,b,i) \ argument 21 #define PUT_UINT32_BE(n,b,i) \ argument 93 #define SHR(x,n) ((x & 0xFFFFFFFF) >> n) argument 94 #define ROTR(x,n) (SHR(x,n) | (x << (32 - n))) argument 96 #define S0(x) (ROTR(x, 7) ^ ROTR(x,18) ^ SHR(x, 3)) argument 97 #define S1(x) (ROTR(x,17) ^ ROTR(x,19) ^ SHR(x,10)) argument 99 #define S2(x) (ROTR(x, 2) ^ ROTR(x,13) ^ ROTR(x,22)) argument 100 #define S3(x) (ROTR(x, 6) ^ ROTR(x,11) ^ ROTR(x,25)) argument 102 #define F0(x,y,z) ((x & y) | (z & (x | y))) argument 103 #define F1(x,y,z) (z ^ (x & (y ^ z))) argument [all …]
|
/AliOS-Things-master/components/linkkit/infra/ |
A D | infra_sha256.c | 22 #define GET_UINT32_BE(n, b, i) \ argument 30 #define PUT_UINT32_BE(n, b, i) \ argument 96 #define SHR(x, n) ((x & 0xFFFFFFFF) >> n) argument 97 #define ROTR(x, n) (SHR(x, n) | (x << (32 - n))) argument 99 #define S0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3)) argument 100 #define S1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10)) argument 102 #define S2(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22)) argument 103 #define S3(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25)) argument 105 #define F0(x, y, z) ((x & y) | (z & (x | y))) argument 106 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument [all …]
|
/AliOS-Things-master/components/py_engine/engine/lib/littlefs/ |
A D | lfs1_util.h | 17 #define LFS1_STRINGIZE(x) LFS1_STRINGIZE2(x) argument 18 #define LFS1_STRINGIZE2(x) #x argument 82 static inline uint32_t lfs1_max(uint32_t a, uint32_t b) { in lfs1_max() 86 static inline uint32_t lfs1_min(uint32_t a, uint32_t b) { in lfs1_min() 129 static inline int lfs1_scmp(uint32_t a, uint32_t b) { in lfs1_scmp()
|
/AliOS-Things-master/components/py_engine/tests/misc/ |
A D | features.py | 59 def set(self, b): argument 67 b = A() variable 88 b = [a, a, a] variable 102 x = 25 variable in c25 104 x = c25() variable 133 b = A(3) variable
|