Home
last modified time | relevance | path

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

12

/lk-master/external/platform/nrfx/doc/buildfiles/
A Dextra_stylesheet.css50 table.memberdecls, table.directory, table.memname {
62 table.memberdecls tr:hover td, table.memname tr:hover td {
66 table.directory tr.even, table.directory tr.odd {
70 table.memberdecls td, table.directory td, table.directory td.desc {
96 table.memname td, table.params td, table.retval td {
106 table.fieldtable, table.params, table.retval {
117 table.blank, table.blank tr th, table.blank tr td {
282 table { selector
295 table th {
314 table tr {
[all …]
/lk-master/external/platform/pico/rp2_common/pico_bootrom/
A Dbootrom.c13 typedef void *(*rom_table_lookup_fn)(uint16_t *table, uint32_t code);
31 bool rom_funcs_lookup(uint32_t *table, unsigned int count) { in rom_funcs_lookup() argument
34 table[i] = (uintptr_t) rom_func_lookup(table[i]); in rom_funcs_lookup()
35 if (!table[i]) ok = false; in rom_funcs_lookup()
/lk-master/external/arch/arm/arm-m/CMSIS/Include/
A Dmpu_armv8.h304 __STATIC_INLINE void ARM_MPU_LoadEx(MPU_Type* mpu, uint32_t rnr, ARM_MPU_Region_t const* table, uin… in ARM_MPU_LoadEx() argument
309 ARM_MPU_OrderedMemcpy(&(mpu->RBAR), &(table->RBAR), rowWordSize); in ARM_MPU_LoadEx()
317 ARM_MPU_OrderedMemcpy(&(mpu->RBAR)+(rnrOffset*2U), &(table->RBAR), c*rowWordSize); in ARM_MPU_LoadEx()
318 table += c; in ARM_MPU_LoadEx()
325 ARM_MPU_OrderedMemcpy(&(mpu->RBAR)+(rnrOffset*2U), &(table->RBAR), cnt*rowWordSize); in ARM_MPU_LoadEx()
334 __STATIC_INLINE void ARM_MPU_Load(uint32_t rnr, ARM_MPU_Region_t const* table, uint32_t cnt) in ARM_MPU_Load() argument
336 ARM_MPU_LoadEx(MPU, rnr, table, cnt); in ARM_MPU_Load()
345 __STATIC_INLINE void ARM_MPU_Load_NS(uint32_t rnr, ARM_MPU_Region_t const* table, uint32_t cnt) in ARM_MPU_Load_NS() argument
347 ARM_MPU_LoadEx(MPU_NS, rnr, table, cnt); in ARM_MPU_Load_NS()
A Dmpu_armv7.h264 __STATIC_INLINE void ARM_MPU_Load(ARM_MPU_Region_t const* table, uint32_t cnt) in ARM_MPU_Load() argument
268 ARM_MPU_OrderedMemcpy(&(MPU->RBAR), &(table->RBAR), MPU_TYPE_RALIASES*rowWordSize); in ARM_MPU_Load()
269 table += MPU_TYPE_RALIASES; in ARM_MPU_Load()
272 ARM_MPU_OrderedMemcpy(&(MPU->RBAR), &(table->RBAR), cnt*rowWordSize); in ARM_MPU_Load()
/lk-master/arch/x86/64/
A Dmmu.c469 vaddr_t *table, *next_table_addr, value; in x86_mmu_unmap_entry() local
474 table = (vaddr_t *)(table_entry & X86_PG_FRAME); in x86_mmu_unmap_entry()
475 LTRACEF_LEVEL(2, "table %p\n", table); in x86_mmu_unmap_entry()
481 next_table_addr = (vaddr_t *)X86_PHYS_TO_VIRT(table[offset]); in x86_mmu_unmap_entry()
483 if ((X86_PHYS_TO_VIRT(table[offset]) & X86_MMU_PG_P)== 0) in x86_mmu_unmap_entry()
491 if ((X86_PHYS_TO_VIRT(table[offset]) & X86_MMU_PG_P) == 0) in x86_mmu_unmap_entry()
499 if ((X86_PHYS_TO_VIRT(table[offset]) & X86_MMU_PG_P) == 0) in x86_mmu_unmap_entry()
507 if ((X86_PHYS_TO_VIRT(table[offset]) & X86_MMU_PG_P) == 0) in x86_mmu_unmap_entry()
534 if ((X86_PHYS_TO_VIRT(table[offset]) & X86_MMU_PG_P) != 0) { in x86_mmu_unmap_entry()
536 value = table[offset]; in x86_mmu_unmap_entry()
[all …]
/lk-master/arch/x86/32/
A Dmmu.c386 map_addr_t *table, *next_table_addr, value; in x86_mmu_unmap_entry() local
389 table = (map_addr_t *)(X86_VIRT_TO_PHYS(table_entry) & X86_PG_FRAME); in x86_mmu_unmap_entry()
395 next_table_addr = (map_addr_t *)X86_PHYS_TO_VIRT(table[offset]); in x86_mmu_unmap_entry()
396 if ((X86_PHYS_TO_VIRT(table[offset]) & X86_MMU_PG_P) == 0) in x86_mmu_unmap_entry()
402 next_table_addr = (map_addr_t *)X86_PHYS_TO_VIRT(table[offset]); in x86_mmu_unmap_entry()
403 if ((X86_PHYS_TO_VIRT(table[offset]) & X86_MMU_PG_P) == 0) in x86_mmu_unmap_entry()
408 next_table_addr = (map_addr_t *)X86_PHYS_TO_VIRT(table[offset]); in x86_mmu_unmap_entry()
409 if ((X86_PHYS_TO_VIRT(table[offset]) & X86_MMU_PG_P) == 0) in x86_mmu_unmap_entry()
432 if ((X86_PHYS_TO_VIRT(table[offset]) & X86_MMU_PG_P) != 0) { in x86_mmu_unmap_entry()
434 value = table[offset]; in x86_mmu_unmap_entry()
[all …]
/lk-master/platform/pc/
A Dplatform.c269 …const struct acpi_mcfg_table *table = (const struct acpi_mcfg_table *)acpi_get_table_by_sig(ACPI_M… in platform_init() local
270 if (table) { in platform_init()
271 if (table->header.length >= sizeof(*table) + sizeof(struct acpi_mcfg_entry)) { in platform_init()
272 const struct acpi_mcfg_entry *entry = (const void *)(table + 1); in platform_init()
/lk-master/lib/fs/fat32/
A Dfile.c38 uint32_t *table = (uint32_t *)cache_ptr; in fat32_next_cluster_in_chain() local
39 next_cluster = table[fat_index]; in fat32_next_cluster_in_chain()
42 uint16_t *table = (uint16_t *)cache_ptr; in fat32_next_cluster_in_chain() local
43 next_cluster = table[fat_index]; in fat32_next_cluster_in_chain()
/lk-master/external/platform/pico/rp2_common/pico_bootrom/include/pico/
A Dbootrom.h58 bool rom_funcs_lookup(uint32_t *table, unsigned int count);
/lk-master/external/lib/cksum/
A Dcrc32.c168 local void write_table(out, table) in write_table() argument
170 const z_crc_t FAR *table;
176 (unsigned long)(table[n]),
/lk-master/lib/libc/
A Dprintf.c141 const char *table = (flag & CAPSFLAG) ? hextable_caps : hextable; in longlong_to_hexstring() local
148 buf[--pos] = table[digit]; in longlong_to_hexstring()
343 const char *table = (flag & CAPSFLAG) ? hextable_caps : hextable; in double_to_hexstring() local
363 buf[pos++] = table[digit]; in double_to_hexstring()
/lk-master/target/sifive-unleashed/dt/
A Dhifive-unleashed-a00.dts44 fu540_c000_opp_table: opp-table {
/lk-master/arch/or1k/
A Dlinker.ld11 /* vector table goes at 0 */
/lk-master/external/platform/nrfx/mdk/
A Diar_startup_nrf51.s25 ; The vector table is normally located at address 0.
29 ; table register (VTOR) is initialized to this address if != 0.
A Diar_startup_nrf52805.s25 ; The vector table is normally located at address 0.
29 ; table register (VTOR) is initialized to this address if != 0.
A Diar_startup_nrf5340_network.s25 ; The vector table is normally located at address 0.
29 ; table register (VTOR) is initialized to this address if != 0.
A Diar_startup_nrf52811.s25 ; The vector table is normally located at address 0.
29 ; table register (VTOR) is initialized to this address if != 0.
A Diar_startup_nrf52820.s25 ; The vector table is normally located at address 0.
29 ; table register (VTOR) is initialized to this address if != 0.
A Diar_startup_nrf52.s25 ; The vector table is normally located at address 0.
29 ; table register (VTOR) is initialized to this address if != 0.
A Diar_startup_nrf52810.s25 ; The vector table is normally located at address 0.
29 ; table register (VTOR) is initialized to this address if != 0.
A Diar_startup_nrf52833.s25 ; The vector table is normally located at address 0.
29 ; table register (VTOR) is initialized to this address if != 0.
A Diar_startup_nrf52840.s25 ; The vector table is normally located at address 0.
29 ; table register (VTOR) is initialized to this address if != 0.
A Diar_startup_nrf5340_application.s25 ; The vector table is normally located at address 0.
29 ; table register (VTOR) is initialized to this address if != 0.
/lk-master/arch/microblaze/
A Dlinker.ld11 /* vector table goes at 0, for qemu target, at least */
/lk-master/external/platform/pico/rp2_common/pico_standard_link/
A Dmemmap_no_flash.ld36 entry (ELF entry point), are *first* in the image, and the vector table

Completed in 30 milliseconds

12