| /bsp/allwinner/libraries/sunxi-hal/hal/source/ce/ |
| A D | ce_common.c | 203 if (task == NULL) { in ce_aes_config() 214 return task; in ce_aes_config() 292 task->next = 0; in ce_aes_start() 334 hal_free(task); in ce_aes_start() 536 task->next = 0; in ce_hash_start() 572 hal_free(task); in ce_hash_start() 577 if (task) { in ce_hash_start() 755 task->next = 0; in ce_rsa_start() 810 if (task) in ce_rsa_start() 970 hal_free(task); in do_rng_gen() [all …]
|
| A D | hal_ce.h | 51 void hal_ce_iv_mode_set(int mode, ce_task_desc_t *task); 60 void hal_ce_rsa_width_set(int size, ce_task_desc_t *task); 63 void hal_ce_ecc_width_set(int size, ce_task_desc_t *task); 66 void hal_ce_cts_last(ce_task_desc_t *task); 67 void hal_ce_hmac_sha1_last(ce_task_desc_t *task); 69 void hal_ce_xts_first(ce_task_desc_t *task); 70 void hal_ce_xts_last(ce_task_desc_t *task); 74 void hal_ce_aes_mode_set(int mode, ce_task_desc_t *task); 79 void hal_ce_data_len_set(int len, ce_task_desc_t *task); 83 void hal_ce_keysize_set(int size, ce_task_desc_t *task); [all …]
|
| A D | hal_ce.c | 227 hal_ce_keyselect_set(key_sel, task); in hal_ce_key_set() 228 hal_ce_keysize_set(size, task); in hal_ce_key_set() 284 hal_ce_cntsize_set(CE_CTR_SIZE_128, task); in hal_ce_cnt_set() 287 void hal_ce_cts_last(ce_task_desc_t *task) in hal_ce_cts_last() argument 289 task->sym_ctl |= CE_SYM_CTL_AES_CTS_LAST; in hal_ce_cts_last() 294 void hal_ce_xts_first(ce_task_desc_t *task) in hal_ce_xts_first() argument 299 void hal_ce_xts_last(ce_task_desc_t *task) in hal_ce_xts_last() argument 301 task->sym_ctl |= CE_SYM_CTL_AES_XTS_LAST; in hal_ce_xts_last() 319 void hal_ce_task_enable(ce_task_desc_t *task) in hal_ce_task_enable() argument 369 task->data_len = (len >> 2); in hal_ce_data_len_set() [all …]
|
| /bsp/n32/libraries/N32WB452_Firmware_Library/n32wb452_ble_driver/profile/ |
| A D | prf.c | 586 prf_env.prf[i].task = TASK_GAPC + i +1; in prf_init() 746 task = KE_BUILD_ID(task, conidx); in prf_src_task_get() 749 return task; in prf_src_task_get() 758 task = KE_BUILD_ID(task, conidx); in prf_dst_task_get() 761 return task; in prf_dst_task_get() 768 uint8_t idx = KE_IDX_GET(task); in prf_get_id_from_task() 770 task = KE_TYPE_GET(task); in prf_get_id_from_task() 776 if (prf_env.prf[i].task == task) in prf_get_id_from_task() 788 ke_task_id_t task = TASK_NONE; in prf_get_task_from_id() local 799 task = prf_env.prf[i].task; in prf_get_task_from_id() [all …]
|
| A D | user.c | 158 …t_init->service[0].svc_uuid, (uint8_t *)&cfg_flag,USER_IDX_NB, NULL, env->task, &user_att_db_api_d… in user_init() 160 …nt16_t)ATT_SVC_UKEY_SERVICE, (uint8_t *)&cfg_flag,USER_IDX_NB, NULL, env->task, &user_att_db[0],(s… in user_init() 163 …nt16_t)ATT_SVC_UKEY_SERVICE, (uint8_t *)&cfg_flag,USER_IDX_NB, NULL, env->task, &user_att_db[0],(s… in user_init() 176 user_env->prf_env.prf_task = env->task | PERM(PRF_MI, DISABLE); in user_init() 190 ke_state_set(env->task, USER_IDLE); in user_init()
|
| /bsp/n32/libraries/N32WB452_Firmware_Library/n32wb452_ble_driver/inc/ |
| A D | ke_task.h | 72 #define KE_MSG_HANDLER_TAB(task) __STATIC const struct ke_msg_handler task##_default_state[] = argument 75 #define KE_MSG_STATE(task) const struct ke_state_handler task##_default_handler = KE_STATE_HANDLER(… argument 218 void ke_task_msg_flush(ke_task_id_t task); 231 ke_task_id_t ke_task_check(ke_task_id_t task);
|
| A D | ke_timer.h | 54 ke_task_id_t task; member 91 void ke_timer_set(ke_msg_id_t const timer_id, ke_task_id_t const task, uint32_t delay); 104 void ke_timer_clear(ke_msg_id_t const timerid, ke_task_id_t const task);
|
| A D | rwip_task.h | 37 #define TASK_FIRST_MSG(task) ((uint16_t)((task) << 8)) argument
|
| A D | prf.h | 102 ke_task_id_t task; member 291 ke_task_id_t prf_get_id_from_task(ke_msg_id_t task);
|
| /bsp/allwinner/libraries/sunxi-hal/hal/source/g2d_rcq/ |
| A D | g2d_mixer.c | 871 if (!task) { in create_mixer_task() 879 task->p_rcq_info = in create_mixer_task() 882 if (!task->frame || !task->p_rcq_info) { in create_mixer_task() 906 if (task->mixer_mem_setup(task, p_para)) { in create_mixer_task() 907 task->destory(task); in create_mixer_task() 910 task->p_para = hal_malloc(sizeof(struct mixer_para) * task->frame_cnt); in create_mixer_task() 911 if (!task->p_para) { in create_mixer_task() 912 task->destory(task); in create_mixer_task() 915 memcpy(task->p_para, p_para, sizeof(struct mixer_para) * task->frame_cnt); in create_mixer_task() 925 free(task->frame); in create_mixer_task() [all …]
|
| /bsp/allwinner_tina/libcpu/ |
| A D | context_gcc.S | 43 LDR SP, [R1] @; get new task stack pointer 44 LDMFD SP!, {R4} @; pop new task spsr 46 LDMFD SP!, {R0-R12, LR, PC}^ @; pop new task r0-r12, lr & pc 54 LDR SP, [R0] @; get new task stack pointer 55 LDMFD SP!, {R4} @; pop new task cpsr 57 LDMFD SP!, {R0-R12, LR, PC}^ @; pop new task r0-r12, lr & pc
|
| /bsp/microchip/same70/board/ |
| A D | Kconfig | 49 Add CAN example task to project 56 Add ADC example task to project 63 Add I2C example task to project 70 Add GMAC LWIP example task to project
|
| /bsp/microchip/same54/board/ |
| A D | Kconfig | 51 Add CAN example task to project 58 Add ADC example task to project 65 Add I2C example task to project 72 Add GMAC LWIP example task to project
|
| /bsp/m16c62p/drivers/ |
| A D | interrupts_gcc.S | 25 …POPM R0,R1,R2,R3,A0,A1,SB,FB ; Restore all processor registers from the new task's … 40 POPM R0,R1,R2,R3,A0,A1,SB,FB ; Restore current task's registers 55 POPM R0,R1,R2,R3,A0,A1,SB,FB ; Restore current task's registers
|
| A D | interrupts_iar.asm | 36 …POPM R0,R1,R2,R3,A0,A1,SB,FB ; Restore all processor registers from the new task's … 49 POPM R0,R1,R2,R3,A0,A1,SB,FB ; Restore current task's registers 62 POPM R0,R1,R2,R3,A0,A1,SB,FB ; Restore current task's registers
|
| /bsp/raspberry-pi/raspi2/cpu/ |
| A D | context_gcc.S | 35 ldr sp, [r0] @ get new task stack pointer 37 ldmfd sp!, {r4} @ pop new task spsr 40 ldmfd sp!, {r0-r12, lr, pc}^ @ pop new task r0-r12, lr & pc
|
| A D | start_gcc.S | 203 stmfd sp!, {r4-r12,lr}@ push old task's lr,r12-r4 206 stmfd sp!, {r0} @ push old task's cpsr 214 ldr sp, [r6] @ get new task's stack pointer 219 ldmfd sp!, {r0-r12,lr,pc}^ @ pop new task's r0-r12,lr & pc, copy spsr to cpsr
|
| /bsp/nxp/imx/imx6sx/cortex-a9/cpu/ |
| A D | context_gcc.S | 35 ldr sp, [r0] @ get new task stack pointer 37 ldmfd sp!, {r4} @ pop new task spsr 40 ldmfd sp!, {r0-r12, lr, pc}^ @ pop new task r0-r12, lr & pc
|
| A D | start_gcc.S | 173 stmfd sp!, {r4-r12,lr}@ push old task's lr,r12-r4 176 stmfd sp!, {r0} @ push old task's cpsr 184 ldr sp, [r6] @ get new task's stack pointer 189 ldmfd sp!, {r0-r12,lr,pc}^ @ pop new task's r0-r12,lr & pc, copy spsr to cpsr
|
| /bsp/microchip/samc21/board/ |
| A D | Kconfig | 48 Add CAN example task to project 55 Add ADC example task to project 62 Add I2C example task to project
|
| /bsp/core-v-mcu/Libraries/core_v_hal_libraries/core_v_hal/include/ |
| A D | hal_i2c_pi.h | 203 pi_i2c_xfer_flags_e flags, pi_task_t *task); 224 pi_i2c_xfer_flags_e flags, pi_task_t *task);
|
| /bsp/microchip/samd51-adafruit-metro-m4/board/ |
| A D | Kconfig | 53 Add ADC example task to project 60 Add I2C example task to project
|
| /bsp/microchip/samd51-seeed-wio-terminal/board/ |
| A D | Kconfig | 53 Add ADC example task to project 60 Add I2C example task to project
|
| /bsp/microchip/saml10/board/ |
| A D | Kconfig | 58 Add ADC example task to project 65 Add I2C example task to project
|
| /bsp/ht32/ht32f52352/applications/ |
| A D | test.c | 163 MSH_CMD_EXPORT(sys_run_task, sys run task operation); 226 MSH_CMD_EXPORT(gpio_output_task, gpio output task operation); 313 MSH_CMD_EXPORT(gpio_input_task, gpio input task operation); 660 MSH_CMD_EXPORT(adc_task, adc task operation); 733 MSH_CMD_EXPORT(wdt_task, wdt task operation); 800 MSH_CMD_EXPORT(usbd_task, usbd task operation);
|