Home
last modified time | relevance | path

Searched defs:q (Results 1 – 25 of 155) sorted by relevance

1234567

/AliOS-Things-master/components/py_engine/engine/py/
A Dqstr.c55 #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 Drepl.c167 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 Dmm_queue.h48 #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 Dnghttp2_outbound_item.c100 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 Dnghttp2_pq.h44 nghttp2_pq_entry **q; member
/AliOS-Things-master/hardware/chip/rtl872xd/aos/
A Dethernetif.c146 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 Dpbuf.c263 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 Dinet_chksum.c263 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 Dpstables.h4097 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 Detharp.c90 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 Dslipif.c98 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 Dlowpan6.c595 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 Dcli_console.c47 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 Dethip6.c78 ethip6_output(struct netif *netif, struct pbuf *q, const ip6_addr_t *ip6addr) in ethip6_output()
A Dnd6.c116 #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 Daos_queue.c23 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 Dinfutil.c29 Bytef *q; in inflate_flush() local
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/extras/
A Dwebp_quality.c35 int q; in main() local
/AliOS-Things-master/components/lwip/lwip2.0.0/netif/ppp/
A Dmultilink.c348 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 Def_sqrt.c46 __int32_t ix,s,q,m,t,i; in sqrtf() local
/AliOS-Things-master/components/py_engine/engine/lib/libm_dbl/
A Dsqrt.c87 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 Ddiag.c51 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 Dquant_dec.c75 int q; in VP8ParseQuant() local
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/
A Dnd6.h69 struct nd6_q_entry *q; member
72 struct pbuf *q; member
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/
A Dnd6.h69 struct nd6_q_entry *q; member
72 struct pbuf *q; member

Completed in 69 milliseconds

1234567