/Zephyr-Core-2.7.6/tests/subsys/fs/littlefs/src/ |
D | test_lfs_perf.c | 32 size_t total = nbuf * buf_size; in write_read() local 109 if (stat.size != total) { in write_read() 110 TC_PRINT("File size %zu not %zu\n", stat.size, total); in write_read() 116 tag, nbuf, buf_size, total, (t1 - t0), in write_read() 117 (uint32_t)(total * 1000U / (t1 - t0)), in write_read() 118 (uint32_t)(total * 1000U / (t1 - t0) / 1024U)); in write_read() 142 tag, nbuf, buf_size, total, (t1 - t0), in write_read() 143 (uint32_t)(total * 1000U / (t1 - t0)), in write_read() 144 (uint32_t)(total * 1000U / (t1 - t0) / 1024U)); in write_read()
|
/Zephyr-Core-2.7.6/lib/os/ |
D | heap-validate.c | 318 size_t free_bytes, allocated_bytes, total, overhead; in heap_print_info() local 377 total = h->end_chunk * CHUNK_UNIT + chunk_header_bytes(h); in heap_print_info() 378 overhead = total - free_bytes - allocated_bytes; in heap_print_info() 381 (1000 * overhead + total/2) / total / 10, in heap_print_info() 382 (1000 * overhead + total/2) / total % 10); in heap_print_info()
|
D | json.c | 490 ptrdiff_t total = 0; in get_elem_size() local 496 total += ROUND_UP(s, 1 << descr->align_shift); in get_elem_size() 499 return total; in get_elem_size() 925 ssize_t *total = data; in measure_bytes() local 927 *total += (ssize_t)len; in measure_bytes() 937 ssize_t total = 0; in json_calc_encoded_len() local 940 ret = json_obj_encode(descr, descr_len, val, measure_bytes, &total); in json_calc_encoded_len() 945 return total; in json_calc_encoded_len()
|
/Zephyr-Core-2.7.6/drivers/modem/ |
D | modem_socket.c | 25 uint16_t total = 0U; in modem_socket_next_packet_size() local 33 total = sock->packet_sizes[0]; in modem_socket_next_packet_size() 37 return total; in modem_socket_next_packet_size() 43 uint16_t total = 0U; in modem_socket_packet_get_total() local 50 total += sock->packet_sizes[i]; in modem_socket_packet_get_total() 53 return total; in modem_socket_packet_get_total()
|
/Zephyr-Core-2.7.6/subsys/net/lib/lwm2m/ |
D | Kconfig.ipso | 24 This setting establishes the total count of IPSO Temperature 53 This setting establishes the total count of IPSO Generic 93 This setting establishes the total count of IPSO Humidity 124 This setting establishes the total count of IPSO Pressure 157 This setting establishes the total count of IPSO Light Control 170 This setting establishes the total count of IPSO Accelerometer 199 This setting establishes the total count of IPSO Buzzer 227 This setting establishes the total count of IPSO Timer 240 This setting establishes the total count of IPSO On/Off Switch 270 This setting establishes the total count of IPSO Push Button
|
/Zephyr-Core-2.7.6/modules/canopennode/ |
D | canopen_program.c | 48 size_t total; member 107 ctx.total = odf_arg->dataLengthTotal; in canopen_odf_1f50() 108 LOG_DBG("total = %d", ctx.total); in canopen_odf_1f50() 124 if (ctx.total != 0 && in canopen_odf_1f50() 125 ctx.total != flash_img_bytes_written(&ctx.flash_img_ctx)) { in canopen_odf_1f50()
|
/Zephyr-Core-2.7.6/soc/arm/atmel_sam/sam3x/ |
D | Kconfig.defconfig.series | 21 # SAM3 family has total 45 peripherals capable of
|
/Zephyr-Core-2.7.6/soc/arm/atmel_sam/sam4e/ |
D | Kconfig.defconfig.series | 20 # SAM4E family has total 47 peripherals capable of
|
/Zephyr-Core-2.7.6/soc/arm/atmel_sam/sam4s/ |
D | Kconfig.defconfig.series | 25 # SAM4S family has total 35 peripherals capable of
|
/Zephyr-Core-2.7.6/soc/arm/atmel_sam/sam4l/ |
D | Kconfig.defconfig.series | 30 # SAM4L family has total 43 peripherals capable of
|
/Zephyr-Core-2.7.6/include/linker/ |
D | intlist.ld | 18 * defined, the total number of IRQ lines in the system, followed by
|
/Zephyr-Core-2.7.6/boards/arm/lpcxpresso55s28/ |
D | lpcxpresso55s28.dts | 87 * The total number of dma channels available is defined by
|
/Zephyr-Core-2.7.6/samples/subsys/canbus/isotp/ |
D | README.rst | 44 Got 248 bytes in total
|
/Zephyr-Core-2.7.6/boards/arm/lpcxpresso55s69/ |
D | lpcxpresso55s69_ns.dts | 96 * The total number of dma channels available is defined by
|
/Zephyr-Core-2.7.6/samples/net/virtual/ |
D | README.rst | 11 There are total 4 network interfaces.
|
/Zephyr-Core-2.7.6/samples/arch/smp/pi/ |
D | README.rst | 24 This project outputs Pi values calculated by each thread and in the end total time
|
/Zephyr-Core-2.7.6/boards/sparc/generic_leon3/doc/ |
D | index.rst | 101 icache: 1 * 4 KiB, 16 bytes/line (4 KiB total) 102 dcache: 1 * 4 KiB, 16 bytes/line (4 KiB total)
|
/Zephyr-Core-2.7.6/subsys/logging/ |
D | log_output.c | 258 int total = 0; in ids_print() local 261 total += print_formatted(output, "<%s> ", severity[level]); in ids_print() 265 total += print_formatted(output, in ids_print() 272 return total; in ids_print()
|
/Zephyr-Core-2.7.6/scripts/ |
D | gen_syscalls.py | 226 def mrsh_rval(mrsh_num, total): argument 227 if mrsh_num < 5 or total <= 6:
|
/Zephyr-Core-2.7.6/samples/net/sockets/big_http_download/ |
D | README.rst | 13 also performs download repeatedly, tracking the total number of bytes 49 infinite loop), while the total counter of the bytes received is kept.
|
/Zephyr-Core-2.7.6/doc/guides/networking/ |
D | net_pkt_processing_stats.rst | 66 * In total it took on average **60** microseconds to get the network packet 82 * In total it took on average **39** microseconds to get the network packet
|
/Zephyr-Core-2.7.6/subsys/bluetooth/host/ |
D | sdp.c | 1595 struct net_buf *buf, uint16_t *total) in sdp_client_get_total() argument 1612 *total = net_buf_pull_u8(buf); in sdp_client_get_total() 1616 *total = net_buf_pull_be16(buf); in sdp_client_get_total() 1621 *total = 0U; in sdp_client_get_total() 1625 BT_DBG("Total %u octets of all attributes", *total); in sdp_client_get_total() 1628 *total = 0U; in sdp_client_get_total() 1724 uint16_t total; in sdp_client_receive() local 1800 frame_len -= sdp_client_get_total(session, buf, &total); in sdp_client_receive() 1802 if (total > net_buf_tailroom(session->rec_buf)) { in sdp_client_receive()
|
/Zephyr-Core-2.7.6/soc/arm/atmel_sam/same70/ |
D | Kconfig.defconfig.series | 32 # SAM E70 family has in total 71 peripherals capable of generating interrupts
|
/Zephyr-Core-2.7.6/soc/arm/atmel_sam/samv71/ |
D | Kconfig.defconfig.series | 33 # SAM V71 family has in total 71 peripherals capable of generating interrupts
|
/Zephyr-Core-2.7.6/doc/reference/timing_functions/ |
D | index.rst | 38 6. Call :c:func:`timing_cycles_to_ns` with total number of cycles
|