Home
last modified time | relevance | path

Searched refs:act (Results 1 – 25 of 28) sorted by relevance

12

/AliOS-Things-master/components/littlevgl/src/lv_misc/
A Dlv_ll.c30 static void node_set_prev(lv_ll_t * ll_p, lv_ll_node_t * act, lv_ll_node_t * prev);
31 static void node_set_next(lv_ll_t * ll_p, lv_ll_node_t * act, lv_ll_node_t * next);
404 static void node_set_prev(lv_ll_t * ll_p, lv_ll_node_t * act, lv_ll_node_t * prev) in node_set_prev() argument
406 if(act == NULL) return; /*Can't set the prev node of `NULL`*/ in node_set_prev()
410 memcpy(act + LL_PREV_P_OFFSET(ll_p), &prev, node_p_size); in node_set_prev()
412 memset(act + LL_PREV_P_OFFSET(ll_p), 0, node_p_size); in node_set_prev()
421 static void node_set_next(lv_ll_t * ll_p, lv_ll_node_t * act, lv_ll_node_t * next) in node_set_next() argument
423 if(act == NULL) return; /*Can't set the next node of `NULL`*/ in node_set_next()
427 memcpy(act + LL_NEXT_P_OFFSET(ll_p), &next, node_p_size); in node_set_next()
429 memset(act + LL_NEXT_P_OFFSET(ll_p), 0, node_p_size); in node_set_next()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/kernels/
A Dactivation_utils.h32 inline float ActivationValFloat(TfLiteFusedActivation act, float a) { in ActivationValFloat() argument
33 switch (act) { in ActivationValFloat()
/AliOS-Things-master/components/ble_mesh/bt_mesh/core/inc/api/mesh/
A Dmain.h108 int (*output_number)(bt_mesh_output_action_t act, bt_u32_t num);
135 int (*input)(bt_mesh_input_action_t act, u8_t size);
229 int (*prov_input_num)(bt_mesh_output_action_t act, u8_t size);
251 int (*prov_output_num)(bt_mesh_input_action_t act, u8_t size);
/AliOS-Things-master/components/ble_mesh/bt_mesh/mesh_provisioner/
A Dmesh_provisioner.c51 static int provisioner_input_num(bt_mesh_output_action_t act, u8_t size);
52 static int provisioner_output_num(bt_mesh_input_action_t act, u8_t size);
109 static int provisioner_input_num(bt_mesh_output_action_t act, u8_t size) in provisioner_input_num() argument
113 if (BT_MESH_DISPLAY_NUMBER == act) { in provisioner_input_num()
120 } else if (BT_MESH_DISPLAY_STRING == act) { in provisioner_input_num()
159 static int provisioner_output_num(bt_mesh_input_action_t act, u8_t size) in provisioner_output_num() argument
169 if (BT_MESH_ENTER_NUMBER == act) { in provisioner_output_num()
191 } else if (BT_MESH_ENTER_STRING == act) { in provisioner_output_num()
/AliOS-Things-master/components/ramfs/src/
A Dramfs.c38 static void ramfs_node_set_prev(ramfs_ll_t *ll, ramfs_ll_node_t *act, in ramfs_node_set_prev() argument
41 memcpy(act + RAMFS_LL_PREV_OFFSET(ll), &prev, sizeof(ramfs_ll_node_t *)); in ramfs_node_set_prev()
53 static void ramfs_node_set_next(ramfs_ll_t *ll, ramfs_ll_node_t *act, in ramfs_node_set_next() argument
56 memcpy(act + RAMFS_LL_NEXT_OFFSET(ll), &next, sizeof(ramfs_ll_node_t *)); in ramfs_node_set_next()
154 void *ramfs_ll_get_next(ramfs_ll_t *ll, void *act) in ramfs_ll_get_next() argument
158 ramfs_ll_node_t *node = act; in ramfs_ll_get_next()
175 void *ramfs_ll_get_prev(ramfs_ll_t *ll, void *act) in ramfs_ll_get_prev() argument
179 ramfs_ll_node_t *node = act; in ramfs_ll_get_prev()
/AliOS-Things-master/components/amp_adapter/include/
A Daos_smartcard.h63 int aos_smartcard_get_act(aos_smartcard_act_t *act);
/AliOS-Things-master/components/littlevgl/src/lv_core/
A Dlv_group.c299 lv_obj_t * act = lv_group_get_focused(group); in lv_group_send_data() local
300 if(act == NULL) return LV_RES_OK; in lv_group_send_data()
304 res = act->signal_cb(act, LV_SIGNAL_CONTROL, &c); in lv_group_send_data()
307 res = lv_event_send(act, LV_EVENT_KEY, &c); in lv_group_send_data()
A Dlv_style.c323 lv_style_t * act = dsc->style_anim; in style_animator() local
325 lv_style_mix(start, end, act, val); in style_animator()
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/
A Dduktape.c28417 act = act->parent; in duk_push_new_target()
50524 (void *) act->func, (void *) act->parent, (void *) act->var_env,
50525 (void *) act->lex_env, (void *) act->cat, (void *) act->curr_pc,
53863 act = act->parent;
53927 for (; depth-- > 0; act = act->parent) {
54027 for (act = thr_callstack->callstack_curr; depth-- > 0; act = act->parent) {
54400 for (act = thr->callstack_curr; act != NULL; act = act->parent) {
56888 for (act = t->callstack_curr; act != NULL; act = act->parent) {
59023 for (act = t->callstack_curr; act != NULL; act = act->parent) {
70246 DUK_ASSERT(act->lex_env == act->var_env);
[all …]
/AliOS-Things-master/components/ble_mesh/bt_mesh/mesh_node/
A Dmesh_node.c188 static int node_input(bt_mesh_input_action_t act, u8_t size);
431 static int node_input(bt_mesh_input_action_t act, u8_t size) in node_input() argument
433 switch (act) { in node_input()
451 LOGI(TAG, "Unknown input action %u (size %u) requested!\n", act, size); in node_input()
456 g_mesh_node.input_act = act; in node_input()
/AliOS-Things-master/components/ble_mesh/bt_mesh/aos/
A Dmesh.c50 static int mesh_output_number_cb(bt_mesh_output_action_t act, bt_u32_t num) in mesh_output_number_cb() argument
54 event_data.action = act; in mesh_output_number_cb()
73 static int mesh_input_cb(bt_mesh_input_action_t act, u8_t size) in mesh_input_cb() argument
77 event_data.action = act; in mesh_input_cb()
/AliOS-Things-master/components/ble_mesh/bt_shell/bt_mesh/
A Dshell.c459 static int input(bt_mesh_input_action_t act, u8_t size) in input() argument
461 switch (act) { in input()
471 printf("Unknown input action %u (size %u) requested!\n", act, size); in input()
475 input_act = act; in input()
549 static int provisioner_input_num(bt_mesh_output_action_t act, u8_t size) in provisioner_input_num() argument
553 if (BT_MESH_DISPLAY_NUMBER == act) { in provisioner_input_num()
555 } else if (BT_MESH_DISPLAY_STRING == act) { in provisioner_input_num()
570 static int provisioner_output_num(bt_mesh_input_action_t act, u8_t size) in provisioner_output_num() argument
578 if (BT_MESH_ENTER_NUMBER == act) { in provisioner_output_num()
599 } else if (BT_MESH_ENTER_STRING == act) { in provisioner_output_num()
/AliOS-Things-master/components/ble_mesh/bt_mesh/
A DKconfig54 i.e. the ability to act as a proxy between a Mesh GATT Client
252 Enable this option to be able to act as a Low Power Node.
370 Enable this option to be able to act as a Friend Node.
/AliOS-Things-master/components/SDL2/src/video/x11/
A DSDL_x11events.c1040 Atom act= videodata->XdndActionCopy; in X11_DispatchEvent() local
1042 act = xevent.xclient.data.l[4]; in X11_DispatchEvent()
1044 printf("Action requested by user is : %s\n", X11_XGetAtomName(display , act)); in X11_DispatchEvent()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/gregbook/
A DCOPYING73 covered by this License; they are outside its scope. The act of
87 You may charge a fee for the physical act of transferring a copy, and
/AliOS-Things-master/hardware/chip/haas1000/drivers/platform/cmsis/
A DLICENSE.txt169 License. However, in accepting such obligations, You may act only
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/cmsis/
A DLICENSE.txt169 License. However, in accepting such obligations, You may act only
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/gemmlowp/
A DLICENSE170 License. However, in accepting such obligations, You may act only
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/flatbuffers/
A DLICENSE.txt170 License. However, in accepting such obligations, You may act only
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/
A DLICENSE170 License. However, in accepting such obligations, You may act only
/AliOS-Things-master/components/amp/
A DLICENSE169 License. However, in accepting such obligations, You may act only
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/tools/make/downloads/cmsis/
A DLICENSE.txt169 License. However, in accepting such obligations, You may act only
/AliOS-Things-master/components/mbedtls/
A Dapache-2.0.txt170 License. However, in accepting such obligations, You may act only
/AliOS-Things-master/components/jsoncpp/doc/
A Ddoxyfile.in221 # This tag can be used to specify a number of aliases that act as commands in
A Dweb_doxyfile.in221 # This tag can be used to specify a number of aliases that act as commands in

Completed in 291 milliseconds

12