/Zephyr-latest/arch/arm/core/mmu/ |
D | arm_mmu.c | 148 __ASSERT(l2_page_tables_status[arm_mmu_l2_next_free_table].entries == 0, in arm_mmu_assign_l2_table() 153 l2_page_tables_status[arm_mmu_l2_next_free_table].entries); in arm_mmu_assign_l2_table() 162 l2_page_tables_status[arm_mmu_l2_next_free_table].entries = 0; in arm_mmu_assign_l2_table() 177 } while (l2_page_tables_status[arm_mmu_l2_next_free_table].entries != 0); in arm_mmu_assign_l2_table() 217 __ASSERT(l2_page_tables_status[l2_page_table_index].entries < ARM_MMU_PT_L2_NUM_ENTRIES, in arm_mmu_inc_l2_table_entries() 223 ++l2_page_tables_status[l2_page_table_index].entries; in arm_mmu_inc_l2_table_entries() 239 __ASSERT(l2_page_tables_status[l2_page_table_index].entries > 0, in arm_mmu_dec_l2_table_entries() 245 if (--l2_page_tables_status[l2_page_table_index].entries == 0) { in arm_mmu_dec_l2_table_entries() 412 __ASSERT(l1_page_table.entries[l1_index].undefined.id == ARM_MMU_PTE_ID_INVALID, in arm_mmu_l1_map_section() 414 l1_page_table.entries[l1_index].undefined.id, in arm_mmu_l1_map_section() [all …]
|
D | arm_mmu_priv.h | 121 union arm_mmu_l1_page_table_entry entries[ARM_MMU_PT_L1_NUM_ENTRIES]; member 157 union arm_mmu_l2_page_table_entry entries[ARM_MMU_PT_L2_NUM_ENTRIES]; member 167 uint32_t entries : 9; member
|
/Zephyr-latest/subsys/net/lib/dns/ |
D | dns_cache.c | 18 cache->entries[i].in_use = false; in dns_cache_flush() 50 if (!cache->entries[i].in_use) { in dns_cache_add() 54 } else if (sys_timepoint_cmp(closest_to_expiry, cache->entries[i].expiry) > 0) { in dns_cache_add() 56 closest_to_expiry = cache->entries[i].expiry; in dns_cache_add() 61 NET_DBG("Overwrite \"%s\"", cache->entries[index_to_replace].query); in dns_cache_add() 64 strncpy(cache->entries[index_to_replace].query, query, in dns_cache_add() 66 cache->entries[index_to_replace].data = *addrinfo; in dns_cache_add() 67 cache->entries[index_to_replace].expiry = sys_timepoint_calc(K_SECONDS(ttl)); in dns_cache_add() 68 cache->entries[index_to_replace].in_use = true; in dns_cache_add() 90 if (cache->entries[i].in_use && strcmp(cache->entries[i].query, query) == 0) { in dns_cache_remove() [all …]
|
D | dns_cache.h | 30 struct dns_cache_entry *entries; member 47 .entries = name##_entries, .size = cache_size, .lock = &name##_mutex};
|
/Zephyr-latest/subsys/debug/symtab/ |
D | symtab.c | 29 if (symbol_offset < symtab->entries[symtab->length].offset) { in symtab_find_symbol_name() 33 if ((symbol_offset >= symtab->entries[mid].offset) && in symtab_find_symbol_name() 34 (symbol_offset < symtab->entries[mid + 1].offset)) { in symtab_find_symbol_name() 35 ret_offset = symbol_offset - symtab->entries[mid].offset; in symtab_find_symbol_name() 36 ret_name = symtab->entries[mid].name; in symtab_find_symbol_name() 38 } else if (symbol_offset < symtab->entries[mid].offset) { in symtab_find_symbol_name() 62 const struct z_symtab_entry *const entry = &symtab->entries[i]; in cmd_symtab_list()
|
/Zephyr-latest/tests/subsys/debug/symtab/src/ |
D | main.c | 30 const uintptr_t last_addr = first_addr + symtab->entries[symtab->length - 1].offset; in ZTEST() 101 zassert_str_equal(symbol_name, symtab->entries[0].name); in ZTEST() 104 if ((symtab->entries[0].offset + 1) != symtab->entries[1].offset) { in ZTEST() 107 zassert_str_equal(symbol_name, symtab->entries[0].name); in ZTEST() 116 const uintptr_t last_addr = first_addr + symtab->entries[last_idx].offset; in ZTEST() 122 zassert_str_equal(symbol_name, symtab->entries[last_idx].name); in ZTEST() 129 const uintptr_t last_offset = symtab->entries[symtab->length - 1].offset; in ZTEST() 135 if (last_offset + 0x1 != symtab->entries[symtab->length].offset) { in ZTEST() 139 symtab->entries[symtab->length - 1].name); in ZTEST() 149 const uintptr_t last_dummy_offset = symtab->entries[symtab->length].offset; in ZTEST()
|
/Zephyr-latest/arch/xtensa/core/ |
D | mpu.c | 156 struct xtensa_mpu_entry *check_addr_in_mpu_entries(const struct xtensa_mpu_entry *entries, in check_addr_in_mpu_entries() argument 168 if (addr < xtensa_mpu_entry_start_address_get(&entries[first_enabled_idx])) { in check_addr_in_mpu_entries() 175 s_addr = xtensa_mpu_entry_start_address_get(&entries[idx]); in check_addr_in_mpu_entries() 176 e_addr = xtensa_mpu_entry_start_address_get(&entries[idx + 1]); in check_addr_in_mpu_entries() 179 ret = &entries[idx]; in check_addr_in_mpu_entries() 185 s_addr = xtensa_mpu_entry_start_address_get(&entries[idx]); in check_addr_in_mpu_entries() 188 ret = &entries[idx]; in check_addr_in_mpu_entries() 218 static inline uint8_t find_first_enabled_entry(const struct xtensa_mpu_entry *entries) in find_first_enabled_entry() argument 224 if (entries[first_enabled_idx].as.p.enable) { in find_first_enabled_entry() 268 static void sort_entries(struct xtensa_mpu_entry *entries) in sort_entries() argument [all …]
|
/Zephyr-latest/tests/lib/hash_map/ |
D | Kconfig | 6 int "Maximum number of Hashmap entries" 10 to vary the number of entries to insert or remove from the hash table 21 For native_sim, the number of entries can be configured
|
/Zephyr-latest/arch/x86/core/ia32/ |
D | tls.c | 25 struct segment_descriptor *sd = &_gdt.entries[ENTRY_NUM]; in z_x86_tls_update_gdt() 37 struct segment_descriptor *sd = &_gdt.entries[ENTRY_NUM]; in z_x86_early_tls_update_gdt()
|
/Zephyr-latest/subsys/input/ |
D | input_double_tap.c | 18 struct double_tap_data_entry *entries; member 62 entry = &cfg->entries[i]; in double_tap_cb() 87 struct double_tap_data_entry *entry = &cfg->entries[i]; in double_tap_init() 115 .entries = double_tap_data_entries_##inst, \
|
D | input_longpress.c | 18 struct longpress_data_entry *entries; member 70 entry = &cfg->entries[i]; in longpress_cb() 96 struct longpress_data_entry *entry = &cfg->entries[i]; in longpress_init() 129 .entries = longpress_data_entries_##inst, \
|
/Zephyr-latest/subsys/mgmt/mcumgr/grp/enum_mgmt/src/ |
D | enum_mgmt.c | 262 size_t *entries = (size_t *)user_data; in enum_mgmt_cb_count_entries() local 269 ++*entries; in enum_mgmt_cb_count_entries() 309 size_t entries = 0; in enum_mgmt_details() local 327 ZCBOR_MAP_DECODE_KEY_DECODER("groups", enum_mgmt_cb_count_entries, &entries), in enum_mgmt_details() 344 if (entries > CONFIG_MCUMGR_GRP_ENUM_DETAILS_BUFFER_TYPE_STACK_ENTRIES) { in enum_mgmt_details() 351 if (entries > 0) { in enum_mgmt_details() 354 uint16_t *entry_list = malloc(sizeof(uint16_t) * entries); in enum_mgmt_details() 371 arguments.allowed_group_id_size = (uint16_t)entries; in enum_mgmt_details()
|
/Zephyr-latest/dts/xtensa/ |
D | dc233c.dtsi | 23 * fewer L2 page table entries are needed when MMU is enabled. 33 * fewer L2 page table entries are needed when MMU is enabled.
|
/Zephyr-latest/samples/basic/hash_map/ |
D | Kconfig | 6 int "Maximum number of Hashmap entries" 10 to vary the number of entries to insert or remove from the hash table
|
/Zephyr-latest/drivers/disk/nvme/ |
D | Kconfig | 17 int "Number of admin queue entries" 21 This sets the amount of allocated admin queue entries. 33 int "Number of IO queue entries" 37 This sets the amount of allocated IO queue entries.
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | cmakecache.py | 117 entries = [] 122 entries.append(entry) 123 self._entries = OrderedDict((e.name, e) for e in entries)
|
/Zephyr-latest/drivers/ethernet/ |
D | Kconfig.cyclonev | 14 int "Number of entries in the transmit descriptor ring" 27 int "Number of entries in the receive descriptor ring"
|
/Zephyr-latest/lib/acpi/ |
D | Kconfig | 50 int "MMIO entries per device" 53 Maximum MMIO entries per device.
|
/Zephyr-latest/include/zephyr/debug/ |
D | symtab.h | 41 const struct z_symtab_entry *const entries; member
|
/Zephyr-latest/tests/lib/hash_function/ |
D | Kconfig | 11 int "Number of entries for Hash Function test"
|
/Zephyr-latest/subsys/fs/fcb/ |
D | fcb.c | 306 int fcb_offset_last_n(struct fcb *fcbp, uint8_t entries, struct fcb_entry *last_n_entry) in fcb_offset_last_n() argument 313 if (!entries) { in fcb_offset_last_n() 314 entries = 1U; in fcb_offset_last_n() 325 else if (i > (entries - 1)) { in fcb_offset_last_n()
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | core.rst | 44 storing of RPL entries in the persistent storage. 49 RPL entry (or entries) at any time (or sufficiently before power loss) 51 which RPL entries are to be stored in this case. 57 is called until all RPL entries are written to the flash. 87 The Replay Protection List uses the same work item to store RPL entries. If 88 storing of RPL entries is requested and no other configuration is pending to be 96 including the RPL entries.
|
/Zephyr-latest/lib/os/zvfs/ |
D | Kconfig | 45 int "Max number of supported zvfs_poll() entries" 51 Maximum number of entries supported for poll() call.
|
/Zephyr-latest/include/zephyr/arch/x86/ia32/ |
D | segmentation.h | 217 struct segment_descriptor *entries; member 354 #define DT_INIT(entries) { sizeof(entries) - 1, &entries[0] } argument
|
/Zephyr-latest/drivers/spi/ |
D | Kconfig.max32 | 34 int "Number of available submission queue entries" 45 int "Number of available completion queue entries"
|