Home
last modified time | relevance | path

Searched full:table_index (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/scripts/build/
Dgen_isr_tables_parser_carrays.py160 table_index = self.__config.get_swt_table_index(offset, irq)
162 if not 0 <= table_index < len(swt):
164 (table_index, offset, len(swt) - 1))
166 lst = swt[table_index]
173 if len(swt[table_index]) > 0:
174 … self.__log.error(f"multiple registrations at table_index {table_index} for irq {irq} (0x{irq:x})"
175 … + f"\nExisting handler 0x{swt[table_index][0][1]:x}, new handler 0x{func:x}"
178 swt[table_index].append((param, func))
Dgen_isr_tables_parser_local.py196 table_index = self.__config.get_swt_table_index(offset, irq)
198 if not 0 <= table_index < len(swt):
200 (table_index, offset, len(swt) - 1))
209 lst = swt[table_index]
214 if len(swt[table_index]) > 0:
215 … self.__log.error(f"multiple registrations at table_index {table_index} for irq {irq} (0x{irq:x})"
216 … + f"\nExisting section {swt[table_index]}, new section {sname}"
219 swt[table_index].append(sname)
/Zephyr-latest/tests/kernel/gen_isr_table/src/
Dmain.c50 #define TABLE_INDEX(offset) offset + CONFIG_RISCV_RESERVED_IRQ_ISR_TABLES_OFFSET macro
52 #define TABLE_INDEX(offset) offset macro
101 #define TABLE_INDEX(offset) (TEST_IRQ_TABLE_SIZE - ((offset) + 1)) macro
216 TABLE_INDEX(offset), IRQ_LINE(offset)); in check_vector()
218 if (_irq_vector_table[TABLE_INDEX(offset)] != (uint32_t)isr) { in check_vector()
219 TC_PRINT("bad entry %d in vector table\n", TABLE_INDEX(offset)); in check_vector()
235 struct _isr_table_entry *e = &_sw_isr_table[TABLE_INDEX(offset)]; in check_sw_isr()
238 TABLE_INDEX(offset), IRQ_LINE(offset)); in check_sw_isr()
251 void *v = (void *)_irq_vector_table[TABLE_INDEX(offset)]; in check_sw_isr()
/Zephyr-latest/dts/bindings/ieee802154/
Datmel,rf2xx.yaml73 table_index = abs((value_in_dbm - tx-pwr-max) / linear_step);
74 output_power = tx-pwr-table[table_index];
96 table_index = abs((0 - 4) / 0.45) => 8.95 ( round to 9 )
100 the linear step is zero. This means that table_index will be always the
/Zephyr-latest/arch/arm64/core/
Dmmu.c61 static inline unsigned int table_index(uint64_t *pte) in table_index() function
72 unsigned int i = table_index(table); in table_usage()
197 MMU_DEBUG("[%d]%p: ", table_index(pte), pte); in debug_show_pte()
209 MMU_DEBUG("[Table] [%d]%p\n", table_index(table), table); in debug_show_pte()
280 desc, table_index(table), table); in expand_to_table()
427 table_index(src_table), src_table, in dup_table()
428 table_index(dst_table), dst_table); in dup_table()