Home
last modified time | relevance | path

Searched +defs:b +defs:c (Results 1 – 25 of 268) sorted by relevance

1234567891011

/AliOS-Things-master/components/py_engine/tests/basics/
A Dseq_unpack.py2 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 Dfun_kwonly.py10 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 Dfun_kwonlydef.py10 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 Dunpack1.py4 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 Ddel_global.py30 b = 3 variable
42 b = 2 variable
43 c = 3 variable
59 b = 2 variable
60 c = 3 variable
A Dfun_callstar.py3 def foo(a, b, c): argument
28 def foo(self, a, b, c): argument
A Dfun_callstardblstar.py3 def f(a, b, c, d): argument
12 def f(self, a, b, c, d): argument
A Dwith1.py7 def __exit__(self, a, b, c): argument
27 def __exit__(self, a, b, c): argument
A Dtry_finally2.py3 def f1(a, b): argument
18 def f2(a, b, c): argument
A Dlist_sum.py3 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.h58 # 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 DSDL_cpuinfo.c224 #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 Dlookup3.h123 #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 Dsha256.c167 #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 Dneon.h26 #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 DSDL_test_md5.c84 #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 Dutil.h41 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 Dcutils.c34 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 Dinfra_aes.c39 #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 Dmd4.c53 #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 Dftcalc.c162 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 Dspeech_memory.h14 #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 Dnative_misc.py19 def f(a, b): argument
27 def f(a, b, c): argument
/AliOS-Things-master/components/oss/src/model/
A DCreateSelectObjectMetaResult.cc23 #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 Daria.c68 #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 …]

Completed in 45 milliseconds

1234567891011