/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | seq_unpack.py | 2 a, b = 1, 2 variable 4 a, b = (1, 2) variable 12 a, b = [1, 2] variable 19 b = 2 variable 20 c = 3 variable 21 a, b, c = b, c, a variable 34 a, b, c = range(3) 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): argument
|
A D | fun_kwonlydef.py | 10 def f2(*, a=1, b): argument 16 def f3(a, *, b=2, c): argument 24 def f4(*, a=1, b, c=3, d, e=5, f): argument 32 def f5(a, b=4, *c, d=8): argument
|
A D | unpack1.py | 4 a, b = 2, 3 ; print(a, b) variable 5 a, b, c = 1, 2, 3; print(a, b, c) variable 8 a, b = range(2); print(a, b) variable 9 a, b, c = range(3); print(a, b, c) variable
|
A D | del_global.py | 30 b = 3 variable 42 b = 2 variable 43 c = 3 variable 59 b = 2 variable 60 c = 3 variable
|
A D | fun_callstar.py | 3 def foo(a, b, c): argument 28 def foo(self, a, b, c): argument
|
A D | fun_callstardblstar.py | 3 def f(a, b, c, d): argument 12 def f(self, a, b, c, d): argument
|
A D | with1.py | 7 def __exit__(self, a, b, c): argument 27 def __exit__(self, a, b, c): argument
|
A D | try_finally2.py | 3 def f1(a, b): argument 18 def f2(a, b, c): argument
|
A D | list_sum.py | 3 b = [4,5,6] variable 4 c = a + b variable
|
/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 76 # define C_FIXDIV(c,div) \ argument 80 # define C_MULBYSCALAR( c, s ) \ argument 86 # define S_MUL(a,b) ( (a)*(b) ) argument 87 #define C_MUL(m,a,b) \ argument 90 # define C_FIXDIV(c,div) /* NOOP */ argument 91 # define C_MULBYSCALAR( c, s ) \ argument 100 #define C_ADD( res, a,b)\ argument 106 #define C_SUB( res, a,b)\ argument [all …]
|
/AliOS-Things-master/components/SDL2/src/cpuinfo/ |
A D | SDL_cpuinfo.c | 224 #define cpuid(func, a, b, c, d) \ argument 233 #define cpuid(func, a, b, c, d) \ argument 242 #define cpuid(func, a, b, c, d) \ argument 253 #define cpuid(func, a, b, c, d) \ argument 279 int a, b, c, d; in CPU_calcCPUIDFeatures() local 504 int a, b, c, d; in CPU_have3DNow() local 527 int a, b, c, d; in CPU_haveAVX2() local 539 int a, b, c, d; in CPU_haveAVX512F() local 598 int a, b, c, d; in SDL_GetCPUType() local 632 int a, b, c, d; in SDL_GetCPUName() local [all …]
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/utils/jansson/ |
A D | lookup3.h | 123 #define mix(a,b,c) \ argument 158 #define final(a,b,c) \ argument 198 uint32_t a,b,c; /* internal state */ in hashlittle() local
|
/AliOS-Things-master/components/ble_host/bt_crypto/tinycrypt/source/ |
A D | sha256.c | 167 #define Ch(a, b, c)(((a) & (b)) ^ ((~(a)) & (c))) argument 168 #define Maj(a, b, c)(((a) & (b)) ^ ((a) & (c)) ^ ((b) & (c))) argument 170 static inline unsigned int BigEndian(const uint8_t **c) in BigEndian() 183 unsigned int a, b, c, d, e, f, g, h; in compress() local
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | neon.h | 26 #define INIT_VECTOR2(v, a, b) do { \ argument 31 #define INIT_VECTOR3(v, a, b, c) do { \ argument 37 #define INIT_VECTOR4(v, a, b, c, d) do { \ argument
|
/AliOS-Things-master/components/SDL2/src/test/ |
A D | SDL_test_md5.c | 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/components/ai_agent/src/engine/tflite-micro/third_party/flatbuffers/include/flatbuffers/ |
A D | util.h | 41 inline bool check_ascii_range(char x, char a, char b) { in check_ascii_range() 49 inline bool is_alpha(char c) { in is_alpha() 55 inline bool is_alpha_char(char c, char alpha) { in is_alpha_char() 68 inline bool is_xdigit(char c) { in is_xdigit() 76 inline char CharToUpper(char c) { in CharToUpper() 80 inline char CharToLower(char c) { in CharToLower() 245 #define __strtoull_impl(s, pe, b) _strtoui64(s, pe, b) argument 246 #define __strtoll_impl(s, pe, b) _strtoi64(s, pe, b) argument 248 #define __strtoull_impl(s, pe, b) strtoull(s, pe, b) argument 249 #define __strtoll_impl(s, pe, b) strtoll(s, pe, b) argument [all …]
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | cutils.c | 34 int c; in pstrcpy() local 159 int dbuf_putc(DynBuf *s, uint8_t c) in dbuf_putc() 206 int unicode_to_utf8(uint8_t *buf, unsigned int c) in unicode_to_utf8() 253 int l, c, b, i; in unicode_from_utf8() local 324 static void exchange_bytes(void *a, void *b, size_t size) { in exchange_bytes() 343 static void exchange_int16s(void *a, void *b, size_t size) { in exchange_int16s() 362 static void exchange_int32s(void *a, void *b, size_t size) { in exchange_int32s() 381 static void exchange_int64s(void *a, void *b, size_t size) { in exchange_int64s() 462 size_t i, n, c, r; in heapsortx() local 493 static inline void *med3(void *a, void *b, void *c, cmp_f cmp, void *opaque) in med3() [all …]
|
/AliOS-Things-master/components/linkkit/infra/ |
A D | infra_aes.c | 39 #define GET_UINT32_LE(n, b, i) \ argument 47 #define PUT_UINT32_LE(n, b, i) \ argument 182 #define V(a, b, c, d) 0x##a##b##c##d argument 186 #define V(a, b, c, d) 0x##b##c##d##a argument 190 #define V(a, b, c, d) 0x##c##d##a##b argument 194 #define V(a, b, c, d) 0x##d##a##b##c argument 320 #define V(a, b, c, d) 0x##a##b##c##d argument 324 #define V(a, b, c, d) 0x##b##c##d##a argument 328 #define V(a, b, c, d) 0x##c##d##a##b argument 332 #define V(a, b, c, d) 0x##d##a##b##c 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 115 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x; a = S(a,s); } 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 161 #define P(a,b,c,d,x,s) { a += F(b,c,d) + x + 0x6ED9EBA1; a = S(a,s); } in md4_process() argument
|
/AliOS-Things-master/components/freetype/src/base/ |
A D | ftcalc.c | 162 FT_Long b, in FT_MulDiv() 163 FT_Long c ) in FT_MulDiv() 185 FT_Long b, in FT_MulDiv_No_Round() 186 FT_Long c ) in FT_MulDiv_No_Round() 208 FT_Long b ) in FT_MulFix() 244 FT_Long b ) in FT_DivFix() 379 FT_Long b, in FT_MulDiv() 380 FT_Long c ) in FT_MulDiv() 418 FT_Long c ) in FT_MulDiv_No_Round() 452 FT_Long b ) in FT_MulFix() [all …]
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/multimedia/speech/inc/ |
A D | speech_memory.h | 14 #define speech_heap_init(a, b) med_heap_init(a, b) argument 15 #define speech_heap_add_block(a, b) med_heap_add_block(a, b) argument 17 #define speech_realloc(a, b) med_realloc(a, b) argument 18 #define speech_calloc(a, b) med_calloc(a, b) argument 20 #define speech_memory_info(a, b, c) med_memory_info(a, b, c) argument
|
/AliOS-Things-master/components/py_engine/tests/micropython/ |
A D | native_misc.py | 19 def f(a, b): argument 27 def f(a, b, c): argument
|
/AliOS-Things-master/components/oss/src/model/ |
A D | CreateSelectObjectMetaResult.cc | 23 #define PARSE_FOUR_BYTES(a, b, c, d) (((uint64_t)(a) << 24)|((uint64_t)(b) << 16)|((uint64_t)(c) <<… argument 24 #define PARSE_EIGHT_BYTES(a, b, c, d, e, f, g, h) (((uint64_t)(a)<<56)|((uint64_t)(b)<<48)| ((uint6… argument
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | aria.c | 68 #define GET_UINT32_LE( n, b, i ) \ argument 78 #define PUT_UINT32_LE( n, b, i ) \ argument 207 static inline void aria_a( uint32_t *a, uint32_t *b, in aria_a() 208 uint32_t *c, uint32_t *d ) in aria_a() 239 static inline void aria_sl( uint32_t *a, uint32_t *b, in aria_sl() 240 uint32_t *c, uint32_t *d, 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 551 uint32_t a, b, c, d; in mbedtls_aria_crypt_ecb() local 688 unsigned char c; in mbedtls_aria_crypt_cfb128() local [all …]
|