/AliOS-Things-master/components/py_engine/engine/py/ |
A D | qstr.c | 55 #define Q_GET_HASH(q) ((mp_uint_t)(q)[0]) argument 56 #define Q_SET_HASH(q, hash) do { (q)[0] = (hash); } while (0) argument 59 #define Q_GET_HASH(q) ((mp_uint_t)(q)[0] | ((mp_uint_t)(q)[1] << 8)) argument 65 #define Q_GET_DATA(q) ((q) + MICROPY_QSTR_BYTES_IN_HASH + MICROPY_QSTR_BYTES_IN_LEN) argument 67 #define Q_GET_LENGTH(q) ((q)[MICROPY_QSTR_BYTES_IN_HASH]) argument 133 STATIC const byte *find_qstr(qstr q) { in find_qstr() 197 qstr q = qstr_find_strn(str, len); in qstr_from_strn() local 259 mp_uint_t qstr_hash(qstr q) { in qstr_hash() 264 size_t qstr_len(qstr q) { in qstr_len() 269 const char *qstr_str(qstr q) { in qstr_str() [all …]
|
A D | repl.c | 167 for (qstr q = MP_QSTR_ + 1; q < nqstr; ++q) { in find_completions() local 208 for (qstr q = q_first; q <= q_last; ++q) { in print_completions() local 267 qstr q = qstr_find_strn(s_start, s_len); in mp_repl_autocomplete() local
|
/AliOS-Things-master/components/minilibc/include/ |
A D | mm_queue.h | 48 #define sq_init(q) do { (q)->head = NULL; (q)->tail = NULL; } while (0) argument 49 #define dq_init(q) do { (q)->head = NULL; (q)->tail = NULL; } while (0) argument 55 #define sq_empty(q) ((q)->head == NULL) argument 56 #define dq_empty(q) ((q)->head == NULL) argument 58 #define sq_peek(q) ((q)->head) argument 59 #define dq_peek(q) ((q)->head) argument
|
/AliOS-Things-master/components/linkkit/external/nghttp2/ |
A D | nghttp2_outbound_item.c | 100 void nghttp2_outbound_queue_init(nghttp2_outbound_queue *q) in nghttp2_outbound_queue_init() 106 void nghttp2_outbound_queue_push(nghttp2_outbound_queue *q, in nghttp2_outbound_queue_push() 117 void nghttp2_outbound_queue_pop(nghttp2_outbound_queue *q) in nghttp2_outbound_queue_pop()
|
A D | nghttp2_pq.h | 44 nghttp2_pq_entry **q; member
|
/AliOS-Things-master/hardware/chip/rtl872xd/aos/ |
A D | ethernetif.c | 146 struct pbuf *q; in low_level_output() local 176 struct pbuf *q; in low_level_output_mii() local 218 struct pbuf *p, *q; in ethernetif_recv() local 260 struct pbuf *p, *q; in ethernetif_mii_recv() local
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ |
A D | pbuf.c | 263 struct pbuf *p, *q, *r; in pbuf_alloc_ext() local 562 struct pbuf *q; in pbuf_realloc() local 811 struct pbuf *q; in pbuf_free() local 997 struct pbuf *q; in pbuf_dechain() local 1200 const struct pbuf* q = in; in pbuf_skip_const() local 1287 struct pbuf* q = pbuf_skip(buf, offset, &target_offset); in pbuf_take_at() local 1322 struct pbuf *q; in pbuf_coalesce() local 1413 const struct pbuf* q = pbuf_skip_const(p, offset, &q_idx); in pbuf_try_get_at() local 1435 struct pbuf* q = pbuf_skip(p, offset, &q_idx); in pbuf_put_at() local 1458 const struct pbuf* q = p; in pbuf_memcmp() local
|
A D | inet_chksum.c | 263 struct pbuf *q; in inet_cksum_pseudo_base() local 403 struct pbuf *q; in inet_cksum_pseudo_partial_base() local 572 struct pbuf *q; in inet_chksum_pbuf() local
|
/AliOS-Things-master/components/freetype/src/psnames/ |
A D | pstables.h | 4097 const unsigned char* q = p + mid * 2; in ft_get_adobe_glyph_index() local 4149 const unsigned char* q = ft_adobe_glyph_list + offset; in ft_get_adobe_glyph_index() local
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv4/ |
A D | etharp.c | 90 struct etharp_q_entry *q; member 167 free_etharp_q(struct etharp_q_entry *q) in free_etharp_q() 183 #define free_etharp_q(q) pbuf_free(q) argument 494 struct etharp_q_entry *q = arp_table[i].q; local 791 etharp_output_to_arp_index(struct netif *netif, struct pbuf *q, u8_t arp_idx) 834 etharp_output(struct netif *netif, struct pbuf *q, const ip4_addr_t *ipaddr) 975 etharp_query(struct netif *netif, const ip4_addr_t *ipaddr, struct pbuf *q)
|
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ |
A D | slipif.c | 98 struct pbuf *p, *q; member 119 struct pbuf *q; in slipif_output() local 464 struct pbuf *q = p; in slipif_process_rxqueue() local 499 struct pbuf *q = p; in slipif_rxbyte_enqueue() local
|
A D | lowpan6.c | 595 lowpan4_output(struct netif *netif, struct pbuf *q, const ip4_addr_t *ipaddr) in lowpan4_output() 617 lowpan6_output(struct netif *netif, struct pbuf *q, const ip6_addr_t *ip6addr) in lowpan6_output() 700 struct pbuf * q; in lowpan6_decompress() local
|
/AliOS-Things-master/components/cli/src/ |
A D | cli_console.c | 47 dlist_t *q; in remove_cli_console_from_list() local 69 dlist_t *q; in cli_console_check_is_in_list() local 92 dlist_t *q; in get_alive_console_num() local 331 dlist_t *q; in cli_console_remove_task_list_node() local 357 dlist_t *q; in cli_console_check_task_list_node() local 383 dlist_t *q; in cli_console_clear_task_list() local 716 dlist_t *q; in cli_console_show_cmd() local
|
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ipv6/ |
A D | ethip6.c | 78 ethip6_output(struct netif *netif, struct pbuf *q, const ip6_addr_t *ip6addr) in ethip6_output()
|
A D | nd6.c | 116 #define nd6_free_q(q) pbuf_free(q) argument 1682 nd6_queue_packet(s8_t neighbor_index, struct pbuf *q) in nd6_queue_packet() 1793 nd6_free_q(struct nd6_q_entry *q) in nd6_free_q() 1819 struct nd6_q_entry *q; in nd6_send_q() local
|
/AliOS-Things-master/components/osal_aos/rhino/ |
A D | aos_queue.c | 23 kbuf_queue_t *q; in aos_queue_new() local 52 kbuf_queue_t *q; in aos_queue_create() local
|
/AliOS-Things-master/components/freetype/src/gzip/ |
A D | infutil.c | 29 Bytef *q; in inflate_flush() local
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/extras/ |
A D | webp_quality.c | 35 int q; in main() local
|
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/ |
A D | multilink.c | 348 char *p, *q; in remove_bundle_link() local 377 char *p, *q; in iterate_bundle_links() local 499 char *q, c, c2; local
|
/AliOS-Things-master/components/py_engine/engine/lib/libm/ |
A D | ef_sqrt.c | 46 __int32_t ix,s,q,m,t,i; in sqrtf() local
|
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/ |
A D | sqrt.c | 87 int32_t ix0,s0,q,m,t,i; in sqrt() local
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/ |
A D | diag.c | 51 char tmp[20], *q = tmp; in DiagVSprintf() local 296 char tmp[20], *q = tmp; in DiagSnPrintf() local
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dec/ |
A D | quant_dec.c | 75 int q; in VP8ParseQuant() local
|
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/ |
A D | nd6.h | 69 struct nd6_q_entry *q; member 72 struct pbuf *q; member
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/ |
A D | nd6.h | 69 struct nd6_q_entry *q; member 72 struct pbuf *q; member
|