Searched refs:buffer_offset (Results 1 – 4 of 4) sorted by relevance
/openthread-latest/third_party/mbedtls/repo/library/ |
D | psa_crypto_pake.c | 253 operation->buffer_offset = 0; in mbedtls_psa_pake_setup() 321 operation->buffer_offset = 0; in mbedtls_psa_pake_output_internal() 333 operation->buffer_offset = 0; in mbedtls_psa_pake_output_internal() 350 operation->buffer_offset += 3; in mbedtls_psa_pake_output_internal() 354 length = operation->buffer[operation->buffer_offset]; in mbedtls_psa_pake_output_internal() 355 operation->buffer_offset += 1; in mbedtls_psa_pake_output_internal() 357 if (operation->buffer_offset + length > operation->buffer_length) { in mbedtls_psa_pake_output_internal() 366 operation->buffer + operation->buffer_offset, in mbedtls_psa_pake_output_internal() 370 operation->buffer_offset += length; in mbedtls_psa_pake_output_internal() 377 operation->buffer_offset = 0; in mbedtls_psa_pake_output_internal() [all …]
|
/openthread-latest/third_party/tcplp/lib/ |
D | cbuf.h | 57 void cbuf_copy_into_buffer(void* buffer, size_t buffer_offset, const void* arr, size_t arr_offset, … 58 void cbuf_copy_from_buffer(void* arr, size_t arr_offset, const void* buffer, size_t buffer_offset, … 61 void cbuf_copy_into_message(void* buffer, size_t buffer_offset, const void* arr, size_t arr_offset,… 62 void cbuf_copy_from_message(void* arr, size_t arr_offset, const void* buffer, size_t buffer_offset,…
|
D | cbuf.c | 46 void cbuf_copy_into_buffer(void* buffer, size_t buffer_offset, const void* arr, size_t arr_offset, … in cbuf_copy_into_buffer() argument 49 memcpy(bufptr + buffer_offset, arrptr + arr_offset, num_bytes); in cbuf_copy_into_buffer() 52 void cbuf_copy_from_buffer(void* arr, size_t arr_offset, const void* buffer, size_t buffer_offset, … in cbuf_copy_from_buffer() argument 55 memcpy(arrptr + arr_offset, bufptr + buffer_offset, num_bytes); in cbuf_copy_from_buffer() 58 void cbuf_copy_into_message(void* buffer, size_t buffer_offset, const void* arr, size_t arr_offset,… in cbuf_copy_into_message() argument 61 otMessageWrite(message, (uint16_t) buffer_offset, arrptr + arr_offset, (uint16_t) num_bytes); in cbuf_copy_into_message() 64 void cbuf_copy_from_message(void* arr, size_t arr_offset, const void* buffer, size_t buffer_offset,… in cbuf_copy_from_message() argument 67 otMessageRead(message, (uint16_t) buffer_offset, arrptr + arr_offset, (uint16_t) num_bytes); in cbuf_copy_from_message()
|
/openthread-latest/third_party/mbedtls/repo/include/psa/ |
D | crypto_builtin_composites.h | 200 size_t MBEDTLS_PRIVATE(buffer_offset);
|