Home
last modified time | relevance | path

Searched full:end (Results 1 – 25 of 1475) sorted by relevance

12345678910>>...59

/Zephyr-latest/tests/benchmarks/app_kernel/src/
Dmsgq_b.c19 timing_t end; in message_queue_test() local
26 end = timing_timestamp_get(); in message_queue_test()
27 et = (uint32_t)timing_cycles_get(&start, &end); in message_queue_test()
35 end = timing_timestamp_get(); in message_queue_test()
36 et = (uint32_t)timing_cycles_get(&start, &end); in message_queue_test()
45 end = timing_timestamp_get(); in message_queue_test()
46 et = (uint32_t)timing_cycles_get(&start, &end); in message_queue_test()
55 end = timing_timestamp_get(); in message_queue_test()
56 et = (uint32_t)timing_cycles_get(&start, &end); in message_queue_test()
65 end = timing_timestamp_get(); in message_queue_test()
[all …]
Dsema_b.c19 timing_t end; in sema_test() local
26 end = timing_timestamp_get(); in sema_test()
27 et = (uint32_t)timing_cycles_get(&start, &end); in sema_test()
39 end = timing_timestamp_get(); in sema_test()
40 et = (uint32_t)timing_cycles_get(&start, &end); in sema_test()
49 end = timing_timestamp_get(); in sema_test()
50 et = (uint32_t)timing_cycles_get(&start, &end); in sema_test()
/Zephyr-latest/soc/intel/intel_adsp/ace/
Dmmu_ace30.c26 .end = (uint32_t)__common_ram_region_end,
33 .end = (uint32_t)VECBASE_RESET_PADDR_SRAM,
39 .end = (uint32_t)VECBASE_RESET_PADDR_SRAM + VECTOR_TBL_SIZE,
45 .end = (uint32_t)_cached_end,
51 .end = (uint32_t)HP_SRAM_WIN0_BASE + (uint32_t)HP_SRAM_WIN0_SIZE,
57 .end = (uint32_t)HP_SRAM_WIN1_BASE + (uint32_t)HP_SRAM_WIN1_SIZE,
63 .end = (uint32_t)HP_SRAM_WIN2_BASE + (uint32_t)HP_SRAM_WIN2_SIZE,
69 .end = (uint32_t)HP_SRAM_WIN3_BASE + (uint32_t)HP_SRAM_WIN3_SIZE,
76 .end = (uint32_t)IMR_BOOT_LDR_MANIFEST_BASE,
82 .end = (uint32_t)(IMR_BOOT_LDR_MANIFEST_BASE + IMR_BOOT_LDR_MANIFEST_SIZE),
[all …]
/Zephyr-latest/doc/connectivity/usb/pd/
Ducds.rst42 :end-before: usbc.rst usbc-port end
51 :end-before: usbc.rst vbus-voltage-divider-adc end
61 :end-before: usbc.rst port data object end
69 :end-before: usbc.rst callbacks end
77 :end-before: usbc.rst check end
85 :end-before: usbc.rst notify end
93 :end-before: usbc.rst register end
101 :end-before: usbc.rst user data end
109 :end-before: usbc.rst usbc end
132 :end-before: usbc.rst usbc-port end
[all …]
/Zephyr-latest/doc/_doxygen/
Dheader.html9 <!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME-->
10 <!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME-->
13 <!--END PROJECT_ICON-->
18 <!--END FULL_SIDEBAR-->
19 <!--END DISABLE_INDEX-->
24 <!--END COPY_CLIPBOARD-->
41 <!--END FULL_SIDEBAR-->
42 <!--END DISABLE_INDEX-->
53 <!--END PROJECT_LOGO-->
56 …EGIN PROJECT_NUMBER--><span id="projectnumber">&#160;$projectnumber</span><!--END PROJECT_NUMBER-->
[all …]
/Zephyr-latest/tests/benchmarks/sys_kernel/
DREADME.txt26 END TEST CASE
37 END TEST CASE
49 END TEST CASE
59 END TEST CASE
71 END TEST CASE
83 END TEST CASE
93 END TEST CASE
105 END TEST CASE
117 END TEST CASE
127 END TEST CASE
[all …]
/Zephyr-latest/tests/subsys/display/cfb/basic/src/
Ddraw_rect.c53 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST() local
55 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
64 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST() local
66 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
76 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST() local
78 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
87 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST() local
89 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
98 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST() local
100 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
[all …]
Ddraw_line.c50 struct cfb_position end = {display_width, 0}; in ZTEST() local
52 zassert_ok(cfb_draw_line(dev, &start, &end)); in ZTEST()
61 struct cfb_position end = {0, display_height}; in ZTEST() local
63 zassert_ok(cfb_draw_line(dev, &start, &end)); in ZTEST()
72 struct cfb_position end = {display_width - 1, display_height}; in ZTEST() local
74 zassert_ok(cfb_draw_line(dev, &start, &end)); in ZTEST()
83 struct cfb_position end = {display_width, 239}; in ZTEST() local
85 zassert_ok(cfb_draw_line(dev, &start, &end)); in ZTEST()
94 struct cfb_position end = {display_width, 0}; in ZTEST() local
96 zassert_ok(cfb_draw_line(dev, &start, &end)); in ZTEST()
[all …]
/Zephyr-latest/lib/utils/
Dwinstream.c44 uint32_t start = ws->start, end = ws->end, seq = ws->seq; in sys_winstream_write() local
47 * (Max bytes buffered is actually len-1 because start==end is in sys_winstream_write()
51 start = end; in sys_winstream_write()
60 uint32_t avail = (ws->len - 1) - idx_sub(ws, end, start); in sys_winstream_write()
70 ws->start = end; in sys_winstream_write()
74 suffix = MIN(len, ws->len - end); in sys_winstream_write()
75 MEMCPY(&ws->data[end], data, suffix); in sys_winstream_write()
80 ws->end = idx_mod(ws, end + len); in sys_winstream_write()
88 uint32_t seq0 = *seq, start, end, wseq, len, behind, copy, suffix; in sys_winstream_read() local
91 start = ws->start; end = ws->end; wseq = ws->seq; in sys_winstream_read()
[all …]
/Zephyr-latest/doc/_static/latex/
Dtitle.tex21 \end{minipage}
25 \end{minipage}
30 \end{minipage}
37 \end{minipage}
40 \end{minipage}
41 \end{flushright}
/Zephyr-latest/scripts/west_commands/completion/
Dwest-completion.fish12 end
13 end
26 end
27 end
28 end
31 end
51 end
52 end
57 end
58 end
[all …]
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/
Dradio_nrf5_resources.h17 /* Wrapper for EVENTS_END event generated by Radio peripheral at the very end of the transmission
24 * This is a default shortcut used to automatically disable Radio after end of PDU.
51 * DPPI is disabled in time when the timer is cleared on radio end, so that
52 * the timer compare should not trigger TXEN/RXEN immediately on radio end.
60 /* Wrapper for EVENTS_END event generated by Radio peripheral at the very end of the transmission
67 * This is a default shortcut used to automatically disable Radio after end of PDU.
89 /* Wrapper for EVENTS_END event generated by Radio peripheral at the very end of the transmission
96 * This is a default shortcut used to automatically disable Radio after end of PDU.
138 * at the same instant as END event. Hence the channels are used interchangeably.
144 /* Wrapper for EVENTS_END event generated by Radio peripheral at the very end of the transmission
[all …]
/Zephyr-latest/dts/bindings/adc/
Dnxp,s32-adc-sar.yaml37 default: "normal-end-conversion"
39 - "normal-end-conversion"
40 - "normal-end-chain"
42 Select normal end conversion callback to reduce interrupt handling time.
43 Select normal end chain callback to reduce the number of interrupt occurrences.
/Zephyr-latest/samples/net/sockets/coap_client/src/
Dcoap-client.c103 goto end; in process_simple_coap_reply()
113 goto end; in process_simple_coap_reply()
123 end: in process_simple_coap_reply()
148 goto end; in send_simple_coap_request()
156 goto end; in send_simple_coap_request()
170 goto end; in send_simple_coap_request()
177 goto end; in send_simple_coap_request()
183 goto end; in send_simple_coap_request()
190 end: in send_simple_coap_request()
272 goto end; in process_large_coap_reply()
[all …]
/Zephyr-latest/scripts/release/
Dlist_devicetree_bindings_changes.py42 binding between the start and end commits. See subclasses
52 start and end commits.'''
63 end: List[str]
68 end: List[str]
82 end: str
88 end: Any
94 end: Any
100 end: Any
106 end: bool
112 end: bool
[all …]
/Zephyr-latest/subsys/settings/
DKconfig19 bool "runtime storage back-end"
21 Enables runtime storage back-end.
34 prompt "Storage back-end"
40 Storage back-end to be used by the settings subsystem.
46 Use FCB as a settings storage back-end.
53 Use a file (on mounted file system) as a settings storage back-end.
83 Use a custom settings storage back-end.
88 No storage back-end.
/Zephyr-latest/tests/arch/x86/info/src/
Dtimer.c61 uint32_t start, end; in timer() local
64 end = sync(cmos); in timer()
65 sum += end - start; in timer()
67 printk("\tstart = %u, end = %u, %u cycles\n", in timer()
68 start, end, end - start); in timer()
/Zephyr-latest/drivers/console/
Duart_console.c171 static void insert_char(char *pos, char c, uint8_t end) in insert_char() argument
178 if (end == 0U) { in insert_char()
188 while (end-- > 0) { in insert_char()
199 static void del_char(char *pos, uint8_t end) in del_char() argument
203 if (end == 0U) { in del_char()
211 while (end-- > 0) { in del_char()
238 static uint8_t cur, end; variable
283 end += ansi_val; in handle_ansi()
288 if (ansi_val > end) { in handle_ansi()
292 end -= ansi_val; in handle_ansi()
[all …]
/Zephyr-latest/subsys/net/lib/mqtt/
Dmqtt_decoder.c33 uint8_t *end = buf->end; in unpack_uint8() local
35 NET_DBG(">> cur:%p, end:%p", (void *)cur, (void *)end); in unpack_uint8()
37 if ((end - cur) < sizeof(uint8_t)) { in unpack_uint8()
63 uint8_t *end = buf->end; in unpack_uint16() local
65 NET_DBG(">> cur:%p, end:%p", (void *)cur, (void *)end); in unpack_uint16()
67 if ((end - cur) < sizeof(uint16_t)) { in unpack_uint16()
95 NET_DBG(">> cur:%p, end:%p", (void *)buf->cur, (void *)buf->end); in unpack_utf8_str()
102 if ((buf->end - buf->cur) < utf8_strlen) { in unpack_utf8_str()
136 NET_DBG(">> cur:%p, end:%p", (void *)buf->cur, (void *)buf->end); in unpack_data()
138 if ((buf->end - buf->cur) < length) { in unpack_data()
[all …]
Dmqtt_encoder.c49 uint8_t *end = buf->end; in pack_uint8() local
51 if ((end - cur) < sizeof(uint8_t)) { in pack_uint8()
55 NET_DBG(">> val:%02x cur:%p, end:%p", val, (void *)cur, (void *)end); in pack_uint8()
77 uint8_t *end = buf->end; in pack_uint16() local
79 if ((end - cur) < sizeof(uint16_t)) { in pack_uint16()
83 NET_DBG(">> val:%04x cur:%p, end:%p", val, (void *)cur, (void *)end); in pack_uint16()
104 if ((buf->end - buf->cur) < GET_UT8STR_BUFFER_SIZE(str)) { in pack_utf8_str()
108 NET_DBG(">> str_size:%08x cur:%p, end:%p", in pack_utf8_str()
109 (uint32_t)GET_UT8STR_BUFFER_SIZE(str), (void *)buf->cur, (void *)buf->end); in pack_utf8_str()
149 NET_DBG(">> length:0x%08x cur:%p, end:%p", length, in packet_length_encode()
[all …]
/Zephyr-latest/subsys/mgmt/mcumgr/grp/os_mgmt_client/src/
Dos_mgmt_client.c66 goto end; in os_mgmt_client_reset()
74 goto end; in os_mgmt_client_reset()
76 /* Wait for process end update event */ in os_mgmt_client_reset()
78 end: in os_mgmt_client_reset()
103 goto end; in echo_res_fn()
113 goto end; in echo_res_fn()
116 end: in echo_res_fn()
135 goto end; in os_mgmt_client_echo()
148 goto end; in os_mgmt_client_echo()
164 end: in os_mgmt_client_echo()
/Zephyr-latest/samples/boards/nxp/adsp/number_crunching/
DREADME.rst75 [Library Test] == Vector Sum test end with 1 ==
80 [Library Test] == Vector power sum test end with 1 ==
85 [Library Test] == Vector power sum test end ==
90 [Library Test] == Fast Fourier Transform on Real Data test end ==
95 [Library Test] == Bi-quad Real Block IIR end ==
100 [Library Test] == Least Mean Square (LMS) Filter for Real Data test end ==
113 [Library Test] == Vector Sum test end with 1 ==
118 [Library Test] == Vector power sum test end with 1 ==
123 [Library Test] == Vector power sum test end ==
128 [Library Test] == Fast Fourier Transform on Real Data test end ==
[all …]
/Zephyr-latest/include/zephyr/timing/
Dtiming.h61 * @brief Signal the end of the timing information gathering.
87 * @brief Get number of cycles between @p start and @p end.
95 * @param end Pointer to counter at stop of a measured execution.
96 * @return Number of cycles between start and end.
101 volatile timing_t *const end);
177 * @brief Signal the end of the timing information gathering.
203 * @brief Get number of cycles between @p start and @p end.
211 * @param end Pointer to counter at stop of a measured execution.
212 * @return Number of cycles between start and end.
217 volatile timing_t *const end);
[all …]
/Zephyr-latest/lib/libc/minimal/source/stdlib/
Dqsort.c52 static void sift_down(void *base, int start, int end, size_t size, struct qsort_comp *cmp) in sift_down() argument
58 for (swap = start, root = swap; left(root) < end; root = swap) { in sift_down()
67 if (right(root) < end && compare(cmp, A(swap), A(right(root))) < 0) { in sift_down()
90 int end; in heap_sort() local
94 for (end = nmemb - 1; end > 0; --end) { in heap_sort()
95 byteswp(A(end), A(0), size); in heap_sort()
96 sift_down(base, 0, end, size, cmp); in heap_sort()
/Zephyr-latest/soc/altr/zephyr_nios2f/cpu/
Dghrd_10m50da.qsys304 dir="end" />
309 dir="end" />
310 <interface name="clk" internal="clk_0.clk_in" type="clock" dir="end" />
315 dir="end" />
320 dir="end" />
325 dir="end" />
326 <interface name="reset" internal="clk_0.clk_in_reset" type="reset" dir="end" />
331 dir="end" />
585 …"><![CDATA[<address-map><slave name='onchip_memory2_0.s1' start='0x400000' end='0x420000' /></addr…
587 …"><![CDATA[<address-map><slave name='onchip_memory2_0.s1' start='0x400000' end='0x420000' /></addr…
[all …]

12345678910>>...59