Home
last modified time | relevance | path

Searched defs:node (Results 1 – 25 of 306) sorted by relevance

12345678910>>...13

/AliOS-Things-master/components/vfs/include/
A Dvfs_inode.h21 #define INODE_IS_TYPE(node, t) ((node)->type == (t)) argument
23 #define INODE_IS_CHAR(node) INODE_IS_TYPE(node, VFS_TYPE_CHAR_DEV) argument
24 #define INODE_IS_BLOCK(node) INODE_IS_TYPE(node, VFS_TYPE_BLOCK_DEV) argument
25 #define INODE_IS_FS(node) INODE_IS_TYPE(node, VFS_TYPE_FS_DEV) argument
27 #define INODE_GET_TYPE(node) ((node)->type) argument
28 #define INODE_SET_TYPE(node, t) do { (node)->type = (t); } while(0) argument
30 #define INODE_SET_CHAR(node) INODE_SET_TYPE(node, VFS_TYPE_CHAR_DEV) argument
31 #define INODE_SET_BLOCK(node) INODE_SET_TYPE(node, VFS_TYPE_BLOCK_DEV) argument
32 #define INODE_SET_FS(node) INODE_SET_TYPE(node, VFS_TYPE_FS_DEV) argument
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/kernels/
A Delementwise.cc40 TfLiteStatus GenericPrepare(TfLiteContext* context, TfLiteNode* node) { in GenericPrepare()
57 inline TfLiteStatus EvalImpl(TfLiteContext* context, TfLiteNode* node, in EvalImpl()
71 inline TfLiteStatus EvalNumeric(TfLiteContext* context, TfLiteNode* node, in EvalNumeric()
81 TfLiteStatus AbsEval(TfLiteContext* context, TfLiteNode* node) { in AbsEval()
85 TfLiteStatus SinEval(TfLiteContext* context, TfLiteNode* node) { in SinEval()
89 TfLiteStatus CosEval(TfLiteContext* context, TfLiteNode* node) { in CosEval()
93 TfLiteStatus LogEval(TfLiteContext* context, TfLiteNode* node) { in LogEval()
97 TfLiteStatus SqrtEval(TfLiteContext* context, TfLiteNode* node) { in SqrtEval()
101 TfLiteStatus RsqrtEval(TfLiteContext* context, TfLiteNode* node) { in RsqrtEval()
105 TfLiteStatus SquareEval(TfLiteContext* context, TfLiteNode* node) { in SquareEval()
[all …]
A Dkernel_util.h32 const TfLiteNode* node, in GetMutableEvalInput()
41 const TfLiteNode* node, int index) { in GetEvalInput()
47 const TfLiteNode* node, int index) { in GetEvalOutput()
/AliOS-Things-master/components/vfs/
A Dvfs.c125 vfs_inode_t *node; in vfs_close_without_glock() local
264 vfs_inode_t *node; in vfs_open() local
352 vfs_inode_t *node; in vfs_close() local
430 vfs_inode_t *node; in vfs_read() local
483 vfs_inode_t *node; in vfs_write() local
549 vfs_inode_t *node; in vfs_ioctl() local
602 vfs_inode_t *node; in vfs_do_pollfd() local
654 vfs_inode_t *node; in vfs_lseek() local
697 vfs_inode_t *node; in vfs_sync() local
758 vfs_inode_t *node; in vfs_stat() local
[all …]
A Dvfs_inode.c61 static void close_all_files_on_node(vfs_inode_t *node) in close_all_files_on_node()
82 int32_t vfs_inode_del(vfs_inode_t *node) in vfs_inode_del()
147 vfs_inode_t *node; in vfs_inode_open() local
208 void vfs_inode_ref(vfs_inode_t *node) in vfs_inode_ref()
228 void vfs_inode_unref(vfs_inode_t *node) in vfs_inode_unref()
263 int32_t vfs_inode_busy(vfs_inode_t *node) in vfs_inode_busy()
295 int32_t vfs_inode_detach(vfs_inode_t *node) in vfs_inode_detach()
330 vfs_inode_t *node = NULL; local
382 vfs_inode_t *node; local
/AliOS-Things-master/kernel/rhino/
A Dk_rbtree.c20 static void rbtree_insert(struct k_rbtree_node_t *node, struct k_rbtree_root_t *root, in rbtree_insert()
108 struct k_rbtree_node_t *node = NULL, *sibling, *tmp1, *tmp2; in rbtree_erase_color() local
215 static inline void rbtree_dummy_propagate(struct k_rbtree_node_t *node, struct k_rbtree_node_t *sto… in rbtree_dummy_propagate()
223 void rbtree_insert_augmented(struct k_rbtree_node_t *node, struct k_rbtree_root_t *root, in rbtree_insert_augmented()
229 void k_rbtree_insert_color(struct k_rbtree_node_t *node, struct k_rbtree_root_t *root) in k_rbtree_insert_color()
234 void k_rbtree_erase(struct k_rbtree_node_t *node, struct k_rbtree_root_t *root) in k_rbtree_erase()
271 struct k_rbtree_node_t *k_rbtree_next(const struct k_rbtree_node_t *node) in k_rbtree_next()
294 struct k_rbtree_node_t *k_rbtree_prev(const struct k_rbtree_node_t *node) in k_rbtree_prev()
333 static struct k_rbtree_node_t *k_rbtree_left_deepest_node(const struct k_rbtree_node_t *node) in k_rbtree_left_deepest_node()
348 struct k_rbtree_node_t *k_rbtree_next_postorder(const struct k_rbtree_node_t *node) in k_rbtree_next_postorder()
/AliOS-Things-master/components/freetype/src/cache/
A Dftccache.c49 ftc_node_mru_link( FTC_Node node, in ftc_node_mru_link()
79 ftc_node_mru_up( FTC_Node node, in ftc_node_mru_up()
117 FTC_Node node, *pnode; in ftc_cache_resize() local
232 FTC_Node node = *pnode; in ftc_node_hash_unlink() local
257 ftc_node_hash_link( FTC_Node node, in ftc_node_hash_link()
273 ftc_node_destroy( FTC_Node node, in ftc_node_destroy()
418 FTC_Node node ) in ftc_cache_add()
450 FTC_Node node; in FTC_Cache_NewNode() local
490 FTC_Node node; in FTC_Cache_Lookup() local
581 FTC_Node node = *pnode; in FTC_Cache_RemoveFaceID() local
[all …]
A Dftcmru.c30 FTC_MruNode node ) in FTC_MruNode_Prepend()
74 FTC_MruNode node ) in FTC_MruNode_Up()
123 FTC_MruNode node ) in FTC_MruNode_Remove()
207 FTC_MruNode first, node; in FTC_MruList_Find() local
241 FTC_MruNode node = NULL; in FTC_MruList_New() local
295 FTC_MruNode node; in FTC_MruList_Lookup() local
309 FTC_MruNode node ) in FTC_MruList_Remove()
331 FTC_MruNode first, node, next; in FTC_MruList_RemoveSelection() local
A Dftcmanag.c79 FTC_MruNodeRec node; member
92 FTC_SizeNode node = (FTC_SizeNode)ftcnode; in ftc_size_node_done() local
106 FTC_SizeNode node = (FTC_SizeNode)ftcnode; in ftc_size_node_compare() local
125 FTC_SizeNode node = (FTC_SizeNode)ftcnode; in ftc_size_node_init() local
141 FTC_SizeNode node = (FTC_SizeNode)ftcnode; in ftc_size_node_reset() local
170 FTC_SizeNode node = (FTC_SizeNode)ftcnode; in ftc_size_node_compare_faceid() local
223 FTC_MruNodeRec node; member
469 FTC_Node node, first; in FTC_Manager_Check() local
535 FTC_Node node, first; in FTC_Manager_Compress() local
631 FTC_Node node; in FTC_Manager_FlushN() local
[all …]
/AliOS-Things-master/components/netmgr/src/
A Dnetmgr_nbiot.c16 int netmgr_nbiot_provision(netmgr_dev_t *node) in netmgr_nbiot_provision()
25 int netmgr_nbiot_unprovision(netmgr_dev_t *node) in netmgr_nbiot_unprovision()
37 int netmgr_nbiot_info(netmgr_dev_t *node) in netmgr_nbiot_info()
79 netmgr_dev_t *node = netmgr_find_dev(&netmgr->dev_list, "nbiot"); in netmgr_nbiot_service() local
101 static int netmgr_nbiot_reset(netmgr_dev_t *node) in netmgr_nbiot_reset()
116 netmgr_dev_t *node = NULL; in netmgr_nbiot_init() local
A Dnetmgr_eth.c18 static int netmgr_eth_provision(netmgr_dev_t *node) in netmgr_eth_provision()
31 static int netmgr_eth_unprovision(netmgr_dev_t *node) in netmgr_eth_unprovision()
41 static int netmgr_eth_reset(netmgr_dev_t *node) in netmgr_eth_reset()
46 static int netmgr_eth_info(netmgr_dev_t *node) in netmgr_eth_info()
74 netmgr_dev_t *node = (netmgr_dev_t *)param->hdl; in netmgr_eth_service() local
95 netmgr_dev_t *node = NULL; in netmgr_eth_init() local
A Dnetmgr_gprs.c23 static int netmgr_gprs_provision(netmgr_dev_t *node) in netmgr_gprs_provision()
47 static int netmgr_gprs_unprovision(netmgr_dev_t *node) in netmgr_gprs_unprovision()
52 static int netmgr_gprs_reset(netmgr_dev_t *node) in netmgr_gprs_reset()
67 static int netmgr_gprs_info(netmgr_dev_t *node) in netmgr_gprs_info()
110 netmgr_dev_t *node = NULL; in netmgr_gprs_init() local
/AliOS-Things-master/components/linkkit/dev_model/
A Ddm_manager.c62 _OU_ dm_mgr_dev_node_t **node) in _dm_mgr_search_dev_by_pkdn()
96 dm_mgr_dev_node_t *node = NULL; in _dm_mgr_insert_dev() local
233 dm_mgr_dev_node_t *node = NULL; in dm_mgr_device_query() local
257 dm_mgr_dev_node_t *node = NULL; in dm_mgr_device_create() local
312 dm_mgr_dev_node_t *node = NULL; in dm_mgr_device_destroy() local
414 dm_mgr_dev_node_t *node = NULL; in dm_mgr_search_device_by_devid() local
437 dm_mgr_dev_node_t *node = NULL; in dm_mgr_search_device_by_pkdn() local
475 dm_mgr_dev_node_t *node = NULL; in dm_mgr_get_dev_type() local
494 dm_mgr_dev_node_t *node = NULL; in dm_mgr_set_dev_enable() local
513 dm_mgr_dev_node_t *node = NULL; in dm_mgr_set_dev_disable() local
[all …]
A Ddm_message_cache.c52 dm_msg_cache_node_t *node = NULL; in dm_msg_cache_deinit() local
79 dm_msg_cache_node_t *node = NULL; in dm_msg_cache_insert() local
107 int dm_msg_cache_search(_IN_ int msgid, _OU_ dm_msg_cache_node_t **node) in dm_msg_cache_search()
134 dm_msg_cache_node_t *node = NULL; in dm_msg_cache_remove() local
161 dm_msg_cache_node_t *node = NULL; in dm_msg_cache_tick() local
/AliOS-Things-master/components/ble_host/include/misc/
A Ddlist.h205 static inline int sys_dlist_is_head(sys_dlist_t *list, sys_dnode_t *node) in sys_dlist_is_head()
219 static inline int sys_dlist_is_tail(sys_dlist_t *list, sys_dnode_t *node) in sys_dlist_is_tail()
292 sys_dnode_t *node) in sys_dlist_peek_next_no_check()
308 sys_dnode_t *node) in sys_dlist_peek_next()
337 static inline void sys_dlist_append(sys_dlist_t *list, sys_dnode_t *node) in sys_dlist_append()
357 static inline void sys_dlist_prepend(sys_dlist_t *list, sys_dnode_t *node) in sys_dlist_prepend()
380 sys_dnode_t *insert_point, sys_dnode_t *node) in sys_dlist_insert_after()
406 sys_dnode_t *insert_point, sys_dnode_t *node) in sys_dlist_insert_before()
461 static inline void sys_dlist_remove(sys_dnode_t *node) in sys_dlist_remove()
479 sys_dnode_t *node; in sys_dlist_get() local
[all …]
A Dslist.h235 static inline sys_snode_t *sys_slist_peek_next_no_check(sys_snode_t *node) in sys_slist_peek_next_no_check()
247 static inline sys_snode_t *sys_slist_peek_next(sys_snode_t *node) in sys_slist_peek_next()
259 sys_snode_t *node) in sys_slist_prepend()
276 sys_snode_t *node) in sys_slist_append()
336 sys_snode_t *node) in sys_slist_insert()
359 sys_snode_t *node = list->head; in sys_slist_get_not_empty() local
391 sys_snode_t *node) in sys_slist_remove()
421 sys_snode_t *node) in sys_slist_find_and_remove()
/AliOS-Things-master/components/amp/utils/list/
A Damp_list.h75 static inline void dlist_add(dlist_t *node, dlist_t *queue) in dlist_add()
86 static inline void dlist_add_tail(dlist_t *node, dlist_t *queue) in dlist_add_tail()
96 static inline void dlist_del(dlist_t *node) in dlist_del()
110 static inline void dlist_init(dlist_t *node) in dlist_init()
180 #define dlist_for_each_entry(queue, node, type, member) \ argument
194 #define dlist_for_each_entry_safe(queue, n, node, type, member) \ argument
265 static inline void slist_add(slist_t *node, slist_t *head) in slist_add()
277 static inline void slist_add_tail(slist_t *node, slist_t *head) in slist_add_tail()
292 static inline void slist_del(slist_t *node, slist_t *head) in slist_del()
334 #define slist_for_each_entry(queue, node, type, member) \ argument
[all …]
/AliOS-Things-master/components/csi/csi2/include/drv/
A Dlist.h64 static inline void dlist_add(dlist_t *node, dlist_t *queue) in dlist_add()
69 static inline void dlist_add_tail(dlist_t *node, dlist_t *queue) in dlist_add_tail()
74 static inline void dlist_del(dlist_t *node) in dlist_del()
83 static inline void dlist_init(dlist_t *node) in dlist_init()
144 #define dlist_for_each_entry(queue, node, type, member) \ argument
158 #define dlist_for_each_entry_safe(queue, n, node, type, member) \ argument
215 static inline void slist_add(slist_t *node, slist_t *head) in slist_add()
223 static inline void slist_del(slist_t *node, slist_t *head) in slist_del()
248 struct slist_s *node = l; in slist_remove() local
289 #define slist_for_each_entry(queue, node, type, member) \ argument
[all …]
/AliOS-Things-master/components/py_engine/external/amp_utils/
A Damp_list.h73 static inline void dlist_add(dlist_t *node, dlist_t *queue) in dlist_add()
85 static inline void dlist_add_tail(dlist_t *node, dlist_t *queue) in dlist_add_tail()
95 static inline void dlist_del(dlist_t *node) in dlist_del()
109 static inline void dlist_init(dlist_t *node) in dlist_init()
181 #define dlist_for_each_entry(queue, node, type, member) \ argument
194 #define dlist_for_each_entry_safe(queue, n, node, type, member) \ argument
265 static inline void slist_add(slist_t *node, slist_t *head) in slist_add()
277 static inline void slist_add_tail(slist_t *node, slist_t *head) in slist_add_tail()
292 static inline void slist_del(slist_t *node, slist_t *head) in slist_del()
334 #define slist_for_each_entry(queue, node, type, member) \ argument
[all …]
/AliOS-Things-master/components/osal_aos/include/aos/
A Dlist.h75 static inline void dlist_add(dlist_t *node, dlist_t *queue) in dlist_add()
86 static inline void dlist_add_tail(dlist_t *node, dlist_t *queue) in dlist_add_tail()
96 static inline void dlist_del(dlist_t *node) in dlist_del()
110 static inline void dlist_init(dlist_t *node) in dlist_init()
180 #define dlist_for_each_entry(queue, node, type, member) \ argument
194 #define dlist_for_each_entry_safe(queue, n, node, type, member) \ argument
265 static inline void slist_add(slist_t *node, slist_t *head) in slist_add()
277 static inline void slist_add_tail(slist_t *node, slist_t *head) in slist_add_tail()
292 static inline void slist_del(slist_t *node, slist_t *head) in slist_del()
334 #define slist_for_each_entry(queue, node, type, member) \ argument
[all …]
/AliOS-Things-master/components/linkkit/iot_coap/server/
A DCoAPObserve.c32 CoapObserver *node = NULL, *next = NULL; in CoAPObsServer_deinit() local
61 CoapObserver *node = NULL; in CoAPObsServer_add() local
130 CoapObserver *node = NULL, *next = NULL; in CoapObsServer_delete() local
155 CoapObserver *node = NULL, *next = NULL; in CoapObsServerAll_delete() local
183 CoapObserver *node = NULL; in CoAPObsServer_notify() local
260 CoAPObservable *node = NULL, *next = NULL; in CoAPObsClient_deinit() local
282 CoAPObservable *node = NULL, *next = NULL; in CoAPObsClient_add() local
370 CoAPObservable *node = NULL, *next = NULL; in CoAPObsClient_delete() local
/AliOS-Things-master/components/uvoice/internal/
A Duvoice_list.h17 #define uvoice_list_for_each_entry(head, node, type, member) \ argument
22 #define uvoice_list_for_each_entry_safe(head, temp, node, type, member) \ argument
28 static inline void uvoice_list_add(uvoice_list_t *node, uvoice_list_t *head) in uvoice_list_add()
38 static inline void uvoice_list_add_tail(uvoice_list_t *node, uvoice_list_t *head) in uvoice_list_add_tail()
64 static inline void uvoice_list_del(uvoice_list_t *node) in uvoice_list_del()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/profiler/
A Dtreeview.cc32 void SortNode(TreeView::Node* node) { in SortNode()
46 void AddStack(const detail::Stack& stack, TreeView::Node* node, int level) { in AddStack()
69 void AddOther(TreeView::Node* node) { in AddOther()
117 void PrintTreeBelow(const TreeView::Node& node, const TreeView::Node& root, in PrintTreeBelow()
144 int DepthOfTreeBelow(const TreeView::Node& node) { in DepthOfTreeBelow()
157 const TreeView::Node& node, in WeightBelowNodeMatchingFunction()
169 int WeightBelowNodeMatchingUnformatted(const TreeView::Node& node, in WeightBelowNodeMatchingUnformatted()
175 int WeightBelowNodeMatchingFormatted(const TreeView::Node& node, in WeightBelowNodeMatchingFormatted()
/AliOS-Things-master/components/SDL2/src/core/linux/
A DSDL_dbus.c193 SDL_DBus_CallMethodInternal(DBusConnection *conn, const char *node, const char *path, const char *i… in SDL_DBus_CallMethodInternal()
231 SDL_DBus_CallMethodOnConnection(DBusConnection *conn, const char *node, const char *path, const cha… in SDL_DBus_CallMethodOnConnection()
242 SDL_DBus_CallMethod(const char *node, const char *path, const char *interface, const char *method, … in SDL_DBus_CallMethod()
253 SDL_DBus_CallVoidMethodInternal(DBusConnection *conn, const char *node, const char *path, const cha… in SDL_DBus_CallVoidMethodInternal()
276 SDL_DBus_CallVoidMethodOnConnection(DBusConnection *conn, const char *node, const char *path, const… in SDL_DBus_CallVoidMethodOnConnection()
287 SDL_DBus_CallVoidMethod(const char *node, const char *path, const char *interface, const char *meth… in SDL_DBus_CallVoidMethod()
298 SDL_DBus_QueryPropertyOnConnection(DBusConnection *conn, const char *node, const char *path, const … in SDL_DBus_QueryPropertyOnConnection()
328 SDL_DBus_QueryProperty(const char *node, const char *path, const char *interface, const char *prope… in SDL_DBus_QueryProperty()
350 const char *node = "org.freedesktop.ScreenSaver"; in SDL_DBus_ScreensaverInhibit() local
/AliOS-Things-master/components/lwip/lwip2.0.0/apps/snmp/
A Dsnmp_mib2_snmp.c49 snmp_get_value(const struct snmp_scalar_array_node_def *node, void *value) in snmp_get_value()
156 snmp_set_test(const struct snmp_scalar_array_node_def *node, u16_t len, void *value) in snmp_set_test()
174 snmp_set_value(const struct snmp_scalar_array_node_def *node, u16_t len, void *value) in snmp_set_value()

Completed in 59 milliseconds

12345678910>>...13