/AliOS-Things-master/components/py_engine/tests/extmod/ |
A D | ure1.py | 11 m = r.match("abc") variable 23 m = r.match("xyz781") variable 32 m = r.match("a") variable 34 m = r.match("z") variable 36 m = r.match("d") variable 38 m = r.match("A") variable 43 m = r.match("a") variable 45 m = r.match("z") variable 47 m = r.match("d") variable 49 m = r.match("A") variable [all …]
|
A D | ure_namedclass.py | 24 m = re.match(r"\w+", "1234hello567 abc") variable 27 m = re.match(r"(\w+)\s+(\w+)", "ABC \t1234hello567 abc") variable 30 m = re.match(r"(\S+)\s+(\D+)", "ABC \thello abc567 abc") variable 33 m = re.match(r"(([0-9]*)([a-z]*)\d*)", "1234hello567") variable
|
A D | ure_groups.py | 20 m = re.match(r"(([0-9]*)([a-z]*)[0-9]*)", "1234hello567") variable 23 m = re.match(r"([0-9]*)(([a-z]*)([0-9]*))", "1234hello567") variable
|
A D | ure_group.py | 24 m = re.match(r"(([0-9]*)([a-z]*)[0-9]*)", "1234hello567") variable 27 m = re.match(r"([0-9]*)(([a-z]*)([0-9]*))", "1234hello567") variable
|
A D | ure_span.py | 31 m = re.match(r"(([0-9]*)([a-z]*)[0-9]*)", "1234hello567") variable 34 m = re.match(r"([0-9]*)(([a-z]*)([0-9]*))", "1234hello567") variable
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | pngdebug.h | 60 # define png_debug(l,m) _RPT0(_CRT_WARN,m PNG_STRING_NEWLINE) argument 66 # define png_debug2(l,m,p1,p2) \ argument 81 # define png_debug(l,m) \ argument 89 # define png_debug1(l,m,p1) \ argument 97 # define png_debug2(l,m,p1,p2) \ argument 106 # define png_debug(l,m) \ argument 117 # define png_debug1(l,m,p1) \ argument 128 # define png_debug2(l,m,p1,p2) \ argument 145 # define png_debug(l, m) ((void)0) argument 148 # define png_debug1(l, m, p1) ((void)0) argument [all …]
|
/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | memoryview1.py | 18 m = memoryview(b) variable 35 m = memoryview(b) variable 41 m = memoryview(b'1234') variable 46 m = memoryview(bytearray(2)) variable 51 m = memoryview(a) variable
|
A D | boundmeth1.py | 15 m = A().f variable 19 m = A().g variable 23 m = A().h variable
|
/AliOS-Things-master/components/SDL2/src/render/ |
A D | SDL_d3dmath.c | 32 Float4X4 m; in MatrixIdentity() local 43 Float4X4 m; in MatrixMultiply() local 65 Float4X4 m; in MatrixScaling() local 76 Float4X4 m; in MatrixTranslation() local 92 Float4X4 m; in MatrixRotationX() local 107 Float4X4 m; in MatrixRotationY() local 122 Float4X4 m; in MatrixRotationZ() local
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/ |
A D | tif_dirread.c | 214 int8 m; in TIFFReadDirEntryByte() local 234 int16 m; in TIFFReadDirEntryByte() local 254 int32 m; in TIFFReadDirEntryByte() local 276 int64 m; in TIFFReadDirEntryByte() local 300 uint8 m; in TIFFReadDirEntryShort() local 307 int8 m; in TIFFReadDirEntryShort() local 320 int16 m; in TIFFReadDirEntryShort() local 393 int8 m; in TIFFReadDirEntryLong() local 476 int8 m; in TIFFReadDirEntryLong8() local 554 int8 m; in TIFFReadDirEntryFloat() local [all …]
|
A D | tif_strip.c | 133 uint64 m; in TIFFVStripSize() local 177 uint64 m; in TIFFRawStripSize() local 215 uint64 m; in TIFFStripSize() local 334 uint64 m; in TIFFScanlineSize() local 370 uint64 m; in TIFFRasterScanlineSize() local
|
/AliOS-Things-master/components/libc_stub/compilers/armlibc/sys/ |
A D | stat.h | 20 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) argument 21 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) argument 22 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) argument 23 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) argument 24 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) argument 25 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) argument 26 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) argument
|
/AliOS-Things-master/components/libc_stub/compilers/iar/sys/ |
A D | stat.h | 20 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) argument 21 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) argument 22 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) argument 23 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) argument 24 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) argument 25 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) argument 26 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) argument
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/ |
A D | sys.h | 107 #define sys_mbox_new(m, s) ERR_OK argument 108 #define sys_mbox_fetch(m,d) argument 109 #define sys_mbox_tryfetch(m,d) argument 110 #define sys_mbox_post(m,d) argument 111 #define sys_mbox_trypost(m,d) argument 112 #define sys_mbox_free(m) argument 113 #define sys_mbox_valid(m) argument 114 #define sys_mbox_valid_val(m) argument 115 #define sys_mbox_set_invalid(m) argument 116 #define sys_mbox_set_invalid_val(m) argument
|
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/ |
A D | pppapi.c | 58 pppapi_do_ppp_set_default(struct tcpip_api_call_data *m) in pppapi_do_ppp_set_default() 91 pppapi_do_ppp_set_notify_phase_callback(struct tcpip_api_call_data *m) in pppapi_do_ppp_set_notify_phase_callback() 126 pppapi_do_pppos_create(struct tcpip_api_call_data *m) in pppapi_do_pppos_create() 167 pppapi_do_pppoe_create(struct tcpip_api_call_data *m) in pppapi_do_pppoe_create() 212 pppapi_do_pppol2tp_create(struct tcpip_api_call_data *m) in pppapi_do_pppol2tp_create() 266 pppapi_do_ppp_connect(struct tcpip_api_call_data *m) in pppapi_do_ppp_connect() 299 pppapi_do_ppp_listen(struct tcpip_api_call_data *m) in pppapi_do_ppp_listen() 331 pppapi_do_ppp_close(struct tcpip_api_call_data *m) in pppapi_do_ppp_close() 363 pppapi_do_ppp_free(struct tcpip_api_call_data *m) in pppapi_do_ppp_free() 394 pppapi_do_ppp_ioctl(struct tcpip_api_call_data *m) in pppapi_do_ppp_ioctl()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/ |
A D | sys.h | 107 #define sys_mbox_new(m, s) ERR_OK argument 108 #define sys_mbox_fetch(m,d) argument 109 #define sys_mbox_tryfetch(m,d) argument 110 #define sys_mbox_post(m,d) argument 111 #define sys_mbox_trypost(m,d) argument 112 #define sys_mbox_free(m) argument 113 #define sys_mbox_valid(m) argument 114 #define sys_mbox_valid_val(m) argument 115 #define sys_mbox_set_invalid(m) argument 116 #define sys_mbox_set_invalid_val(m) argument
|
/AliOS-Things-master/components/lwip/lwip2.0.0/api/ |
A D | api_msg.c | 609 lwip_netconn_do_newconn(void *m) 1006 lwip_netconn_do_delconn(void *m) 1108 lwip_netconn_do_bind(void *m) 1216 lwip_netconn_do_connect(void *m) 1311 lwip_netconn_do_listen(void *m) 1392 lwip_netconn_do_send(void *m) 1447 lwip_netconn_do_recv(void *m) 1472 lwip_netconn_do_accepted(void *m) 1646 lwip_netconn_do_write(void *m) 1702 lwip_netconn_do_getaddr(void *m) [all …]
|
A D | netifapi.c | 58 netifapi_do_netif_add(struct tcpip_api_call_data *m) in netifapi_do_netif_add() 84 netifapi_do_netif_set_addr(struct tcpip_api_call_data *m) in netifapi_do_netif_set_addr() 103 netifapi_do_netif_common(struct tcpip_api_call_data *m) in netifapi_do_netif_common()
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/multimedia/speech/inc/ |
A D | ae_macros.h | 4 #define CONSTRUCT_FUNC_NAME_A(p, c, m) p ## _ ## c ## _ ## m argument 5 #define CONSTRUCT_FUNC_NAME(p, c, m) CONSTRUCT_FUNC_NAME_A(p, c, m) argument
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/net_os/ |
A D | net_bitops.h | 46 int *m = ((int *) addr) + (nr >> 5); in set_bit() local 54 int *m = ((int *) addr) + (nr >> 5); in clear_bit() local 63 int *m = ((int *) addr) + (nr >> 5); in test_bit() local 72 int *m = ((int *) addr) + (nr >> 5); in test_and_set_bit() local 83 int *m = ((int *) addr) + (nr >> 5); in test_and_clear_bit() local
|
/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_mutex.h | 71 #define SDL_mutexP(m) SDL_LockMutex(m) argument 89 #define SDL_mutexV(m) SDL_UnlockMutex(m) argument
|
/AliOS-Things-master/components/freetype/src/type1/ |
A D | t1parse.h | 100 #define T1_ToCoordArray( p, m, c ) \ argument 102 #define T1_ToFixedArray( p, m, f, t ) \ argument 106 #define T1_ToTokenArray( p, t, m, c ) \ argument 109 #define T1_Load_Field( p, f, o, m, pf ) \ argument 112 #define T1_Load_Field_Table( p, f, o, m, pf ) \ argument
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/kernels/ |
A D | ctc_beam_search_decoder_test.cc | 98 CTCBeamSearchDecoderOpModel m({2, 1, 2}, {1}, 1, 1, true); in TEST() local 124 CTCBeamSearchDecoderOpModel m({3, 3, 3}, {3}, 1, 1, true); in TEST() local 156 CTCBeamSearchDecoderOpModel m({3, 2, 5}, {2}, 3, 2, true); in TEST() local 195 CTCBeamSearchDecoderOpModel m({3, 3, 4}, {3}, 3, 1, true); in TEST() local
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/utils/ui/ |
A D | module_vm.c | 45 static int js_vm_init(JSContext *ctx, JSModuleDef *m) in js_vm_init() 63 JSModuleDef *m; in js_init_module_vm() local
|
/AliOS-Things-master/components/vfs/ |
A D | vfs_adapt.c | 14 kmutex_t *m; in vfs_lock_create() local 34 kmutex_t *m = (kmutex_t *)lock; in vfs_lock_free() local
|