Home
last modified time | relevance | path

Searched full:start (Results 1 – 25 of 2535) sorted by relevance

12345678910>>...102

/Zephyr-latest/tests/subsys/display/cfb/basic/src/
Ddraw_rect.c52 struct cfb_position start = {0, 0}; in ZTEST() local
53 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST()
55 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
63 struct cfb_position start = {1, 1}; in ZTEST() local
64 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST()
66 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
75 struct cfb_position start = {9, 15}; in ZTEST() local
76 struct cfb_position end = {start.x + 10, start.y + 22}; in ZTEST()
78 zassert_ok(cfb_draw_rect(dev, &start, &end), ""); in ZTEST()
86 struct cfb_position start = {10, 16}; in ZTEST() local
[all …]
Ddraw_line.c49 struct cfb_position start = {0, 0}; in ZTEST() local
52 zassert_ok(cfb_draw_line(dev, &start, &end)); in ZTEST()
60 struct cfb_position start = {0, 0}; in ZTEST() local
63 zassert_ok(cfb_draw_line(dev, &start, &end)); in ZTEST()
71 struct cfb_position start = {display_width - 1, 0}; in ZTEST() local
74 zassert_ok(cfb_draw_line(dev, &start, &end)); in ZTEST()
82 struct cfb_position start = {0, 239}; in ZTEST() local
85 zassert_ok(cfb_draw_line(dev, &start, &end)); in ZTEST()
93 struct cfb_position start = {0, 0}; in ZTEST() local
96 zassert_ok(cfb_draw_line(dev, &start, &end)); in ZTEST()
[all …]
/Zephyr-latest/tests/benchmarks/app_kernel/src/
Dmsgq_b.c18 timing_t start; in message_queue_test() local
22 start = timing_timestamp_get(); in message_queue_test()
27 et = (uint32_t)timing_cycles_get(&start, &end); in message_queue_test()
31 start = timing_timestamp_get(); in message_queue_test()
36 et = (uint32_t)timing_cycles_get(&start, &end); in message_queue_test()
41 start = timing_timestamp_get(); in message_queue_test()
46 et = (uint32_t)timing_cycles_get(&start, &end); in message_queue_test()
51 start = timing_timestamp_get(); in message_queue_test()
56 et = (uint32_t)timing_cycles_get(&start, &end); in message_queue_test()
61 start = timing_timestamp_get(); in message_queue_test()
[all …]
Dsema_b.c18 timing_t start; in sema_test() local
22 start = timing_timestamp_get(); in sema_test()
27 et = (uint32_t)timing_cycles_get(&start, &end); in sema_test()
35 start = timing_timestamp_get(); in sema_test()
40 et = (uint32_t)timing_cycles_get(&start, &end); in sema_test()
45 start = timing_timestamp_get(); in sema_test()
50 et = (uint32_t)timing_cycles_get(&start, &end); in sema_test()
/Zephyr-latest/doc/connectivity/usb/pd/
Ducds.rst41 :start-after: usbc.rst usbc-port start
50 :start-after: usbc.rst vbus-voltage-divider-adc start
60 :start-after: usbc.rst port data object start
68 :start-after: usbc.rst callbacks start
76 :start-after: usbc.rst check start
84 :start-after: usbc.rst notify start
92 :start-after: usbc.rst register start
100 :start-after: usbc.rst user data start
104 Start the USB-C subsystem:
108 :start-after: usbc.rst usbc start
[all …]
/Zephyr-latest/soc/intel/intel_adsp/ace/
Dmmu_ace30.c25 .start = (uint32_t)__common_ram_region_start,
32 .start = (uint32_t)L2_SRAM_BASE,
38 .start = (uint32_t)VECBASE_RESET_PADDR_SRAM,
44 .start = (uint32_t)_cached_start,
50 .start = (uint32_t)HP_SRAM_WIN0_BASE,
56 .start = (uint32_t)HP_SRAM_WIN1_BASE,
62 .start = (uint32_t)HP_SRAM_WIN2_BASE,
68 .start = (uint32_t)HP_SRAM_WIN3_BASE,
75 .start = (uint32_t)(IMR_BOOT_LDR_MANIFEST_BASE - IMR_BOOT_LDR_MANIFEST_SIZE),
81 .start = (uint32_t)IMR_BOOT_LDR_MANIFEST_BASE,
[all …]
/Zephyr-latest/tests/drivers/i2s/i2s_api/src/
Dtest_i2s_loopback.c15 * - TX stream START trigger starts transmission.
16 * - RX stream START trigger starts reception.
40 /* Start reception */ in ZTEST_USER()
42 zassert_equal(ret, 0, "RX START trigger failed"); in ZTEST_USER()
44 /* Start transmission */ in ZTEST_USER()
46 zassert_equal(ret, 0, "TX START trigger failed"); in ZTEST_USER()
81 * - TX stream START trigger starts transmission.
82 * - RX stream START trigger starts reception.
101 /* Start reception */ in ZTEST_USER()
103 zassert_equal(ret, 0, "RX START trigger failed"); in ZTEST_USER()
[all …]
Dtest_i2s_states.c14 * - Sending START, DRAIN, STOP, DROP, PREPARE trigger in NOT_READY state
118 * - Sending START, PREPARE trigger in RUNNING state returns failure.
134 /* Start reception */ in ZTEST_USER()
136 zassert_equal(ret, 0, "RX START trigger failed"); in ZTEST_USER()
138 /* Start transmission */ in ZTEST_USER()
140 zassert_equal(ret, 0, "TX START trigger failed"); in ZTEST_USER()
174 * - Sending START, STOP, DRAIN, PREPARE trigger in STOPPING state returns
191 /* Start reception */ in ZTEST_USER()
193 zassert_equal(ret, 0, "RX START trigger failed"); in ZTEST_USER()
195 /* Start transmission */ in ZTEST_USER()
[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()
55 /* Make room in the buffer by advancing start first (note same in sys_winstream_write()
60 uint32_t avail = (ws->len - 1) - idx_sub(ws, end, start); in sys_winstream_write()
63 ws->start = idx_mod(ws, start + (len - avail)); in sys_winstream_write()
70 ws->start = end; 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()
95 if (*seq == wseq || start == end) { in sys_winstream_read()
[all …]
/Zephyr-latest/samples/subsys/zbus/uart_bridge/src/
Dcore.c25 struct action_msg start = {false}; in core_thread() local
28 LOG_DBG("Core sending start measurement with status %d", start.status); in core_thread()
30 start.status = !start.status; in core_thread()
31 zbus_chan_pub(&start_measurement_chan, &start, K_MSEC(500)); in core_thread()
/Zephyr-latest/samples/subsys/zbus/remote_mock/
DREADME.rst43 D: START processing channel start_measurement change
48 D: START processing channel sensor_data change
76 Proxy PUB [start_measurement] -> start measurement
78 Proxy PUB [start_measurement] -> start measurement
80 Proxy PUB [start_measurement] -> start measurement
82 Proxy PUB [start_measurement] -> start measurement
84 Proxy PUB [start_measurement] -> start measurement
86 Proxy PUB [start_measurement] -> start measurement
88 Proxy PUB [start_measurement] -> start measurement
90 Proxy PUB [start_measurement] -> start measurement
[all …]
/Zephyr-latest/samples/boards/nxp/adsp/number_crunching/src/
Dmath_ops.c13 static int start, stop; variable
35 start = k_cycle_get_32(); in test_vec_sum_int16_op()
44 printk("[Library Test] Vector Sum takes %d cycles\r\n", stop - start); in test_vec_sum_int16_op()
54 start = k_cycle_get_32(); in test_power_int16_op()
67 printk("[Library Test] Vector power sum takes %d cycles\r\n", stop - start); in test_power_int16_op()
76 start = k_cycle_get_32(); in test_power_int32_op()
82 printk("[Library Test] Vector power sum takes %d cycles\r\n", stop - start); in test_power_int32_op()
96 start = k_cycle_get_32(); in test_fft_op()
103 stop - start); in test_fft_op()
110 start = k_cycle_get_32(); in test_iir_op()
[all …]
/Zephyr-latest/scripts/release/
Dlist_devicetree_bindings_changes.py42 binding between the start and end commits. See subclasses
52 start and end commits.'''
62 start: List[str]
67 start: List[str]
81 start: str
87 start: Any
93 start: Any
99 start: Any
105 start: bool
111 start: bool
[all …]
/Zephyr-latest/include/zephyr/timing/
Dtiming.h51 * @brief Signal the start of the timing information gathering.
87 * @brief Get number of cycles between @p start and @p end.
94 * @param start Pointer to counter at start of a measured execution.
96 * @return Number of cycles between start and end.
100 uint64_t soc_timing_cycles_get(volatile timing_t *const start,
167 * @brief Signal the start of the timing information gathering.
203 * @brief Get number of cycles between @p start and @p end.
210 * @param start Pointer to counter at start of a measured execution.
212 * @return Number of cycles between start and end.
216 uint64_t board_timing_cycles_get(volatile timing_t *const start,
[all …]
/Zephyr-latest/arch/riscv/core/
Dpmp.c23 * Thread-specific m-mode and u-mode PMP entries start from the PMP slot
68 unsigned long start, end, tmp; in print_pmp_entries() local
72 start = (index == 0) ? 0 : (pmp_addr[index - 1] << 2); in print_pmp_entries()
76 start = pmp_addr[index] << 2; in print_pmp_entries()
77 end = start + 3; in print_pmp_entries()
81 start = tmp & (tmp + 1); in print_pmp_entries()
85 start = 0; in print_pmp_entries()
98 start, end, in print_pmp_entries()
143 * case start=0 size=0 is valid and means the whole address range.
148 * @param start Start address of the memory area to cover
[all …]
/Zephyr-latest/modules/trusted-firmware-m/nordic/include/
Dtfm_read_ranges.h44 { .start = FICR_INFO_ADDR, .size = FICR_INFO_SIZE },
47 { .start = FICR_NFC_ADDR, .size = FICR_NFC_SIZE },
50 { .start = FICR_RESTRICTED_ADDR, .size = FICR_RESTRICTED_SIZE },
53 { .start = FICR_XOSC32MTRIM_ADDR, .size = FICR_XOSC32MTRIM_SIZE },
56 { .start = FICR_SIPINFO_ADDR, .size = FICR_SIPINFO_SIZE },
/Zephyr-latest/soc/andestech/ae350/
Dpma.c46 #define NAPOT_BASE(start, size) TO_PMA_ADDR((start) & ~((size) - 1)) argument
50 #define NA4_ENCODING(start) TO_PMA_ADDR(start) argument
51 #define NAPOT_ENCODING(start, size) (NAPOT_BASE(start, size) \ argument
68 unsigned long start; member
134 pmaaddr = NA4_ENCODING(region_conf->start); in region_init()
137 pmaaddr = NAPOT_ENCODING(region_conf->start, region_conf->size); in region_init()
147 * PMA region start address and size.
161 /* Start address of the region must align with size */ in pma_region_is_valid()
162 if (region->start & (region->size - 1)) { in pma_region_is_valid()
172 .start = (unsigned long)&_nocache_ram_start, in configure_nocache_region()
/Zephyr-latest/tests/benchmarks/latency_measure/src/
Dthread.c40 /* 3. Finish measuring time to start <alt_thread> */ in alt_thread_entry()
67 timing_t start; in start_thread_entry() local
82 /* 1. Measure time to create, but not start <alt_thread> */ in start_thread_entry()
85 start = timing_timestamp_get(); in start_thread_entry()
94 thread_create_sum += timing_cycles_get(&start, &finish); in start_thread_entry()
118 /* 2. Begin measuring time to start <alt_thread> */ in start_thread_entry()
120 start = timing_timestamp_get(); in start_thread_entry()
123 /* 5. Process the time to start <alt_thread> */ in start_thread_entry()
126 thread_start_sum += timing_cycles_get(&start, &finish); in start_thread_entry()
134 start = timestamp.sample; in start_thread_entry()
[all …]
/Zephyr-latest/include/zephyr/arch/arc/
Darch.h136 * +------------+ <- thread.stack_info.start
142 * +------------+ <- thread.stack_info.start + thread.stack_info.size
166 * +------------+ <- thread.stack_info.start
172 * +------------+ <- thread.stack_info.start + thread.stack_info.size
194 * +------------+ <- thread.stack_obj = thread.stack_info.start
200 * +------------+ <- thread.stack_info.start + thread.stack_info.size
212 * +------------+ <- thread.stack_info.start
218 * +------------+ <- thread.stack_info.start + thread.stack_info.size
239 * +------------+ <- thread.stack_info.start
245 * +------------+ <- thread.stack_info.start + thread.stack_info.size
[all …]
/Zephyr-latest/drivers/sensor/bosch/bmi270/
Dbmi270_i2c.c19 uint8_t start, uint8_t *data, uint16_t len) in bmi270_reg_read_i2c() argument
21 return i2c_burst_read_dt(&bus->i2c, start, data, len); in bmi270_reg_read_i2c()
24 static int bmi270_reg_write_i2c(const union bmi270_bus *bus, uint8_t start, in bmi270_reg_write_i2c() argument
27 return i2c_burst_write_dt(&bus->i2c, start, data, len); in bmi270_reg_write_i2c()
/Zephyr-latest/scripts/west_commands/runners/
Dstm32flash.py53 choices=['erase', 'info', 'start', 'write'],
54 help='erase / get device info / start execution / write flash')
65 parser.add_argument('--start-addr', default=0, required=False,
66 help='specify start address for write operation, default \'0\'')
69 help='start execution at specified address, default \'0\' \
70 which means start of flash')
111 elif action == 'start':
112 # start execution
113 msg_text = f"start code execution at {self.exec_addr}"
116 msg_text += " (flash start)"
/Zephyr-latest/tests/bluetooth/mesh/blob_io_flash/
Dprj.conf6 # Written chunks have 0xFF padding on start and end to assure word alignment with flash.
7 # Start padding can overlap data of previous chunk; flash drivers can only pull bits down to 0,
8 # so overwriting with 0xFF is not possible. This config allows to "write" start padding 0xFF over
/Zephyr-latest/arch/arm/core/mpu/
Darm_core_mpu.c40 /* Convenience macros to denote the start address and the size of the system
71 .start = (uint32_t)&__gcov_bss_start,
79 .start = (uint32_t)&_nocache_ram_start,
87 .start = (uint32_t)&__ramfunc_start,
95 .start = (uint32_t)&__ram_text_reloc_start,
110 .start = (uint32_t)z_main_stack,
133 * Start address of the image is given by _image_ram_start. The end in z_arm_configure_static_mpu_regions()
157 .start = _MPU_DYNAMIC_REGIONS_AREA_START, in z_arm_configure_static_mpu_regions()
201 * thread->stack_info.start. On a K_USER thread, the guard is defined in z_arm_configure_dynamic_mpu_regions()
231 partition->start, partition->size); in z_arm_configure_dynamic_mpu_regions()
[all …]
/Zephyr-latest/tests/arch/x86/info/src/
Dtimer.c61 uint32_t start, end; in timer() local
63 start = sync(cmos); in timer()
65 sum += end - start; in timer()
68 start, end, end - start); in timer()
/Zephyr-latest/tests/bsim/bluetooth/host/scan/start_stop/src/
Dmain.c79 * - [dut] start establishing a sync (no peer) in run_dut()
85 * - [dut] start establishing a sync to the peer in run_dut()
86 * - [dut] start and stop explicit scanning in run_dut()
87 * - [peer] start periodic advertiser in run_dut()
94 LOG_DBG("start"); in run_dut()
106 * This will start the scanner. in run_dut()
124 /* Start scanner. Check that we can start the scanner while it is already in run_dut()
153 /* Start the periodic advertising sync. This time, provide the address of the advertiser in run_dut()
167 /* Start the explicit scanner */ in run_dut()
179 /* Signal to the tester to start the periodic adv. */ in run_dut()
[all …]

12345678910>>...102