Home
last modified time | relevance | path

Searched refs:in_bytes (Results 1 – 8 of 8) sorted by relevance

/hal_espressif-latest/components/efuse/esp32/
Desp_efuse_utility.c49 static void apply_repeat_encoding(const uint8_t *in_bytes, uint32_t *out_words, size_t in_bytes_len…
169 esp_err_t esp_efuse_utility_apply_34_encoding(const uint8_t *in_bytes, uint32_t *out_words, size_t … in esp_efuse_utility_apply_34_encoding() argument
171 if (in_bytes == NULL || out_words == NULL || in_bytes_len % 6 != 0) { in esp_efuse_utility_apply_34_encoding()
180 xor ^= in_bytes[i]; in esp_efuse_utility_apply_34_encoding()
181 mul += (i + 1) * __builtin_popcount(in_bytes[i]); in esp_efuse_utility_apply_34_encoding()
184 memcpy(out, in_bytes, 6); // Data bytes in esp_efuse_utility_apply_34_encoding()
191 in_bytes += 6; in esp_efuse_utility_apply_34_encoding()
200 static void apply_repeat_encoding(const uint8_t *in_bytes, uint32_t *out_words, size_t in_bytes_len) in apply_repeat_encoding() argument
203 memcpy(&out_words[i * 4], (uint32_t *)in_bytes, in_bytes_len); in apply_repeat_encoding()
/hal_espressif-latest/tools/esptool_py/flasher_stub/
Dstub_write_flash.c430 size_t in_bytes = length; /* input remaining */ in handle_flash_deflated_data() local
441 status = tinfl_decompress(&fs.inflator, data_buf, &in_bytes, in handle_flash_deflated_data()
445 fs.remaining_compressed -= in_bytes; in handle_flash_deflated_data()
446 length -= in_bytes; in handle_flash_deflated_data()
447 data_buf += in_bytes; in handle_flash_deflated_data()
Dminiz.c235 size_t in_bytes, out_bytes; in mz_deflate() local
255 in_bytes = pStream->avail_in; in mz_deflate()
258 …= tdefl_compress((tdefl_compressor *)pStream->state, pStream->next_in, &in_bytes, pStream->next_ou… in mz_deflate()
259 pStream->next_in += (mz_uint)in_bytes; in mz_deflate()
260 pStream->avail_in -= (mz_uint)in_bytes; in mz_deflate()
261 pStream->total_in += (mz_uint)in_bytes; in mz_deflate()
430 size_t in_bytes, out_bytes, orig_avail_in; in mz_inflate() local
458 in_bytes = pStream->avail_in; in mz_inflate()
460 …status = tinfl_decompress(&pState->m_decomp, pStream->next_in, &in_bytes, pStream->next_out, pStre… in mz_inflate()
462 pStream->next_in += (mz_uint)in_bytes; in mz_inflate()
[all …]
/hal_espressif-latest/components/efuse/esp32/private_include/
Desp_efuse_utility.h39 esp_err_t esp_efuse_utility_apply_34_encoding(const uint8_t *in_bytes, uint32_t *out_words, size_t …
/hal_espressif-latest/components/bt/host/bluedroid/bta/dm/
Dbta_dm_sco.c653 INT32 BTA_DmPcmResample (void *p_src, UINT32 in_bytes, void *p_dst) in BTA_DmPcmResample() argument
658 APPL_TRACE_DEBUG("bta_pcm_resample : insamples %d", (in_bytes / p_bta_dm_pcm_cb->divisor)); in BTA_DmPcmResample()
661 … out_sample = (*p_bta_dm_pcm_cb->filter) (p_src, p_dst, (in_bytes / p_bta_dm_pcm_cb->divisor), in BTA_DmPcmResample()
665 … (in_bytes / p_bta_dm_pcm_cb->divisor), p_bta_dm_pcm_cb->src_sps); in BTA_DmPcmResample()
/hal_espressif-latest/components/bt/host/bluedroid/api/include/api/
Desp_hf_client_api.h739 int32_t esp_hf_client_pcm_resample(void *src, uint32_t in_bytes, void *dst);
/hal_espressif-latest/components/bt/host/bluedroid/api/
Desp_hf_client_api.c554 int32_t esp_hf_client_pcm_resample(void *src, uint32_t in_bytes, void *dst) in esp_hf_client_pcm_resample() argument
556 return BTA_DmPcmResample(src, in_bytes, dst); in esp_hf_client_pcm_resample()
/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/
Dbta_api.h2230 extern INT32 BTA_DmPcmResample (void *p_src, UINT32 in_bytes, void *p_dst);