Searched refs:arr_offset (Results 1 – 2 of 2) sorted by relevance
/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()
|