/Zephyr-latest/samples/userspace/prod_consumer/src/ |
D | main.c | 35 LOG_INF("APP A partition: %p %zu", (void *)app_a_partition.start, in main() 37 LOG_INF("APP B partition: %p %zu", (void *)app_b_partition.start, in main() 39 LOG_INF("Shared partition: %p %zu", (void *)shared_partition.start, in main() 42 LOG_INF("libc partition: %p %zu", (void *)z_libc_partition.start, in main()
|
/Zephyr-latest/tests/benchmarks/app_kernel/src/ |
D | mutex_b.c | 18 timing_t start; in mutex_test() local 22 start = timing_timestamp_get(); in mutex_test() 28 et = (uint32_t)timing_cycles_get(&start, &end); in mutex_test()
|
D | memmap_b.c | 18 timing_t start; in memorymap_test() local 25 start = timing_timestamp_get(); in memorymap_test() 36 et = (uint32_t)timing_cycles_get(&start, &end); in memorymap_test()
|
/Zephyr-latest/kernel/ |
D | mem_domain.c | 43 part->start); in check_add_partition() 50 part, part->start); in check_add_partition() 54 pstart = part->start; in check_add_partition() 55 pend = part->start + part->size; in check_add_partition() 59 part, part->start, part->size); in check_add_partition() 74 dstart = dpart->start; in check_add_partition() 79 part, part->start, part->size, in check_add_partition() 80 dpart->start, dpart->size); in check_add_partition() 193 part->start, part->size, domain); in k_mem_domain_add_partition() 195 domain->partitions[p_idx].start = part->start; in k_mem_domain_add_partition() [all …]
|
/Zephyr-latest/tests/benchmarks/latency_measure/src/ |
D | events.c | 31 timing_t start; in event_ops_entry() local 39 start = timing_timestamp_get(); in event_ops_entry() 45 timestamp.cycles = timing_cycles_get(&start, &finish); in event_ops_entry() 53 start = timing_timestamp_get(); in event_ops_entry() 59 timestamp.cycles = timing_cycles_get(&start, &finish); in event_ops_entry() 67 start = timing_timestamp_get(); in event_ops_entry() 73 timestamp.cycles = timing_cycles_get(&start, &finish); in event_ops_entry() 81 start = timing_timestamp_get(); in event_ops_entry() 87 timestamp.cycles = timing_cycles_get(&start, &finish); in event_ops_entry() 122 timing_t start; in alt_thread_entry() local [all …]
|
D | thread.c | 67 timing_t start; in start_thread_entry() local 85 start = timing_timestamp_get(); in start_thread_entry() 94 thread_create_sum += timing_cycles_get(&start, &finish); in start_thread_entry() 120 start = timing_timestamp_get(); 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() 136 thread_suspend_sum += timing_cycles_get(&start, &finish); in start_thread_entry() 140 start = timing_timestamp_get(); in start_thread_entry() 146 thread_resume_sum += timing_cycles_get(&start, &finish); in start_thread_entry() 150 start = timing_timestamp_get(); in start_thread_entry() [all …]
|
D | mutex_lock_unlock.c | 26 timing_t start; in start_lock_unlock() local 34 start = timing_timestamp_get(); in start_lock_unlock() 44 lock_cycles = timing_cycles_get(&start, &finish); in start_lock_unlock() 46 start = timing_timestamp_get(); in start_lock_unlock() 56 unlock_cycles = timing_cycles_get(&start, &finish); in start_lock_unlock()
|
D | sema_test_signal_release.c | 53 timing_t start; in start_thread_entry() local 72 start = timing_timestamp_get(); in start_thread_entry() 90 take_sum += timing_cycles_get(&start, &mid); in start_thread_entry() 184 timing_t start; in immediate_give_take() local 194 start = timing_timestamp_get(); in immediate_give_take() 201 give_cycles = timing_cycles_get(&start, &finish); in immediate_give_take() 205 start = timing_timestamp_get(); in immediate_give_take() 212 take_cycles = timing_cycles_get(&start, &finish); in immediate_give_take()
|
D | int_to_thread.c | 58 timing_t start; in int_to_interrupted_thread() local 66 start = timestamp.sample; in int_to_interrupted_thread() 68 *sum += timing_cycles_get(&start, &finish); in int_to_interrupted_thread() 80 timing_t start; in start_thread_entry() local 97 start = timestamp.sample; in start_thread_entry() 99 sum += timing_cycles_get(&start, &finish); in start_thread_entry()
|
/Zephyr-latest/lib/libc/minimal/source/string/ |
D | string.c | 163 char *start, *end; in strtok_r() local 165 start = str ? str : *state; in strtok_r() 168 while (*start && strchr(sep, *start)) { in strtok_r() 169 start++; in strtok_r() 172 if (*start == '\0') { in strtok_r() 173 *state = start; in strtok_r() 178 end = start; in strtok_r() 190 return start; in strtok_r()
|
/Zephyr-latest/arch/arm/core/mpu/ |
D | arm_mpu_v8_internal.h | 201 ((part->start & in mpu_partition_is_valid() 218 static inline int get_region_index(uint32_t start, uint32_t size) in get_region_index() argument 220 uint32_t limit = (start + size - 1) & MPU_RLAR_LIMIT_Msk; in get_region_index() 224 if (start >= (mpu_get_rbar() & MPU_RBAR_BASE_Msk) && in get_region_index() 232 static inline int get_region_index(uint32_t start, uint32_t size) in get_region_index() argument 234 uint32_t region_start_addr = arm_cmse_mpu_region_get(start); in get_region_index() 235 uint32_t region_end_addr = arm_cmse_mpu_region_get(start + size - 1); in get_region_index() 371 static inline int is_in_region(uint32_t rnr, uint32_t start, uint32_t size) in is_in_region() argument 381 if (u32_add_overflow(start, size, &end)) { in is_in_region() 385 if ((start >= r_addr_start) && (end <= r_addr_end)) { in is_in_region() [all …]
|
/Zephyr-latest/subsys/net/lib/mqtt/ |
D | mqtt_encoder.c | 193 static uint32_t mqtt_encode_fixed_header(uint8_t message_type, uint8_t *start, in mqtt_encode_fixed_header() argument 196 uint32_t length = buf->cur - start; in mqtt_encode_fixed_header() 211 buf->cur = start - fixed_header_length; in mqtt_encode_fixed_header() 257 uint8_t *start; in mqtt_message_id_only_enc() local 266 start = buf->cur; in mqtt_message_id_only_enc() 273 return mqtt_encode_fixed_header(message_type, start, buf); in mqtt_message_id_only_enc() 285 uint8_t *start; in connect_request_encode() local 295 start = buf->cur; in connect_request_encode() 395 return mqtt_encode_fixed_header(message_type, start, buf); in connect_request_encode() 404 uint8_t *start; in publish_encode() local [all …]
|
/Zephyr-latest/arch/xtensa/core/ |
D | mpu.c | 87 .start = (uintptr_t)XCHAL_VECBASE_RESET_VADDR, 107 .start = (uintptr_t)_image_ram_start, 115 .start = (uintptr_t)_heap_start, 123 .start = (uintptr_t)__text_region_start, 130 .start = (uintptr_t)__rodata_region_start, 705 range->start, range->end, in xtensa_mpu_init() 711 (unsigned int)range->start, in xtensa_mpu_init() 724 range->start, range->end, in xtensa_mpu_init() 730 (unsigned int)range->start, in xtensa_mpu_init() 779 uintptr_t end_addr = partition->start + partition->size; in arch_mem_domain_partition_remove() [all …]
|
D | ptables.c | 122 .start = (uint32_t)_image_ram_start, 134 .start = (uint32_t)_heap_start, 146 .start = (uint32_t)__text_region_start, 153 .start = (uint32_t)__rodata_region_start, 216 static void map_memory_range(const uint32_t start, const uint32_t end, in map_memory_range() argument 224 for (page = start; page < end; page += CONFIG_MMU_PAGE_SIZE) { in map_memory_range() 250 static void map_memory(const uint32_t start, const uint32_t end, in map_memory() argument 253 map_memory_range(start, end, attrs); in map_memory() 256 if (sys_cache_is_ptr_uncached((void *)start)) { in map_memory() 257 map_memory_range(POINTER_TO_UINT(sys_cache_cached_ptr_get((void *)start)), in map_memory() [all …]
|
D | vector_handlers.c | 36 uintptr_t start, end; in xtensa_is_outside_stack_bounds() local 69 start = (uintptr_t)K_KERNEL_STACK_BUFFER(z_interrupt_stacks[cpu_id]); in xtensa_is_outside_stack_bounds() 70 end = start + CONFIG_ISR_STACK_SIZE; in xtensa_is_outside_stack_bounds() 84 start = (uintptr_t)thread->stack_obj; in xtensa_is_outside_stack_bounds() 85 end = Z_STACK_PTR_ALIGN(thread->stack_info.start + thread->stack_info.size); in xtensa_is_outside_stack_bounds() 92 start = thread->stack_info.start - CONFIG_PRIVILEGED_STACK_SIZE; in xtensa_is_outside_stack_bounds() 93 end = thread->stack_info.start; in xtensa_is_outside_stack_bounds() 96 start = thread->stack_info.start; in xtensa_is_outside_stack_bounds() 97 end = Z_STACK_PTR_ALIGN(thread->stack_info.start + thread->stack_info.size); in xtensa_is_outside_stack_bounds() 100 invalid = (addr <= start) || ((addr + sz) >= end); in xtensa_is_outside_stack_bounds()
|
/Zephyr-latest/scripts/release/ |
D | list_devicetree_bindings_changes.py | 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 234 start = binding_start.specifier2cells 237 if start == end: [all …]
|
/Zephyr-latest/drivers/gnss/ |
D | gnss_parse.c | 25 int8_t start = 0; in gnss_parse_dec_to_nano() local 47 start = str[0] == '-' ? 1 : 0; in gnss_parse_dec_to_nano() 51 while (start <= pos) { in gnss_parse_dec_to_nano() 70 sum = start == 1 ? -sum : sum; in gnss_parse_dec_to_nano() 96 sum = start == 1 ? -sum : sum; in gnss_parse_dec_to_nano()
|
/Zephyr-latest/arch/arm/core/cortex_m/ |
D | thread.c | 73 thread->stack_info.start += MPU_GUARD_ALIGN_AND_SIZE; in arch_new_thread() 84 thread->stack_info.start += FP_GUARD_EXTRA_SIZE; in arch_new_thread() 155 thread->stack_info.start += in z_arm_thread_stack_info_adjust() 176 thread->stack_info.start -= in z_arm_thread_stack_info_adjust() 245 arch_current_thread()->stack_info.start -= FP_GUARD_EXTRA_SIZE; in arch_user_mode_enter() 249 arch_current_thread()->stack_info.start -= MPU_GUARD_ALIGN_AND_SIZE; in arch_user_mode_enter() 267 (uint32_t)arch_current_thread()->stack_info.start, in arch_user_mode_enter() 319 __ASSERT(thread->stack_info.start == ((uint32_t)thread->stack_obj), in configure_builtin_stack_guard() 323 uint32_t guard_start = thread->stack_info.start; in configure_builtin_stack_guard() 422 if (IS_MPU_GUARD_VIOLATION(thread->stack_info.start - in z_check_thread_stack_fail() [all …]
|
/Zephyr-latest/arch/arm/core/cortex_a_r/ |
D | thread.c | 64 thread->stack_info.start += MPU_GUARD_ALIGN_AND_SIZE; in arch_new_thread() 75 thread->stack_info.start += FP_GUARD_EXTRA_SIZE; in arch_new_thread() 163 thread->stack_info.start += in z_arm_thread_stack_info_adjust() 184 thread->stack_info.start -= in z_arm_thread_stack_info_adjust() 212 arch_current_thread()->stack_info.start -= FP_GUARD_EXTRA_SIZE; in arch_user_mode_enter() 216 arch_current_thread()->stack_info.start -= MPU_GUARD_ALIGN_AND_SIZE; in arch_user_mode_enter() 239 (uint32_t)arch_current_thread()->stack_info.start, in arch_user_mode_enter() 347 if (IS_MPU_GUARD_VIOLATION(thread->stack_info.start - in z_check_thread_stack_fail() 352 return thread->stack_info.start; in z_check_thread_stack_fail() 357 if (IS_MPU_GUARD_VIOLATION(thread->stack_info.start - guard_len, in z_check_thread_stack_fail() [all …]
|
/Zephyr-latest/tests/drivers/counter/counter_seconds/src/ |
D | main.c | 27 uint32_t start, elapsed; in ZTEST() local 32 err = counter_get_value(dev, &start); in ZTEST() 39 elapsed -= start; in ZTEST()
|
/Zephyr-latest/soc/espressif/esp32/ |
D | gdbstub.c | 19 .start = 0x3F400000, 26 .start = 0x3FF00000, 33 .start = 0x3FF80000, 40 .start = 0x3FF90000, 47 .start = 0x3FFAE000, 54 .start = 0x40000000, 61 .start = 0x40070000, 68 .start = 0x400C0000, 75 .start = 0x400C2000, 85 .start = 0x400D0000, [all …]
|
/Zephyr-latest/tests/misc/llext-edk/extension/src/ |
D | main.c | 12 int start(int bar) in start() function 17 EXPORT_SYMBOL(start);
|
/Zephyr-latest/modules/canopennode/ |
D | canopen_sync.c | 21 uint32_t start; /* cycles */ in canopen_sync_thread() local 32 start = k_cycle_get_32(); in canopen_sync_thread() 43 delta = stop - start; in canopen_sync_thread()
|
/Zephyr-latest/tests/boards/nrf/dmm/src/ |
D | main.c | 33 uintptr_t start; member 51 .start = DMM_TEST_GET_REG_START(DUT_CACHE), 56 .start = DMM_TEST_GET_REG_START(DUT_NOCACHE), 76 uintptr_t start = (uintptr_t)buf; in dmm_buffer_in_region_check() local 78 return ((start >= dtr->start) && ((start + size) <= (dtr->start + dtr->size))); in dmm_buffer_in_region_check() 225 memset((void *)dtr->start, 0x00, dtr->size); in dmm_test_prepare()
|
/Zephyr-latest/arch/riscv/core/ |
D | fatal.c | 168 sp >= arch_current_thread()->stack_info.start - K_THREAD_STACK_RESERVED && in bad_stack_pointer() 169 sp < arch_current_thread()->stack_info.start - K_THREAD_STACK_RESERVED in bad_stack_pointer() 176 if (sp >= arch_current_thread()->stack_info.start - K_KERNEL_STACK_RESERVED && in bad_stack_pointer() 177 sp < arch_current_thread()->stack_info.start - K_KERNEL_STACK_RESERVED in bad_stack_pointer() 194 (esf->sp < arch_current_thread()->stack_info.start || in bad_stack_pointer() 195 esf->sp > arch_current_thread()->stack_info.start + in bad_stack_pointer() 214 unsigned long start = (unsigned long)exceptions[i].start; in _Fault() local 217 if (esf->mepc >= start && esf->mepc < end) { in _Fault()
|