Searched refs:arrptr (Results 1 – 1 of 1) sorted by relevance
/openthread-latest/third_party/tcplp/lib/ |
D | cbuf.c | 48 const uint8_t* arrptr = (const uint8_t*) arr; in cbuf_copy_into_buffer() local 49 memcpy(bufptr + buffer_offset, arrptr + arr_offset, num_bytes); in cbuf_copy_into_buffer() 53 uint8_t* arrptr = (uint8_t*) arr; in cbuf_copy_from_buffer() local 55 memcpy(arrptr + arr_offset, bufptr + buffer_offset, num_bytes); in cbuf_copy_from_buffer() 60 uint8_t* arrptr = (uint8_t*) arr; in cbuf_copy_into_message() local 61 otMessageWrite(message, (uint16_t) buffer_offset, arrptr + arr_offset, (uint16_t) num_bytes); in cbuf_copy_into_message() 65 uint8_t* arrptr = (uint8_t*) arr; in cbuf_copy_from_message() local 67 otMessageRead(message, (uint16_t) buffer_offset, arrptr + arr_offset, (uint16_t) num_bytes); in cbuf_copy_from_message()
|