Home
last modified time | relevance | path

Searched refs:buffer_end (Results 1 – 9 of 9) sorted by relevance

/Zephyr-latest/kernel/
Dmsg_q.c45 msgq->buffer_end = buffer + (max_msgs * msg_size); in k_msgq_init()
153 msgq->write_ptr < msgq->buffer_end); in z_impl_k_msgq_put()
156 if (msgq->write_ptr == msgq->buffer_end) { in z_impl_k_msgq_put()
232 if (msgq->read_ptr == msgq->buffer_end) { in z_impl_k_msgq_get()
244 msgq->write_ptr < msgq->buffer_end); in z_impl_k_msgq_get()
248 if (msgq->write_ptr == msgq->buffer_end) { in z_impl_k_msgq_get()
341 bytes_to_end = (msgq->buffer_end - msgq->read_ptr); in z_impl_k_msgq_peek_at()
/Zephyr-latest/drivers/sensor/adi/adxl345/
Dadxl345_decoder.c92 const uint8_t *buffer_end = in adxl345_decode_stream() local
97 if ((uintptr_t)buffer_end <= *fit || chan_spec.chan_idx != 0) { in adxl345_decode_stream()
119 while (count < max_count && buffer < buffer_end) { in adxl345_decode_stream()
/Zephyr-latest/drivers/sensor/adi/adxl372/
Dadxl372_decoder.c39 const uint8_t *buffer_end = in adxl372_decode_stream() local
44 if ((uintptr_t)buffer_end <= *fit || chan_spec.chan_idx != 0) { in adxl372_decode_stream()
65 while (count < max_count && buffer < buffer_end) { in adxl372_decode_stream()
/Zephyr-latest/drivers/sensor/adi/adxl362/
Dadxl362_decoder.c71 const uint8_t *buffer_end = in adxl362_decode_stream() local
77 if ((uintptr_t)buffer_end <= *fit || chan_spec.chan_idx != 0) { in adxl362_decode_stream()
96 while (count < max_count && buffer < buffer_end) { in adxl362_decode_stream()
/Zephyr-latest/drivers/sensor/st/lsm6dsv16x/
Dlsm6dsv16x_decoder.c172 const uint8_t *buffer_end; in lsm6dsv16x_decoder_get_frame_count() local
182 buffer_end = buffer + LSM6DSV16X_FIFO_SIZE(edata->fifo_count); in lsm6dsv16x_decoder_get_frame_count()
185 while (buffer < buffer_end) { in lsm6dsv16x_decoder_get_frame_count()
259 const uint8_t *buffer_end; in lsm6dsv16x_decode_fifo() local
279 buffer_end = buffer + LSM6DSV16X_FIFO_SIZE(edata->fifo_count); in lsm6dsv16x_decode_fifo()
308 while (count < max_count && buffer < buffer_end) { in lsm6dsv16x_decode_fifo()
/Zephyr-latest/drivers/sensor/adi/adxl367/
Dadxl367_decoder.c424 const uint8_t *buffer_end = in adxl367_decode_12b_stream() local
432 while (count < max_count && buffer < buffer_end) { in adxl367_decode_12b_stream()
507 const uint8_t *buffer_end = in adxl367_decode_stream() local
512 if ((uintptr_t)buffer_end <= *fit || chan_spec.chan_idx != 0) { in adxl367_decode_stream()
535 while (count < max_count && buffer < buffer_end) { in adxl367_decode_stream()
/Zephyr-latest/drivers/sensor/tdk/icm42688/
Dicm42688_decoder.c352 const uint8_t *buffer_end = buffer + sizeof(struct icm42688_fifo_data) + edata->fifo_count; in icm42688_fifo_decode() local
358 if ((uintptr_t)buffer_end <= *fit || chan_spec.chan_idx != 0) { in icm42688_fifo_decode()
365 while (count < max_count && buffer < buffer_end) { in icm42688_fifo_decode()
/Zephyr-latest/subsys/ipc/ipc_service/backends/
Dipc_icbmsg.c611 const char *buffer_end = (const char *)rx_conf->blocks_ptr + in find_ept_by_name() local
621 name_size = strnlen(name, buffer_end - name - 1) + 1; in find_ept_by_name()
/Zephyr-latest/include/zephyr/
Dkernel.h4563 char *buffer_end; member
4593 .buffer_end = q_buffer + (q_max_msgs * q_msg_size), \