/AliOS-Things-master/components/py_engine/tests/basics/ |
A D | dict1.py | 3 d = {} variable 7 d = {1:2} variable 27 d = {} variable 33 d = {} variable 39 d = {} variable 45 d = {} variable 51 d = {False:10, True:11, 2:12} variable
|
A D | dict_construct.py | 3 d = dict() variable 6 d = dict({1:2}) variable 9 d = dict(a=1) variable 12 d = dict({1:2}, a=3) variable 15 d = dict([(1, 2)], a=3, b=4) variable
|
A D | builtin_dir.py | 30 d = dir(B()) variable 38 def d(): member in D 40 d = dir(D()) variable
|
A D | deque1.py | 11 d = deque((), 2) variable 50 d = deque((), 2) variable
|
A D | del_subscr.py | 8 d = {1:2, 3:4, 5:6} variable 16 d = {0:{0:0}} variable
|
A D | dict_fromkeys.py | 1 d = dict.fromkeys([1, 2, 3, 4]) variable 6 d = dict.fromkeys([1, 2, 3, 4], 42) variable
|
A D | class_dict.py | 18 d = Foo.__dict__ variable 23 d = type(type('')).__dict__ variable
|
A D | fun_callstardblstar.py | 3 def f(a, b, c, d): argument 12 def f(self, a, b, c, d): argument
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/platform/hal/ |
A D | plat_addr_map.h | 20 #define CONSTRUCT_HDR_NAME_A(d, n) d/n ## _ ## d argument 21 #define CONSTRUCT_HDR_NAME(d, n) CONSTRUCT_HDR_NAME_A(d, n) argument 26 #define RAM_TO_RAMX(d) ((d) - RAM_BASE + RAMX_BASE) argument 27 #define RAMX_TO_RAM(d) ((d) - RAMX_BASE + RAM_BASE) argument 29 #define FLASH_TO_FLASHX(d) ((d) - FLASH_BASE + FLASHX_BASE) argument 30 #define FLASHX_TO_FLASH(d) ((d) - FLASHX_BASE + FLASH_BASE) argument 32 #define FLASH_C_TO_NC(d) ((d) - FLASH_BASE + FLASH_NC_BASE) argument 33 #define FLASH_NC_TO_C(d) ((d) - FLASH_NC_BASE + FLASH_BASE) argument 35 #define PSRAM_TO_PSRAMX(d) ((d) - PSRAM_BASE + PSRAMX_BASE) argument 36 #define PSRAMX_TO_PSRAM(d) ((d) - PSRAMX_BASE + PSRAM_BASE) argument [all …]
|
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/ |
A D | libm.h | 37 #define EXTRACT_WORDS(hi,lo,d) \ argument 46 #define GET_HIGH_WORD(hi,d) \ argument 54 #define GET_LOW_WORD(lo,d) \ argument 62 #define INSERT_WORDS(d,hi,lo) \ argument 70 #define SET_HIGH_WORD(d,hi) \ argument 80 #define SET_LOW_WORD(d,lo) \ argument
|
/AliOS-Things-master/components/py_engine/engine/lib/uzlib/ |
A D | tinflate.c | 192 unsigned char uzlib_get_byte(TINF_DATA *d) in uzlib_get_byte() 218 uint32_t tinf_get_le_uint32(TINF_DATA *d) in tinf_get_le_uint32() 228 uint32_t tinf_get_be_uint32(TINF_DATA *d) in tinf_get_be_uint32() 239 static int tinf_getbit(TINF_DATA *d) in tinf_getbit() 259 static unsigned int tinf_read_bits(TINF_DATA *d, int num, int base) in tinf_read_bits() 277 static int tinf_decode_symbol(TINF_DATA *d, TINF_TREE *t) in tinf_decode_symbol() 306 static int tinf_decode_trees(TINF_DATA *d, TINF_TREE *lt, TINF_TREE *dt) in tinf_decode_trees() 489 static int tinf_inflate_uncompressed_block(TINF_DATA *d) in tinf_inflate_uncompressed_block() 539 void uzlib_uncompress_init(TINF_DATA *d, void *dict, unsigned int dictLen) in uzlib_uncompress_init() 552 int uzlib_uncompress(TINF_DATA *d) in uzlib_uncompress() [all …]
|
A D | tinfgzip.c | 47 void tinf_skip_bytes(TINF_DATA *d, int num) in tinf_skip_bytes() 52 uint16_t tinf_get_uint16(TINF_DATA *d) in tinf_get_uint16() 59 int uzlib_gzip_parse_header(TINF_DATA *d) in uzlib_gzip_parse_header()
|
/AliOS-Things-master/components/SDL2/src/libm/ |
A D | math_private.h | 99 #define EXTRACT_WORDS(ix0,ix1,d) \ argument 109 #define GET_HIGH_WORD(i,d) \ argument 118 #define GET_LOW_WORD(i,d) \ argument 127 #define INSERT_WORDS(d,ix0,ix1) \ argument 137 #define SET_HIGH_WORD(d,v) \ argument 147 #define SET_LOW_WORD(d,v) \ argument 166 #define GET_FLOAT_WORD(i,d) \ argument 175 #define SET_FLOAT_WORD(d,i) \ argument
|
/AliOS-Things-master/components/ota/include/ |
A D | ota_import.h | 45 #define L_EXTRACT_U16(d) ((*((unsigned char *)(d)) << 8) | *((unsigned char *)(d) + 1)) argument 46 #define L_EXTRACT_U32(d) \ argument 50 #define EXTRACT_U16(d) (*((unsigned char *)(d)) | (*((unsigned char *)(d) + 1) << 8)) argument 51 #define EXTRACT_U32(d) \ argument 55 #define ENCODE_U16(d, val) \ argument 61 #define ENCODE_U32(d, val) \ argument
|
/AliOS-Things-master/components/posix/include/sys/ |
A D | select.h | 24 #define FD_SET(d, s) ((s)->fds_bits[(d) / (8 * sizeof(long))] |= (1UL << ((d) % (8 * sizeof(long)… argument 25 #define FD_CLR(d, s) ((s)->fds_bits[(d) / (8 * sizeof(long))] &= ~(1UL << ((d) % (8 * sizeof(long… argument 26 #define FD_ISSET(d, s) (!!((s)->fds_bits[(d) / (8 * sizeof(long))] & (1UL << ((d) % (8 * sizeof(lon… argument
|
/AliOS-Things-master/components/py_engine/engine/lib/libm/ |
A D | libm.h | 41 #define GET_FLOAT_WORD(w,d) \ argument 49 #define SET_FLOAT_WORD(d,w) \ argument
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | gendoc.py | 19 def makedirs(d): argument 263 def process_method(self, lex, d): argument 271 def process_constant(self, lex, d): argument 312 def process_function(self, lex, d): argument 324 def process_class(self, lex, d): argument 334 def process_method(self, lex, d): argument 337 def process_constant(self, lex, d): argument 410 def process_module(self, lex, d): argument 427 def process_class(self, lex, d): argument 431 def process_function(self, lex, d): argument [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/intel/ |
A D | filter_sse2_intrinsics.c | 61 __m128i a, d = _mm_setzero_si128(); in png_read_filter_row_sub3_sse2() local 94 __m128i a, d = _mm_setzero_si128(); in png_read_filter_row_sub4_sse2() local 124 __m128i a, d = zero; in png_read_filter_row_avg3_sse2() local 176 __m128i a, d = zero; in png_read_filter_row_avg4_sse2() local 248 a, d = zero; in png_read_filter_row_paeth3_sse2() local 348 a, d = zero; in png_read_filter_row_paeth4_sse2() local
|
/AliOS-Things-master/hardware/board/haaseduk1/drivers/sensor/ |
A D | sensor_i2c_api.c | 57 io_i2c_data_t d; in sensor_i2c_master_send() local 82 io_i2c_data_t d; in sensor_i2c_master_recv() local 107 io_i2c_data_t d; in sensor_i2c_mem_write() local 131 io_i2c_data_t d; in sensor_i2c_mem_read() local
|
/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/components/py_engine/engine/shared/libc/ |
A D | string0.c | 35 uint32_t *d = dst; in memcpy() local 56 uint8_t *d = dst; in memcpy() local 70 uint8_t *d = (uint8_t*)dest + n - 1; in memmove() local 164 char *d = dest; in strcpy() local 201 char *d = dest; in strcat() local
|
/AliOS-Things-master/components/SDL2/src/video/wayland/ |
A D | SDL_waylandmouse.c | 96 create_buffer_from_shm(Wayland_CursorData *d, in create_buffer_from_shm() 198 CreateCursorFromWlCursor(SDL_VideoData *d, struct wl_cursor *wlcursor) in CreateCursorFromWlCursor() 242 SDL_VideoData *d = vd->driverdata; in Wayland_CreateSystemCursor() local 295 Wayland_CursorData *d; in Wayland_FreeCursor() local 321 SDL_VideoData *d = vd->driverdata; in Wayland_ShowCursor() local
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/libtests/ |
A D | pngunknown.c | 413 init_display(display *d, const char *program) in init_display() 425 clean_display(display *d) in clean_display() 455 display_rc(const display *d, int strict) in display_rc() 473 display *d = (display*)png_get_error_ptr(png_ptr); in warning() local 480 get_valid(display *d, png_infop info_ptr) in get_valid() 586 get_unknown(display *d, png_infop info_ptr, int after_IDAT) in get_unknown() 639 get_unknown(display *d, png_infop info_ptr, int after_IDAT) in get_unknown() 661 display *d, int set_callback) in check() 1012 png_uint_32 *default_flags, display *d, int set_callback) in perform_one_test() 1077 png_uint_32 *default_flags, display *d, const char *test) in perform_one_test_safe() [all …]
|
/AliOS-Things-master/components/amp_adapter/platform/aos/peripheral/ |
A D | aos_hal_i2c.c | 80 io_i2c_data_t d; in aos_hal_i2c_master_send() local 112 io_i2c_data_t d; in aos_hal_i2c_master_recv() local 157 io_i2c_data_t d; in aos_hal_i2c_mem_write() local 190 io_i2c_data_t d; in aos_hal_i2c_mem_read() local
|
/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
|