Home
last modified time | relevance | path

Searched refs:table (Results 1 – 25 of 425) sorted by relevance

12345678910>>...17

/Zephyr-latest/subsys/net/ip/
Dnbr.c68 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()
160 struct net_nbr *net_nbr_lookup(struct net_nbr_table *table, in net_nbr_lookup() argument
166 for (i = 0; i < table->nbr_count; i++) { in net_nbr_lookup()
167 struct net_nbr *nbr = get_nbr(table->nbr, i); in net_nbr_lookup()
189 void net_nbr_clear_table(struct net_nbr_table *table) in net_nbr_clear_table() argument
193 for (i = 0; i < table->nbr_count; i++) { in net_nbr_clear_table()
194 struct net_nbr *nbr = get_nbr(table->nbr, i); in net_nbr_clear_table()
203 if (table->clear) { in net_nbr_clear_table()
[all …]
Dnbr.h91 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-latest/subsys/debug/symtab/
DKconfig5 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
17 bool "Symbol table shell commands"
20 Shell commands to access the symbol table.
/Zephyr-latest/boards/arm/fvp_base_revc_2xaemv8a/
DKconfig5 # - 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-latest/tests/net/neighbor/src/
Dmain.c40 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()
116 nbr = net_nbr_lookup(&net_test_neighbor.table, iface1, &lladdr); in ZTEST()
144 nbr = net_nbr_get(&net_test_neighbor.table); in ZTEST()
151 i, &net_test_neighbor.table); in ZTEST()
171 nbr = net_nbr_lookup(&net_test_neighbor.table, iface1, &lladdr); in ZTEST()
203 nbr = net_nbr_get(&net_test_neighbor.table); in ZTEST()
210 i, &net_test_neighbor.table); in ZTEST()
[all …]
/Zephyr-latest/lib/crc/
Dcrc32_sw.c17 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-latest/include/zephyr/drivers/sensor/
Dbattery.h57 #define BATTERY_OCV_TABLE_DT_GET(node_id, table) \ argument
58 COND_CODE_1(DT_NODE_HAS_PROP(node_id, table), \
59 ({DT_FOREACH_PROP_ELEM_SEP(node_id, table, DT_PROP_BY_IDX, (,))}), ({-1}))
/Zephyr-latest/drivers/interrupt_controller/
Dintc_miwu.c129 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-latest/arch/arm64/core/
Dmmu.c44 uint64_t *table; in new_table() local
50 table = &xlat_tables[i * Ln_XLAT_NUM_ENTRIES]; in new_table()
52 MMU_DEBUG("allocating table [%d]%p\n", i, table); in new_table()
53 return table; in new_table()
70 static int table_usage(uint64_t *table, int adjustment) in table_usage() argument
72 unsigned int i = table_index(table); in table_usage()
78 MMU_DEBUG("table [%d]%p: usage %#x -> %#x\n", i, table, prev_count, new_count); in table_usage()
92 static inline void inc_table_ref(uint64_t *table) in inc_table_ref() argument
94 table_usage(table, XLAT_REF_COUNT_UNIT); in inc_table_ref()
97 static inline void dec_table_ref(uint64_t *table) in dec_table_ref() argument
[all …]
/Zephyr-latest/doc/services/portability/posix/option_groups/
Dindex.rst16 .. csv-table:: POSIX_BARRIERS
37 .. csv-table:: POSIX_C_LANG_JUMP
82 .. csv-table:: POSIX_C_LIB_EXT
109 .. csv-table:: POSIX_CLOCK_SELECTION
128 .. csv-table:: POSIX_DEVICE_IO
189 .. csv-table:: POSIX_FD_MGMT
211 .. csv-table:: POSIX_FILE_LOCKING
230 .. csv-table:: POSIX_FILE_SYSTEM
268 .. csv-table:: POSIX_FILE_SYSTEM_R
281 .. csv-table:: POSIX_MAPPED_FILES
[all …]
/Zephyr-latest/lib/open-amp/
DKconfig8 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-latest/drivers/xen/
DKconfig9 bool "Xen grant table driver"
13 Xen grant table driver. Please note that driver uses dynamic memory
19 int "Grant table driver init priority"
29 grant table driver in runtime. This value should be <= max_grant_frames
/Zephyr-latest/doc/_doxygen/
Ddoxygen-awesome.css77 --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
382 #titlearea table tbody tr {
968 html:not(.light-mode) div.contents > table img,
971 html:not(.light-mode) div.contents table iframe,
979 html.dark-mode div.contents > table img,
982 html.dark-mode div.contents table iframe,
[all …]
/Zephyr-latest/doc/services/device_mgmt/smp_groups/
Dsmp_group_3.rst9 .. table::
39 .. table::
59 .. table::
73 .. table::
116 .. table::
143 .. table::
163 .. table::
177 .. table::
212 .. table::
236 .. table::
[all …]
Dsmp_group_0.rst8 .. table::
44 .. table::
63 .. table::
75 .. table::
119 .. table::
145 .. table::
162 .. table::
217 .. table::
266 .. table::
282 .. table::
[all …]
Dsmp_group_9.rst11 .. table::
31 .. table::
54 .. table::
71 .. table::
114 .. table::
Dsmp_group_63.rst8 .. table::
29 .. table::
45 .. table::
80 .. table::
/Zephyr-latest/arch/arm/core/cortex_m/
Dvector_table_pad.ld8 * 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-latest/tests/arch/arm/arm_irq_vector_table/
Dirq-vector-table.ld7 * 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-latest/scripts/utils/
Dntc_thermistor_table.py54 table = []
57 table.append(f"<({int(temp)}) {int(resistance)}>")
59 tbl_string = ',\n\t\t'.join(table)
/Zephyr-latest/doc/_extensions/zephyr/
Dmanifest_projects_table.py88 table = nodes.table()
93 table += tgroup
131 return [table]
/Zephyr-latest/include/zephyr/linker/
Dirq-vector-table-section.ld10 * 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-latest/dts/arm/nuvoton/npcx/npcx9/
Dnpcx9-miwus-wui-map.dtsi16 /* MIWU table 0 */
30 /* MIWU table 1 */
36 /* MIWU table 2 */
/Zephyr-latest/doc/services/portability/posix/aep/
Dindex.rst41 .. 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-latest/arch/x86/
Dgen_mmu.py375 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 …]

12345678910>>...17