Home
last modified time | relevance | path

Searched refs:last (Results 1 – 25 of 67) sorted by relevance

123

/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_models/server/
Dserver_common.c191 bool bt_mesh_is_server_recv_last_msg(struct bt_mesh_last_msg_info *last, in bt_mesh_is_server_recv_last_msg() argument
201 if (last->tid == tid && last->src == src && last->dst == dst && in bt_mesh_is_server_recv_last_msg()
202 (*now - last->timestamp <= K_SECONDS(6))) { in bt_mesh_is_server_recv_last_msg()
209 void bt_mesh_server_update_last_msg(struct bt_mesh_last_msg_info *last, in bt_mesh_server_update_last_msg() argument
217 last->tid = tid; in bt_mesh_server_update_last_msg()
218 last->src = src; in bt_mesh_server_update_last_msg()
219 last->dst = dst; in bt_mesh_server_update_last_msg()
220 last->timestamp = *now; in bt_mesh_server_update_last_msg()
Dstate_binding.c23 float root = 0.0, last = 0.0, diff = 0.0; in bt_mesh_sqrt() local
33 last = root; in bt_mesh_sqrt()
35 diff = root - last; in bt_mesh_sqrt()
/hal_espressif-3.7.0/components/wpa_supplicant/src/eap_server/
Deap_server_methods.c110 struct eap_method *m, *last = NULL; in eap_server_method_register() local
125 last = m; in eap_server_method_register()
128 if (last) in eap_server_method_register()
129 last->next = method; in eap_server_method_register()
/hal_espressif-3.7.0/components/mbedtls/port/sha/block/
Desp_sha1.c193 uint32_t last, padn; in mbedtls_sha1_finish() local
204 last = ctx->total[0] & 0x3F; in mbedtls_sha1_finish()
205 padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last ); in mbedtls_sha1_finish()
Desp_sha256.c212 uint32_t last, padn; in mbedtls_sha256_finish() local
223 last = ctx->total[0] & 0x3F; in mbedtls_sha256_finish()
224 padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last ); in mbedtls_sha256_finish()
Desp_sha512.c259 size_t last, padn; in mbedtls_sha512_finish() local
270 last = (size_t)( ctx->total[0] & 0x7F ); in mbedtls_sha512_finish()
271 padn = ( last < 112 ) ? ( 112 - last ) : ( 240 - last ); in mbedtls_sha512_finish()
/hal_espressif-3.7.0/components/mbedtls/port/sha/dma/
Desp_sha1.c193 uint32_t last, padn; in mbedtls_sha1_finish() local
204 last = ctx->total[0] & 0x3F; in mbedtls_sha1_finish()
205 padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last ); in mbedtls_sha1_finish()
Desp_sha256.c203 uint32_t last, padn; in mbedtls_sha256_finish() local
214 last = ctx->total[0] & 0x3F; in mbedtls_sha256_finish()
215 padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last ); in mbedtls_sha256_finish()
Desp_sha512.c262 size_t last, padn; in mbedtls_sha512_finish() local
273 last = (size_t)( ctx->total[0] & 0x7F ); in mbedtls_sha512_finish()
274 padn = ( last < 112 ) ? ( 112 - last ) : ( 240 - last ); in mbedtls_sha512_finish()
/hal_espressif-3.7.0/components/wpa_supplicant/src/crypto/
Daes-gcm.c125 size_t last = x + xlen - xpos; in ghash() local
126 os_memcpy(tmp, xpos, last); in ghash()
127 os_memset(tmp + last, 0, sizeof(tmp) - last); in ghash()
145 size_t i, n, last; in aes_gctr() local
165 last = x + xlen - xpos; in aes_gctr()
166 if (last) { in aes_gctr()
169 for (i = 0; i < last; i++) in aes_gctr()
Daes-ccm.c67 size_t last = len % AES_BLOCK_SIZE; in aes_ccm_auth() local
76 if (last) { in aes_ccm_auth()
78 for (i = 0; i < last; i++) in aes_ccm_auth()
96 size_t last = len % AES_BLOCK_SIZE; in aes_ccm_encr() local
108 if (last) { in aes_ccm_encr()
112 for (i = 0; i < last; i++) in aes_ccm_encr()
/hal_espressif-3.7.0/components/efuse/
Defuse_table_gen.py218 last = None
220 if last is None:
222 if last is not None:
223 if last.efuse_block != p.efuse_block:
224 … rows += '%d] \n\n%s \n[%d ' % (last.bit_start + last.bit_count - 1, p.efuse_block, p.bit_start)
225 elif last.bit_start + last.bit_count != p.bit_start:
226 rows += '%d] [%d ' % (last.bit_start + last.bit_count - 1, p.bit_start)
227 last = p
228 rows += '%d] \n' % (last.bit_start + last.bit_count - 1)
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_models/server/include/
Dlighting_server.h37 struct bt_mesh_last_msg_info last; member
73 struct bt_mesh_last_msg_info last; member
90 struct bt_mesh_last_msg_info last; member
121 struct bt_mesh_last_msg_info last; member
138 struct bt_mesh_last_msg_info last; member
147 struct bt_mesh_last_msg_info last; member
177 struct bt_mesh_last_msg_info last; member
259 struct bt_mesh_last_msg_info last; member
Dserver_common.h112 bool bt_mesh_is_server_recv_last_msg(struct bt_mesh_last_msg_info *last,
115 void bt_mesh_server_update_last_msg(struct bt_mesh_last_msg_info *last,
Dgeneric_server.h27 struct bt_mesh_last_msg_info last; member
46 struct bt_mesh_last_msg_info last; member
93 struct bt_mesh_last_msg_info last; member
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_core/
Dfriend.c173 if (frnd->last) { in friend_clear()
176 bt_mesh_adv_buf_ref_debug(__func__, frnd->last, 2U, BLE_MESH_BUF_REF_EQUAL); in friend_clear()
177 BLE_MESH_ADV(frnd->last)->busy = 0U; in friend_clear()
179 bt_mesh_adv_buf_ref_debug(__func__, frnd->last, 1U, BLE_MESH_BUF_REF_EQUAL); in friend_clear()
182 net_buf_unref(frnd->last); in friend_clear()
183 frnd->last = NULL; in friend_clear()
617 if (frnd->last) { in enqueue_sub_cfm()
619 net_buf_unref(frnd->last); in enqueue_sub_cfm()
622 frnd->last = buf; in enqueue_sub_cfm()
760 if (msg->fsn == frnd->fsn && frnd->last) { in bt_mesh_friend_poll()
[all …]
/hal_espressif-3.7.0/components/mbedtls/port/sha/parallel_engine/
Desp_sha256.c342 uint32_t last, padn; in mbedtls_sha256_finish() local
353 last = ctx->total[0] & 0x3F; in mbedtls_sha256_finish()
354 padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last ); in mbedtls_sha256_finish()
Desp_sha512.c380 size_t last, padn; in mbedtls_sha512_finish() local
391 last = (size_t)( ctx->total[0] & 0x7F ); in mbedtls_sha512_finish()
392 padn = ( last < 112 ) ? ( 112 - last ) : ( 240 - last ); in mbedtls_sha512_finish()
Desp_sha1.c382 uint32_t last, padn; in mbedtls_sha1_finish() local
393 last = ctx->total[0] & 0x3F; in mbedtls_sha1_finish()
394 padn = ( last < 56 ) ? ( 56 - last ) : ( 120 - last ); in mbedtls_sha1_finish()
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/api/models/include/
Desp_ble_mesh_lighting_model_api.h854 …esp_ble_mesh_last_msg_info_t last; /*!< Parameters of the last received set message */ member
893 esp_ble_mesh_last_msg_info_t last; /*!< Parameters of the last received set message */ member
912 esp_ble_mesh_last_msg_info_t last; /*!< Parameters of the last received set message */ member
945 esp_ble_mesh_last_msg_info_t last; /*!< Parameters of the last received set message */ member
964 esp_ble_mesh_last_msg_info_t last; /*!< Parameters of the last received set message */ member
974 esp_ble_mesh_last_msg_info_t last; /*!< Parameters of the last received set message */ member
1006 esp_ble_mesh_last_msg_info_t last; /*!< Parameters of the last received set message */ member
1221 esp_ble_mesh_last_msg_info_t last; /*!< Parameters of the last received set message */ member
/hal_espressif-3.7.0/components/hal/
Dsdio_slave_hal.c183 sdio_slave_hal_send_desc_t *first = NULL, *last = NULL; in init_send_queue() local
191 rcv_res = sdio_ringbuf_recv(buf, &last, NULL, RINGBUF_GET_ONE); in init_send_queue()
194 ret = sdio_ringbuf_send(buf, link_desc_to_last, last); in init_send_queue()
197 sdio_ringbuf_return(buf, (uint8_t *) last); in init_send_queue()
201 last = NULL; in init_send_queue()
203 rcv_res = sdio_ringbuf_recv(buf, &first, &last, RINGBUF_GET_ALL); in init_send_queue()
205 HAL_ASSERT(first == last); //there should be only one desc remain in init_send_queue()
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/a2dp/
Da2d_sbc.c179 void A2D_BldSbcMplHdr(UINT8 *p_dst, BOOLEAN frag, BOOLEAN start, BOOLEAN last, UINT8 num) in A2D_BldSbcMplHdr() argument
189 if (last) { in A2D_BldSbcMplHdr()
/hal_espressif-3.7.0/components/bt/host/bluedroid/stack/include/stack/
Da2d_sbc.h160 BOOLEAN last, UINT8 num);
/hal_espressif-3.7.0/components/esp_rom/test_apps/linux_rom_apis/
DREADME.md28 Ideally, all tests pass, which is indicated by "All tests passed" in the last line:
/hal_espressif-3.7.0/components/esp_timer/src/
Desp_timer.c327 esp_timer_handle_t it, last = NULL; in timer_insert() local
337 last = it; in timer_insert()
340 __ASSERT_NO_MSG(last); in timer_insert()
341 LIST_INSERT_AFTER(last, timer, list_entry); in timer_insert()

123