Home
last modified time | relevance | path

Searched refs:child (Results 1 – 25 of 48) sorted by relevance

12

/AliOS-Things-master/components/py_engine/engine/py/
A Dpairheap.c57 heap2->child = heap1; in mp_pairheap_meld()
68 if (child == NULL) { in mp_pairheap_pairing()
74 child = child->next; in mp_pairheap_pairing()
78 child = child->next; in mp_pairheap_pairing()
92 mp_pairheap_t *child = heap->child; in mp_pairheap_delete() local
93 node->child = NULL; in mp_pairheap_delete()
111 if (node == parent->child && node->child == NULL) { in mp_pairheap_delete()
120 mp_pairheap_t *child = node->child; in mp_pairheap_delete() local
122 node->child = NULL; in mp_pairheap_delete()
131 mp_pairheap_t *child = node->child; in mp_pairheap_delete() local
[all …]
A Dpairheap.h48 struct _mp_pairheap_t *child; member
58 mp_pairheap_t *mp_pairheap_pairing(mp_pairheap_lt_t lt, mp_pairheap_t *child);
70 node->child = NULL; in mp_pairheap_init_node()
88 assert(node->child == NULL && node->next == NULL); in mp_pairheap_push()
95 mp_pairheap_t *child = heap->child; in mp_pairheap_pop() local
96 heap->child = NULL; in mp_pairheap_pop()
97 return mp_pairheap_pairing(lt, child); in mp_pairheap_pop()
/AliOS-Things-master/components/py_engine/engine/extmod/uasyncio/
A Dtask.py36 def ph_pairing(child): argument
38 while child is not None:
39 n1 = child
40 child = child.ph_next
42 if child is not None:
43 n2 = child
44 child = child.ph_next
54 child = heap.ph_child
56 return ph_pairing(child)
68 child = node.ph_child
[all …]
/AliOS-Things-master/components/freetype/src/tools/
A Dglnames.py5054 child = self.children[letter]
5059 child.add( word, value )
5066 for child in children:
5067 self.children[child.letter[0]] = child.optimize()
5075 child = children[0]
5077 self.letter += child.letter
5078 self.value = child.value
5079 self.children = child.children
5115 for child in children:
5143 for child in children:
[all …]
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/profiler/
A Dtreeview.cc38 for (const auto& child : node->children) { in SortNode() local
39 SortNode(child.get()); in SortNode()
52 for (const auto& child : node->children) { in AddStack() local
53 if (child->label == stack.labels[level]) { in AddStack()
54 child_to_add_to = child.get(); in AddStack()
71 for (const auto& child : node->children) { in AddOther() local
72 AddOther(child.get()); in AddOther()
128 for (const auto& child : node.children) { in PrintTreeBelow() local
129 PrintTreeBelow(*child, root, level + 1); in PrintTreeBelow()
149 for (const auto& child : node.children) { in DepthOfTreeBelow() local
[all …]
/AliOS-Things-master/components/littlevgl/src/lv_objx/
A Dlv_cont.c302 lv_obj_t * child; in lv_cont_layout_col() local
335 …if(lv_obj_get_hidden(child) != false || lv_obj_is_protected(child, LV_PROTECT_POS) != false) conti… in lv_cont_layout_col()
351 lv_obj_t * child; in lv_cont_layout_row() local
385 …if(lv_obj_get_hidden(child) != false || lv_obj_is_protected(child, LV_PROTECT_POS) != false) conti… in lv_cont_layout_row()
400 lv_obj_t * child; in lv_cont_layout_center() local
405 LV_LL_READ(cont->child_ll, child) in lv_cont_layout_center()
407 …if(lv_obj_get_hidden(child) != false || lv_obj_is_protected(child, LV_PROTECT_POS) != false) conti… in lv_cont_layout_center()
424 …if(lv_obj_get_hidden(child) != false || lv_obj_is_protected(child, LV_PROTECT_POS) != false) conti… in lv_cont_layout_center()
426 lv_obj_align(child, cont, LV_ALIGN_CENTER, 0, last_cord + lv_obj_get_height(child) / 2); in lv_cont_layout_center()
536 lv_obj_t * child; in lv_cont_layout_grid() local
[all …]
A Dlv_win.c124 lv_obj_t * child; in lv_win_create() local
127 child = lv_obj_get_child_back(copy_ext->header, child); /*Sip the title*/ in lv_win_create()
128 while(child != NULL) { in lv_win_create()
129 cbtn = lv_btn_create(ext->header, child); in lv_win_create()
131 child = lv_obj_get_child_back(copy_ext->header, child); in lv_win_create()
475 lv_obj_t * child; in lv_win_signal() local
476 child = lv_obj_get_child(win, NULL); in lv_win_signal()
477 while(child != NULL) { in lv_win_signal()
479 lv_obj_t * tmp = child; in lv_win_signal()
480child = lv_obj_get_child(win, child); /*Get the next child before move this*/ in lv_win_signal()
[all …]
A Dlv_page.c797 lv_obj_t * child; in lv_page_signal() local
802 child = lv_obj_get_child(page, NULL); in lv_page_signal()
803 while(child != NULL) { in lv_page_signal()
804 if(lv_obj_is_protected(child, LV_PROTECT_PARENT) == false) { in lv_page_signal()
805 lv_obj_t * tmp = child; in lv_page_signal()
806child = lv_obj_get_child(page, child); /*Get the next child before move this*/ in lv_page_signal()
820 child = lv_obj_get_child(page, child); in lv_page_signal()
/AliOS-Things-master/kernel/rhino/include/
A Dk_rbtree.h93 struct k_rbtree_node_t *child = node->rbt_right, *tmp = node->rbt_left; in rbtree_erase_augmented() local
100 rbtree_change_child(node, child, parent, root); in rbtree_erase_augmented()
101 if (child) { in rbtree_erase_augmented()
102 child->rbt_parent_color = pc; in rbtree_erase_augmented()
107 } else if (!child) { in rbtree_erase_augmented()
114 struct k_rbtree_node_t *successor = child, *child2; in rbtree_erase_augmented()
115 tmp = child->rbt_left; in rbtree_erase_augmented()
127 successor->rbt_right = child; in rbtree_erase_augmented()
128 rbtree_set_parent(child, successor); in rbtree_erase_augmented()
/AliOS-Things-master/components/cjson/src/
A DcJSON.c1419 item->child = head; in parse_array()
1591 item->child = head; in parse_object()
1730 child = array->child; in cJSON_GetArraySize()
1735 child = child->next; in cJSON_GetArraySize()
1853 child = array->child; in add_item_to_array()
1855 if (child == NULL) in add_item_to_array()
1865 child = child->next; in add_item_to_array()
2350 item->child = (cJSON*)cast_away_const(child); in cJSON_CreateObjectReference()
2360 item->child = (cJSON*)cast_away_const(child); in cJSON_CreateArrayReference()
2594 child = item->child; in cJSON_Duplicate()
[all …]
/AliOS-Things-master/hardware/chip/haas1000/release/auto_build_tool/
A Dhaas1000_genbin.py194 child = subprocess.Popen(cmd_list) variable
197 status = child.poll()
219 child = subprocess.Popen(cmd_list) variable
221 status = child.poll()
248 child = subprocess.Popen(cmd_list) variable
251 status = child.poll()
293 child = subprocess.Popen(cmd_list) variable
296 status = child.poll()
323 status = child.poll()
422 child = subprocess.Popen(cmd_list) variable
[all …]
/AliOS-Things-master/hardware/chip/rtl872xd/release/auto_build_tool/
A Dgenbin.py194 child = subprocess.Popen(cmd_list) variable
197 status = child.poll()
219 child = subprocess.Popen(cmd_list) variable
221 status = child.poll()
248 child = subprocess.Popen(cmd_list) variable
251 status = child.poll()
293 child = subprocess.Popen(cmd_list) variable
296 status = child.poll()
323 status = child.poll()
425 child = subprocess.Popen(cmd_list) variable
[all …]
/AliOS-Things-master/components/mbedtls/library/
A Dx509_crt.c2046 if( mbedtls_md( md_info, child->tbs.p, child->tbs.len, hash ) != 0 ) in x509_crt_check_signature()
2061 child->sig.p, child->sig.len, &rs_ctx->pk ) ); in x509_crt_check_signature()
2067 return( mbedtls_pk_verify_ext( child->sig_pk, child->sig_opts, &parent->pk, in x509_crt_check_signature()
2069 child->sig.p, child->sig.len ) ); in x509_crt_check_signature()
2153 mbedtls_x509_crt *child, in x509_crt_find_parent_in() argument
2421 mbedtls_x509_crt *child; in x509_crt_verify_chain() local
2438 child = cur->crt; in x509_crt_verify_chain()
2445 child = crt; in x509_crt_verify_chain()
2453 cur->crt = child; in x509_crt_verify_chain()
2516 x509_name_cmp( &child->issuer, &child->subject ) == 0 ) in x509_crt_verify_chain()
[all …]
/AliOS-Things-master/components/linkkit/infra/
A Dinfra_cjson.c1604 lite_cjson_item_t *child = NULL; in add_item_to_array() local
1610 child = array->child; in add_item_to_array()
1612 if (child == NULL) { in add_item_to_array()
1614 array->child = item; in add_item_to_array()
1617 while (child->next) { in add_item_to_array()
1618 child = child->next; in add_item_to_array()
1620 suffix_object(child, item); in add_item_to_array()
1823 a->child = n; in lite_cjson_create_intArray()
1853 a->child = n; in lite_cjson_create_floatArray()
1884 a->child = n; in lite_cjson_create_doubleArray()
[all …]
/AliOS-Things-master/components/littlevgl/src/lv_core/
A Dlv_obj.c472 while(child) { in lv_obj_clean()
475 child_next = lv_obj_get_child(obj, child); in lv_obj_clean()
476 lv_obj_del(child); in lv_obj_clean()
477 child = child_next; in lv_obj_clean()
1544 if(child == NULL) { in lv_obj_get_child()
1564 if(child == NULL) { in lv_obj_get_child_back()
2247 while(child != NULL) {
2248 if(child->style_p == NULL) {
2251 } else if(child->style_p->glass) {
2253 refresh_children_style(child);
[all …]
A Dlv_obj.h655 lv_obj_t * lv_obj_get_child(const lv_obj_t * obj, const lv_obj_t * child);
664 lv_obj_t * lv_obj_get_child_back(const lv_obj_t * obj, const lv_obj_t * child);
/AliOS-Things-master/components/cjson/include/
A DcJSON.h109 struct cJSON *child; member
208 CJSON_PUBLIC(cJSON *) cJSON_CreateObjectReference(const cJSON *child);
209 CJSON_PUBLIC(cJSON *) cJSON_CreateArrayReference(const cJSON *child);
275 #define cJSON_ArrayForEach(element, array) for(element = (array != NULL) ? (array)->child : NULL; e…
/AliOS-Things-master/components/py_engine/modules/driver/
A Dboard_mgr.c703 cJSON *child = NULL; in board_parse_json_buff() local
797 child = io->child; in board_parse_json_buff()
798 while (NULL != child) { in board_parse_json_buff()
799 item = cJSON_GetObjectItem(child, MARKER_ID); in board_parse_json_buff()
801 child = child->next; in board_parse_json_buff()
807 parser_handle->fn(child, child->string); in board_parse_json_buff()
811 child = child->next; in board_parse_json_buff()
/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_malloc.c1944 #define leftmost_child(t) ((t)->child[0] != 0? (t)->child[0] : (t)->child[1])
2784 if (u->child[0] != 0) { in do_check_tree()
2794 if (u->child[0] != 0 && u->child[1] != 0) { in do_check_tree()
2795 assert(chunksize(u->child[0]) < chunksize(u->child[1])); in do_check_tree()
3114 X->child[0] = X->child[1] = 0;\
3213 if (XP->child[0] == X) \
3214 XP->child[0] = R;\
3216 XP->child[1] = R;\
3226 R->child[0] = C0;\
3234 R->child[1] = C1;\
[all …]
/AliOS-Things-master/components/oss/src/external/tinyxml2/
A Dtinyxml2.cpp790 for (const XMLNode* child = this->FirstChild(); child; child = child->NextSibling()) { in DeepClone() local
810 TIXMLASSERT( child ); in Unlink()
813 if ( child == _firstChild ) { in Unlink()
816 if ( child == _lastChild ) { in Unlink()
820 if ( child->_prev ) { in Unlink()
821 child->_prev->_next = child->_next; in Unlink()
823 if ( child->_next ) { in Unlink()
824 child->_next->_prev = child->_prev; in Unlink()
826 child->_next = 0; in Unlink()
827 child->_prev = 0; in Unlink()
[all …]
/AliOS-Things-master/components/amp/services/board_mgr/
A Dboard_mgr.c1267 cJSON *child = NULL; in board_parse_json_buff() local
1377 child = io->child; in board_parse_json_buff()
1378 while (NULL != child) { in board_parse_json_buff()
1379 item = cJSON_GetObjectItem(child, MARKER_ID); in board_parse_json_buff()
1381 child = child->next; in board_parse_json_buff()
1387 parser_handle->fn(child, child->string); in board_parse_json_buff()
1391 child = child->next; in board_parse_json_buff()
/AliOS-Things-master/hardware/chip/haas1000/drivers/services/interconnection/red/
A Dapp_interconnection_tlv.h42 void tlv_item_add_child(TLV_ITEM_T *parent, TLV_ITEM_T *child);
/AliOS-Things-master/components/linkkit/include/linkkit/infra/
A Dinfra_cjson.h69 *child; /* An array or object item will have a child pointer pointing to member
/AliOS-Things-master/components/SDL2/src/video/x11/
A DSDL_x11mouse.c390 Window root, child; in X11_GetGlobalMouseState() local
393 …if (X11_XQueryPointer(display, RootWindow(display, data->screen), &root, &child, &rootx, &rooty, &… in X11_GetGlobalMouseState()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/acceleration/compatibility/
A Ddatabase.fbs45 // Which child branches should also be consulted and used to override this

Completed in 83 milliseconds

12