Home
last modified time | relevance | path

Searched full:total (Results 1 – 25 of 528) sorted by relevance

12345678910>>...22

/Zephyr-latest/lib/heap/
Dheap_info.c17 size_t free_bytes, allocated_bytes, total, overhead; in heap_print_info() local
22 printk(" bucket# min units total largest largest\n" in heap_print_info()
65 total = h->end_chunk * CHUNK_UNIT + chunk_header_bytes(h); in heap_print_info()
66 overhead = total - free_bytes - allocated_bytes; in heap_print_info()
69 (1000 * overhead + total / 2) / total / 10, in heap_print_info()
70 (1000 * overhead + total / 2) / total % 10); in heap_print_info()
/Zephyr-latest/subsys/net/lib/lwm2m/
DKconfig.ipso24 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
[all …]
/Zephyr-latest/dts/bindings/gpio/
Dxlnx,ps-gpio.yaml15 It is organized in banks, where the number of banks and total number
20 * Bank 1: MIO pins [53:32] (total: 54 MIO pins)
22 * Bank 3: EMIO pins [63:32] (total: 64 EMIO pins)
27 * Bank 2: MIO pins [77:52] (total: 78 MIO pins, 26 per bank)
30 * Bank 5: EMIO pins [95:64] (total: 96 EMIO pins)
/Zephyr-latest/tests/benchmarks/thread_metric/
DKconfig13 These tests measure the total number of RTOS events that can be
28 on each context switch. The sum total of the counters is reported
40 takes that semaphore. The sum total of the counters is reported
51 of a thread. The total number of context switches is reported every
73 cyclical pattern. The total number of context switches is reported
/Zephyr-latest/samples/bluetooth/iso_connected_benchmark/
DREADME.rst76 …[00:00:17.774,902] <inf> iso_connected: Overall : Received 100/100 (100.00%) - Total packets l…
77 …[00:00:17.774,932] <inf> iso_connected: Current Conn: Received 100/100 (100.00%) - Total packets l…
78 …[00:00:17.774,963] <inf> iso_connected: Latest 1000 : Received 100/100 (100.00%) - Total packets l…
81 …[00:00:18.532,409] <inf> iso_connected: Overall : Received 200/200 (100.00%) - Total packets l…
82 …[00:00:18.532,470] <inf> iso_connected: Current Conn: Received 200/200 (100.00%) - Total packets l…
83 …[00:00:18.532,501] <inf> iso_connected: Latest 1000 : Received 200/200 (100.00%) - Total packets l…
111 …[00:00:05.072,052] <inf> iso_connected: Overall : Received 100/100 (100.00%) - Total packets l…
112 …[00:00:05.072,113] <inf> iso_connected: Current Conn: Received 100/100 (100.00%) - Total packets l…
113 …[00:00:05.072,143] <inf> iso_connected: Latest 1000 : Received 100/100 (100.00%) - Total packets l…
116 …[00:00:05.829,589] <inf> iso_connected: Overall : Received 200/200 (100.00%) - Total packets l…
[all …]
/Zephyr-latest/tests/subsys/zbus/integration/src/
Dmain.c45 struct net_pkt_msg pkt = {.total = data.a + data.b}; in core_thread()
47 LOG_DBG("Sensor {a = %d, b = %d}. Sending pkt {total=%d}", data.a, data.b, in core_thread()
48 pkt.total); in core_thread()
71 LOG_DBG("[Net] Total %d", pkt.total); in net_thread()
74 .pkt_total = pkt.total}; in net_thread()
96 LOG_DBG("[Net log]: count_net = %d, pkt.total = %d", log_msg.count_net, in net_log_thread()
147 pkt.total = 0; in context_reset()
152 p->total = 0; in context_reset()
214 zassert_equal(pkt.total, 6, "result was %d", pkt.total); in ZTEST()
215 zassert_equal(pkt.total, lm->pkt_total, NULL); in ZTEST()
[all …]
/Zephyr-latest/kernel/include/
Dkernel_tls.h20 * @brief Return the total size of TLS data/bss areas
22 * This returns the total size of thread local storage (TLS)
27 * @return Total size of TLS data/bss areas
/Zephyr-latest/drivers/interrupt_controller/
DKconfig.multilevel23 int "Total number of first level interrupt bits"
54 int "Total number of second level interrupt aggregators"
64 int "Total number of second level interrupt bits"
99 int "Total number of third level interrupt aggregators"
118 int "Total number of third level interrupt bits"
/Zephyr-latest/samples/subsys/canbus/isotp/
Dsample.yaml16 - "(.*)Got 247 bytes in total"
32 - "(.*)Got 247 bytes in total"
/Zephyr-latest/tests/subsys/fs/littlefs/src/
Dtest_lfs_perf.c32 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-latest/dts/bindings/mtd/
Dfujitsu,mb85rcxx.yaml13 description: Total FRAM size in bytes.
19 If not provided it is assumed to be the same as total size.
/Zephyr-latest/tests/benchmarks/thread_metric/src/
Dtm_cooperative_scheduling_test.c190 unsigned long total; in tm_cooperative_thread_report() local
195 /* Initialize the last total. */ in tm_cooperative_thread_report()
213 /* Calculate the total of all the counters. */ in tm_cooperative_thread_report()
214 total = tm_cooperative_thread_0_counter + tm_cooperative_thread_1_counter + in tm_cooperative_thread_report()
219 average = total / 5; in tm_cooperative_thread_report()
244 /* Show the time period total. */ in tm_cooperative_thread_report()
245 printf("Time Period Total: %lu\n\n", total - last_total); in tm_cooperative_thread_report()
247 /* Save the last total. */ in tm_cooperative_thread_report()
248 last_total = total; in tm_cooperative_thread_report()
Dtm_preemptive_scheduling_test.c222 unsigned long total; in tm_preemptive_thread_report() local
227 /* Initialize the last total. */ in tm_preemptive_thread_report()
245 /* Calculate the total of all the counters. */ in tm_preemptive_thread_report()
246 total = tm_preemptive_thread_0_counter + tm_preemptive_thread_1_counter + in tm_preemptive_thread_report()
251 average = total / 5; in tm_preemptive_thread_report()
275 /* Show the time period total. */ in tm_preemptive_thread_report()
276 printf("Time Period Total: %lu\n\n", total - last_total); in tm_preemptive_thread_report()
278 /* Save the last total. */ in tm_preemptive_thread_report()
279 last_total = total; in tm_preemptive_thread_report()
Dtm_interrupt_processing_test.c157 unsigned long total; in tm_interrupt_thread_report() local
162 /* Initialize the last total. */ in tm_interrupt_thread_report()
180 /* Calculate the total of all the counters. */ in tm_interrupt_thread_report()
181 total = tm_interrupt_thread_0_counter + tm_interrupt_handler_counter; in tm_interrupt_thread_report()
184 average = total / 2; in tm_interrupt_thread_report()
196 /* Show the total interrupts for the time period. */ in tm_interrupt_thread_report()
197 printf("Time Period Total: %lu\n\n", tm_interrupt_handler_counter - last_total); in tm_interrupt_thread_report()
199 /* Save the last total number of interrupts. */ in tm_interrupt_thread_report()
Dtm_interrupt_preemption_processing_test.c167 unsigned long total; in tm_interrupt_preemption_thread_report() local
172 /* Initialize the last total. */ in tm_interrupt_preemption_thread_report()
191 /* Calculate the total of all the counters. */ in tm_interrupt_preemption_thread_report()
192 total = tm_interrupt_preemption_thread_0_counter + in tm_interrupt_preemption_thread_report()
197 average = total / 3; in tm_interrupt_preemption_thread_report()
211 /* Show the total interrupts for the time period. */ in tm_interrupt_preemption_thread_report()
212 printf("Time Period Total: %lu\n\n", in tm_interrupt_preemption_thread_report()
215 /* Save the last total number of interrupts. */ in tm_interrupt_preemption_thread_report()
/Zephyr-latest/samples/subsys/zbus/benchmark/
Dbenchmark_256KB.robot44 ${total} Set Variable 0
54 ${total} Evaluate ${total}+${val}
56 ${duration} Evaluate ${total}/3.0
/Zephyr-latest/include/zephyr/kernel/
Dstats.h19 uint64_t total; /**< total usage in cycles */ member
/Zephyr-latest/samples/tfm_integration/tfm_psa_test/
DREADME.rst111 TOTAL TESTS : 17
112 TOTAL PASSED : 11
113 TOTAL SIM ERROR : 0
114 TOTAL FAILED : 0
115 TOTAL SKIPPED : 6
/Zephyr-latest/tests/arch/arm64/arm64_mmu/src/
Dmain.c34 TC_PRINT(" Total page tables: %d\n", CONFIG_MAX_XLAT_TABLES); in arm64_mmu_test_init()
36 TC_PRINT(" Initial total table usage: %#x\n", initial_tables_usage); in arm64_mmu_test_init()
59 TC_PRINT(" current total table usage: %#x\n", mapped_tables_usage); in mem_map_test()
73 TC_PRINT(" current total table usage: %#x\n", unmapped_tables_usage); in mem_map_test()
172 TC_PRINT(" current total table usage: %#x\n", mapped_tables_usage); in ZTEST()
190 TC_PRINT(" current total table usage: %#x\n", split_tables_usage); in ZTEST()
213 TC_PRINT(" current total table usage: %#x\n", unmapped_tables_usage); in ZTEST()
/Zephyr-latest/subsys/bluetooth/audio/
DKconfig.mpl86 int "Total memory size to use for storing the content of objects"
90 Sets the total memory size (in octets) to use for storing the content of objects.
91 This is used for the total memory pool buffer size from which memory
/Zephyr-latest/tests/subsys/sensing/src/
Dmain.c36 int total = 0; in get_total_sensor_counts() local
39 total += sensors[i].sensor_type_count; in get_total_sensor_counts()
41 return total; in get_total_sensor_counts()
/Zephyr-latest/samples/bluetooth/iso_broadcast_benchmark/
DREADME.rst82 …[00:00:11.639,343] <inf> iso_broadcast_receiver: Overall : Received 99/100 (99.00%) - Total pa…
83 …[00:00:11.639,343] <inf> iso_broadcast_receiver: Current Sync: Received 99/100 (99.00%) - Total pa…
84 …[00:00:11.639,373] <inf> iso_broadcast_receiver: Latest 1000 : Received 99/100 (99.00%) - Total pa…
85 …[00:00:12.029,388] <inf> iso_broadcast_receiver: Overall : Received 199/200 (99.50%) - Total p…
86 …[00:00:12.029,388] <inf> iso_broadcast_receiver: Current Sync: Received 199/200 (99.50%) - Total p…
87 …[00:00:12.029,388] <inf> iso_broadcast_receiver: Latest 1000 : Received 199/200 (99.50%) - Total p…
/Zephyr-latest/include/zephyr/sip_svc/
Dsip_svc_controller.h44 /* Total Number of on-going transaction of the client */
60 /* Total number of clients*/
66 /* Total Number of active transactions */
/Zephyr-latest/soc/native/inf_clock/
DKconfig21 int "Total number of MCUs this target has"
26 How many AMP MCUs does this target have in total.
/Zephyr-latest/drivers/can/
DKconfig.stm3228 The following equation determines the maximum total number of
44 The following equation determines the maximum total number of

12345678910>>...22