/Zephyr-Core-3.7.0/subsys/net/ip/ |
D | nbr.c | 68 struct net_nbr *net_nbr_get(struct net_nbr_table *table) in net_nbr_get() argument 72 for (i = 0; i < table->nbr_count; i++) { in net_nbr_get() 73 struct net_nbr *nbr = get_nbr(table->nbr, i); in net_nbr_get() 159 struct net_nbr *net_nbr_lookup(struct net_nbr_table *table, in net_nbr_lookup() argument 165 for (i = 0; i < table->nbr_count; i++) { in net_nbr_lookup() 166 struct net_nbr *nbr = get_nbr(table->nbr, i); in net_nbr_lookup() 188 void net_nbr_clear_table(struct net_nbr_table *table) in net_nbr_clear_table() argument 192 for (i = 0; i < table->nbr_count; i++) { in net_nbr_clear_table() 193 struct net_nbr *nbr = get_nbr(table->nbr, i); in net_nbr_clear_table() 202 if (table->clear) { in net_nbr_clear_table() [all …]
|
D | nbr.h | 91 void (*const clear)(struct net_nbr_table *table); 104 struct net_nbr_table table; \ 106 .table = { \ 143 struct net_nbr *net_nbr_get(struct net_nbr_table *table); 152 struct net_nbr *net_nbr_lookup(struct net_nbr_table *table, 195 void net_nbr_clear_table(struct net_nbr_table *table); 201 void net_nbr_print(struct net_nbr_table *table);
|
/Zephyr-Core-3.7.0/boards/arm/fvp_base_revc_2xaemv8a/ |
D | Kconfig | 5 # - LPI prop table: global 1x64K aligned on 64K 6 # - LPI pend table: for each redistributor/cpu 1x64K aligned on 64K 7 # - Devices table: 128x4K aligned on 4K 8 # - Interrupt Collections table: 1x4K aligned on 4K 15 # 256bytes aligned tables, for reference a 32 ITEs table needs 256bytes.
|
/Zephyr-Core-3.7.0/lib/open-amp/ |
D | Kconfig | 8 bool "coprocessor resource table" 11 add the resource table in the generated binary. This table is 15 int "Resource table number of rpmsg buffers"
|
/Zephyr-Core-3.7.0/tests/net/neighbor/src/ |
D | main.c | 40 static void net_neighbor_table_clear(struct net_nbr_table *table) in net_neighbor_table_clear() argument 42 printk("Neighbor table %p cleared\n", table); in net_neighbor_table_clear() 87 nbr = net_nbr_get(&net_test_neighbor.table); in ZTEST() 89 &net_test_neighbor.table); in ZTEST() 115 nbr = net_nbr_lookup(&net_test_neighbor.table, iface1, &lladdr); in ZTEST() 143 nbr = net_nbr_get(&net_test_neighbor.table); in ZTEST() 150 i, &net_test_neighbor.table); in ZTEST() 170 nbr = net_nbr_lookup(&net_test_neighbor.table, iface1, &lladdr); in ZTEST() 202 nbr = net_nbr_get(&net_test_neighbor.table); in ZTEST() 209 i, &net_test_neighbor.table); in ZTEST() [all …]
|
/Zephyr-Core-3.7.0/doc/services/portability/posix/option_groups/ |
D | index.rst | 16 .. csv-table:: POSIX_BARRIERS 37 .. csv-table:: POSIX_C_LANG_JUMP 82 .. csv-table:: POSIX_C_LIB_EXT 109 .. csv-table:: POSIX_CLOCK_SELECTION 124 .. csv-table:: POSIX_DEVICE_IO 185 .. csv-table:: POSIX_FD_MGMT 207 .. csv-table:: POSIX_FILE_LOCKING 226 .. csv-table:: POSIX_FILE_SYSTEM 264 .. csv-table:: POSIX_MAPPED_FILES 279 .. csv-table:: POSIX_MEMORY_PROTECTION [all …]
|
/Zephyr-Core-3.7.0/lib/crc/ |
D | crc32_sw.c | 17 static const uint32_t table[16] = { in crc32_ieee_update() local 29 crc = (crc >> 4) ^ table[(crc ^ byte) & 0x0f]; in crc32_ieee_update() 30 crc = (crc >> 4) ^ table[(crc ^ ((uint32_t)byte >> 4)) & 0x0f]; in crc32_ieee_update()
|
/Zephyr-Core-3.7.0/drivers/interrupt_controller/ |
D | intc_miwu.c | 129 static void npcx_miwu_set_pseudo_both_edge(uint8_t table, uint8_t group, uint8_t bit) in npcx_miwu_set_pseudo_both_edge() argument 131 const struct intc_miwu_config *config = miwu_devs[table]->config; in npcx_miwu_set_pseudo_both_edge() 180 const struct intc_miwu_config *config = miwu_devs[wui->table]->config; in npcx_miwu_irq_enable() 185 struct intc_miwu_data *data = miwu_devs[wui->table]->data; in npcx_miwu_irq_enable() 194 npcx_miwu_set_pseudo_both_edge(wui->table, wui->group, wui->bit); in npcx_miwu_irq_enable() 202 const struct intc_miwu_config *config = miwu_devs[wui->table]->config; in npcx_miwu_irq_disable() 210 const struct intc_miwu_config *config = miwu_devs[wui->table]->config; in npcx_miwu_io_enable() 218 const struct intc_miwu_config *config = miwu_devs[wui->table]->config; in npcx_miwu_io_disable() 226 const struct intc_miwu_config *config = miwu_devs[wui->table]->config; in npcx_miwu_irq_get_state() 234 const struct intc_miwu_config *config = miwu_devs[wui->table]->config; in npcx_miwu_irq_get_and_clear_pending() [all …]
|
/Zephyr-Core-3.7.0/arch/arm64/core/ |
D | mmu.c | 41 uint64_t *table; in new_table() local 47 table = &xlat_tables[i * Ln_XLAT_NUM_ENTRIES]; in new_table() 49 MMU_DEBUG("allocating table [%d]%p\n", i, table); in new_table() 50 return table; in new_table() 67 static int table_usage(uint64_t *table, int adjustment) in table_usage() argument 69 unsigned int i = table_index(table); in table_usage() 75 MMU_DEBUG("table [%d]%p: usage %#x -> %#x\n", i, table, prev_count, new_count); in table_usage() 89 static inline void inc_table_ref(uint64_t *table) in inc_table_ref() argument 91 table_usage(table, XLAT_REF_COUNT_UNIT); in inc_table_ref() 94 static inline void dec_table_ref(uint64_t *table) in dec_table_ref() argument [all …]
|
/Zephyr-Core-3.7.0/subsys/debug/symtab/ |
D | Kconfig | 5 bool "Generate symbol table" 7 Generate the symbol table with the offset and name of every 9 The symbol table can be accessed by including the
|
/Zephyr-Core-3.7.0/doc/_doxygen/ |
D | doxygen-awesome.css | 77 --table-line-height: 24px; 106 /* table colors */ 163 /* height of an item in any tree / collapsible table */ 313 body, table, div, p, dl, #nav-tree .label, .title, selector 326 p, div, table, dl, p.reference, p.definition { selector 381 #titlearea table tbody tr { 962 html:not(.light-mode) div.contents > table img, 965 html:not(.light-mode) div.contents table iframe, 973 html.dark-mode div.contents > table img, 976 html.dark-mode div.contents table iframe, [all …]
|
/Zephyr-Core-3.7.0/drivers/xen/ |
D | Kconfig | 9 bool "Xen grant table driver" 13 Xen grant table driver. Please note that driver uses dynamic memory 19 int "Grant table driver init priority"
|
/Zephyr-Core-3.7.0/doc/services/device_mgmt/smp_groups/ |
D | smp_group_3.rst | 9 .. table:: 39 .. table:: 59 .. table:: 73 .. table:: 116 .. table:: 143 .. table:: 163 .. table:: 177 .. table:: 212 .. table:: 236 .. table:: [all …]
|
D | smp_group_0.rst | 8 .. table:: 44 .. table:: 63 .. table:: 75 .. table:: 119 .. table:: 145 .. table:: 162 .. table:: 217 .. table:: 266 .. table:: 282 .. table:: [all …]
|
D | smp_group_9.rst | 11 .. table:: 31 .. table:: 54 .. table:: 71 .. table:: 114 .. table::
|
D | smp_group_63.rst | 8 .. table:: 29 .. table:: 45 .. table:: 80 .. table::
|
D | smp_group_2.rst | 11 .. table:: 35 .. table:: 54 .. table:: 66 .. table:: 113 .. table:: 150 .. table:: 166 .. table:: 211 .. table::
|
/Zephyr-Core-3.7.0/arch/arm/core/cortex_m/ |
D | vector_table_pad.ld | 8 * Padding inserted after the (first-stage) vector table, so that the 11 * vector table section is higher than the upper end of the reserved 16 * first stage vector table.
|
/Zephyr-Core-3.7.0/tests/arch/arm/arm_irq_vector_table/ |
D | irq-vector-table.ld | 7 * table (like STM32F0). The symbol defined here is overriding the one in 8 * arch/arm/core/vector_table.ld when the IRQ vector table is enabled.
|
/Zephyr-Core-3.7.0/scripts/utils/ |
D | ntc_thermistor_table.py | 54 table = [] 57 table.append(f"<({int(temp)}) {int(resistance)}>") 59 tbl_string = ',\n\t\t'.join(table)
|
/Zephyr-Core-3.7.0/doc/_extensions/zephyr/ |
D | manifest_projects_table.py | 86 table = nodes.table() 91 table += tgroup 129 return [table]
|
/Zephyr-Core-3.7.0/include/zephyr/linker/ |
D | irq-vector-table-section.ld | 10 * table (like STM32F0). The symbol defined here is overriding the one in 11 * arch/arm/core/vector_table.ld when the IRQ vector table is enabled.
|
/Zephyr-Core-3.7.0/doc/services/portability/posix/aep/ |
D | index.rst | 41 .. csv-table:: PSE51 System Interfaces 47 .. csv-table:: PSE51 Option Groups 58 .. csv-table:: PSE51 Option Requirements 93 .. csv-table:: PSE52 System Interfaces 99 .. csv-table:: PSE52 Option Groups 107 .. csv-table:: PSE52 Option Requirements 133 .. csv-table:: PSE53 System Interfaces 139 .. csv-table:: PSE53 Option Groups 148 .. csv-table:: PSE53 Option Requirements
|
/Zephyr-Core-3.7.0/arch/x86/ |
D | gen_mmu.py | 375 table = self.toplevel 382 if table.has_entry(virt_addr): 386 table = self.tables[table.lookup(virt_addr)] 403 def new_child_table(self, table, virt_addr, depth): argument 410 table.map(virt_addr, new_table_addr, INT_FLAGS) 417 table = self.toplevel 424 if not table.has_entry(virt_addr): 425 table = self.new_child_table(table, virt_addr, depth) 427 table = self.tables[table.lookup(virt_addr)] 431 table.map(virt_addr, phys_addr, flags) [all …]
|
/Zephyr-Core-3.7.0/doc/services/debugging/ |
D | symtab.rst | 6 The Symtab module, when enabled, will generate full symbol table during the Zephyr linking 16 Application can gain access to the symbol table data structure by including the :file:`symtab.h` he… 26 * :kconfig:option:`CONFIG_SYMTAB`: enable the generation of the symbol table.
|