Home
last modified time | relevance | path

Searched defs:b (Results 1 – 25 of 751) sorted by relevance

12345678910>>...31

/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dqjscalc.js93 function generic_pow(a, b) { argument
448 function float_add(a, b) { argument
451 function float_sub(a, b) { argument
466 function float_eq(a, b) { argument
470 function float_lt(a, b) { argument
855 function mod_add(a, b) { argument
866 function mod_sub(a, b) { argument
877 function mod_mul(a, b) { argument
888 function mod_div(a, b) { argument
893 function mod_eq(a, b) { argument
[all …]
/AliOS-Things-master/components/py_engine/tests/micropython/
A Dheapalloc_fail_bytearray.py39 b = bytearray(4) variable
48 b = bytearray(4) variable
58 b = bytearray(4) variable
68 b = bytearray(4) variable
77 b = bytearray(4) variable
86 b = bytearray(4) variable
/AliOS-Things-master/hardware/chip/rtl872xd/
A Dota.py17 b = struct.pack('<L', version) variable
25 b = struct.pack('<L', 0x01) variable
29 b = struct.pack('<L', 0x18) variable
36 b = struct.pack('<L', sum) #CRC variable
38 b = struct.pack('<L', filelen) variable
40 b = struct.pack('<L', 0x20) variable
42 b = struct.pack('<L', 0) variable
/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
21 a, b, c = b, c, a variable
34 a, b, c = range(3) variable
A Dbytearray_slice_assign.py45 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 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 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):
A Dint_intbig.py4 b = 0x100000000 variable
43 b = a variable
51 b = 0x10000000000000000 variable
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 Ddel_global.py30 b = 3 variable
42 b = 2 variable
59 b = 2 variable
A Dbytearray_add.py3 b = bytearray(2) variable
17 b = bytearray() variable
A Dmemoryview_gc.py8 b = bytearray(10) variable
14 b = None variable
A Dfloordivide_intbig.py4 b = 19 variable
11 b = 100 variable
/AliOS-Things-master/components/py_engine/engine/lib/tinytest/
A Dtinytest_macros.h89 #define tt_want_(b, msg, fail) \ argument
101 #define tt_want_msg(b, msg) \ argument
105 #define tt_assert_msg(b, msg) \ argument
153 #define tt_int_op(a,op,b) \ argument
157 #define tt_uint_op(a,op,b) \ argument
161 #define tt_ptr_op(a,op,b) \ argument
165 #define tt_str_op(a,op,b) \ argument
169 #define tt_want_int_op(a,op,b) \ argument
172 #define tt_want_uint_op(a,op,b) \ argument
176 #define tt_want_ptr_op(a,op,b) \ argument
[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/SDL2/src/image/external/libwebp-1.0.2/src/enc/
A Dtoken_enc.c45 void VP8TBufferInit(VP8TBuffer* const b, int page_size) { in VP8TBufferInit()
54 void VP8TBufferClear(VP8TBuffer* const b) { in VP8TBufferClear()
66 static int TBufferNewPage(VP8TBuffer* const b) { in TBufferNewPage()
87 #define TOKEN_ID(t, b, ctx) \ argument
90 static WEBP_INLINE uint32_t AddToken(VP8TBuffer* const b, uint32_t bit, in AddToken()
103 static WEBP_INLINE void AddConstantToken(VP8TBuffer* const b, in AddConstantToken()
200 int VP8EmitTokens(VP8TBuffer* const b, VP8BitWriter* const bw, in VP8EmitTokens()
226 size_t VP8EstimateTokenSize(VP8TBuffer* const b, const uint8_t* const probas) { in VP8EstimateTokenSize()
253 void VP8TBufferInit(VP8TBuffer* const b, int page_size) { in VP8TBufferInit()
257 void VP8TBufferClear(VP8TBuffer* const b) { in VP8TBufferClear()
/AliOS-Things-master/components/SDL2/src/video/
A DSDL_blit.h71 Uint8 r, g, b, a; member
123 #define RGB_FROM_PIXEL(Pixel, fmt, r, g, b) \ argument
129 #define RGB_FROM_RGB565(Pixel, r, g, b) \ argument
135 #define RGB_FROM_RGB555(Pixel, r, g, b) \ argument
141 #define RGB_FROM_RGB888(Pixel, r, g, b) \ argument
178 #define DISEMBLE_RGB(buf, bpp, fmt, Pixel, r, g, b) \ argument
219 #define PIXEL_FROM_RGB(Pixel, fmt, r, g, b) \ argument
226 #define RGB565_FROM_RGB(Pixel, r, g, b) \ argument
230 #define RGB555_FROM_RGB(Pixel, r, g, b) \ argument
234 #define RGB888_FROM_RGB(Pixel, r, g, b) \ argument
[all …]
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/optimized/
A Ddepthwiseconv_3x3_filter_common.h37 inline int8x16_t vqtbl4q_s8(int8x16x4_t a, int8x16_t b) { in vqtbl4q_s8()
79 inline void vzipq_s8_in_place(int8x16_t* a, int8x16_t* b) { in vzipq_s8_in_place()
86 inline void vzipq_s8x2_in_place(int8x16_t* a, int8x16_t* b) { in vzipq_s8x2_in_place()
95 inline void vtrn1_s8x2_in_place(int8x16_t* a, int8x16_t* b) { in vtrn1_s8x2_in_place()
103 inline int8x16_t vzip1q_s8(int8x16_t a, int8x16_t b) { in vzip1q_s8()
106 inline int8x16_t vzip2q_s8(int8x16_t a, int8x16_t b) { in vzip2q_s8()
118 inline int32x4_t vpaddq_s32(int32x4_t a, int32x4_t b) { in vpaddq_s32()
/AliOS-Things-master/components/SDL2/src/render/software/
A DSDL_blendfillrect.c31 SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a) in SDL_BlendFillRect_RGB555()
57 SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a) in SDL_BlendFillRect_RGB565()
83 SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a) in SDL_BlendFillRect_RGB888()
109 SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a) in SDL_BlendFillRect_ARGB8888()
135 SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a) in SDL_BlendFillRect_RGB()
186 SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a) in SDL_BlendFillRect_RGBA()
218 SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a) in SDL_BlendFillRect()
285 SDL_BlendMode blendMode, Uint8 r, Uint8 g, Uint8 b, Uint8 a) in SDL_BlendFillRects()
A DSDL_blendpoint.c31 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()
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()
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()
/AliOS-Things-master/components/py_engine/tests/inlineasm/
A Dasmsum.py53 b = array.array("l", (100, 200, 300, 400)) variable
57 b = array.array("b", (10, 20, 30, 40, 50, 60, 70, 80)) variable
61 b = b"\x01\x02\x03\x04" variable
/AliOS-Things-master/components/SDL2/test/
A Dtestplatform.c151 static int TST_allmul (void *a, void *b, int arg, void *result, void *expected) in TST_allmul()
157 static int TST_alldiv (void *a, void *b, int arg, void *result, void *expected) in TST_alldiv()
163 static int TST_allrem (void *a, void *b, int arg, void *result, void *expected) in TST_allrem()
169 static int TST_ualldiv (void *a, void *b, int arg, void *result, void *expected) in TST_ualldiv()
175 static int TST_uallrem (void *a, void *b, int arg, void *result, void *expected) in TST_uallrem()
181 static int TST_allshl (void *a, void *b, int arg, void *result, void *expected) in TST_allshl()
187 static int TST_aullshl (void *a, void *b, int arg, void *result, void *expected) in TST_aullshl()
193 static int TST_allshr (void *a, void *b, int arg, void *result, void *expected) in TST_allshr()
199 static int TST_aullshr (void *a, void *b, int arg, void *result, void *expected) in TST_aullshr()
211 unsigned long long a, b; member
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/
A Dtest_bignum.js48 function test_less(a, b) argument
63 function test_eq(a, b) argument
113 function test_divrem(div1, a, b, q) argument
124 function test_idiv1(div, a, b, r) argument
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/
A Dtensor_utils_common.h67 for (int b = 0; b < n_batch; ++b) { in BatchQuantizeFloats() local
354 for (int b = 0; b < n_batch; b++) { in BatchVectorBatchVectorDotProduct() local
371 for (int b = 0; b < n_batch; b++) { in VectorBatchVectorCwiseProduct() local
386 for (int b = 0; b < n_batch; b++) { in VectorBatchVectorCwiseProductAccumulate() local
404 for (int b = 0; b < n_batch; b++) { in VectorBatchVectorAdd() local
416 for (int b = 0; b < n_batch; b++) { in VectorBatchVectorAssign() local
/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
64 # define smul(a,b) ( (SAMPPROD)(a)*(b) ) argument
67 # define S_MUL(a,b) sround( smul(a,b) ) argument
69 # define C_MUL(m,a,b) \ argument
86 # define S_MUL(a,b) ( (a)*(b) ) argument
87 #define C_MUL(m,a,b) \ argument
97 # define CHECK_OVERFLOW_OP(a,op,b) /* noop */ argument
100 #define C_ADD( res, a,b)\ argument
106 #define C_SUB( res, a,b)\ argument

Completed in 64 milliseconds

12345678910>>...31