/Zephyr-latest/tests/bsim/bluetooth/mesh/tests_scripts/large_comp_data/ |
D | get_comp130_data_split_dfu.sh | 26 lcd_cli_split_comp_data_request -- -argstest page=130 comp-changed-mode=1 31 lcd_cli_split_comp_data_request -- -argstest page=130 comp-changed-mode=1
|
D | get_comp1_data_split_dfu.sh | 26 lcd_cli_split_comp_data_request -- -argstest page=1 comp-changed-mode=1 31 lcd_cli_split_comp_data_request -- -argstest page=1 comp-changed-mode=1
|
D | get_comp2_data_split_dfu.sh | 26 lcd_cli_split_comp_data_request -- -argstest page=2 comp-changed-mode=1 31 lcd_cli_split_comp_data_request -- -argstest page=2 comp-changed-mode=1
|
/Zephyr-latest/subsys/storage/stream/ |
D | stream_flash.c | 50 struct flash_pages_info page; in settings_direct_loader() local 58 &page); in settings_direct_loader() 63 ctx->last_erased_page_start_offset = page.start_offset; in settings_direct_loader() 81 struct flash_pages_info page; in stream_flash_erase_page() local 97 rc = flash_get_page_info_by_offs(ctx->fdev, off, &page); in stream_flash_erase_page() 103 if (ctx->last_erased_page_start_offset == page.start_offset) { in stream_flash_erase_page() 107 LOG_DBG("Erasing page at offset 0x%08lx", (long)page.start_offset); in stream_flash_erase_page() 109 rc = flash_erase(ctx->fdev, page.start_offset, page.size); in stream_flash_erase_page() 114 ctx->last_erased_page_start_offset = page.start_offset; in stream_flash_erase_page()
|
/Zephyr-latest/boards/shields/pmod_acl/doc/ |
D | index.rst | 33 - `Pmod ACL product page`_ 36 - `ADXL345 product page`_ 39 .. _Pmod ACL product page: 48 .. _ADXL345 product page:
|
/Zephyr-latest/include/zephyr/arch/x86/ia32/scripts/ |
D | shared_kernel_pages.ld | 10 /* Special page containing supervisor data that is still mapped in 11 * user mode page tables. IDT, GDT, TSSes, trampoline stack, and 12 * any LDT must go here as they always must live in a page that is 63 "shared kernel area is not one memory page");
|
/Zephyr-latest/drivers/xen/ |
D | gnttab.c | 153 void *page; in gnttab_alloc_and_grant() local 159 page = k_aligned_alloc(XEN_PAGE_SIZE, XEN_PAGE_SIZE); in gnttab_alloc_and_grant() 160 if (page == NULL) { in gnttab_alloc_and_grant() 164 gfn = xen_virt_to_gfn(page); in gnttab_alloc_and_grant() 167 *map = page; in gnttab_alloc_and_grant() 225 xen_pfn_t page = xen_virt_to_gfn(page_addr); in gnttab_put_page() local 237 set_xen_guest_handle(reservation.extent_start, &page); in gnttab_put_page() 242 page, ret); in gnttab_put_page()
|
/Zephyr-latest/kernel/ |
D | Kconfig.vm | 28 this for non-pinned page frames). 42 page tables are in use, they all have the same virtual-to-physical 54 in page tables, the equation: 70 how much total memory can be used for page tables. 111 hex "Size of smallest granularity MMU page" 115 support multiple page sizes, put the smallest one here. 136 bool "Allow interrupts during page-ins/outs" 140 latency, but any code running in interrupt context that page faults 146 If this option is disabled, the page fault servicing logic 148 ISRs may also page fault. [all …]
|
/Zephyr-latest/boards/shields/eval_adxl362_ardz/doc/ |
D | index.rst | 33 - `EVAL-ADXL362-ARDZ product page`_ 36 - `ADXL362 product page`_ 39 .. _EVAL-ADXL362-ARDZ product page: 48 .. _ADXL362 product page:
|
/Zephyr-latest/boards/shields/eval_adxl372_ardz/doc/ |
D | index.rst | 33 - `EVAL-ADXL372-ARDZ product page`_ 36 - `ADXL372 product page`_ 39 .. _EVAL-ADXL372-ARDZ product page: 48 .. _ADXL372 product page:
|
/Zephyr-latest/scripts/net/ |
D | enumerate_http_status.py | 32 page = requests.get('https://developer.mozilla.org/en-US/docs/Web/HTTP/Status') variable 33 tree = html.fromstring(page.content)
|
/Zephyr-latest/tests/subsys/dfu/mcuboot_multi/src/ |
D | main.c | 23 struct flash_pages_info page; in erase_image_status_page() local 30 &page); in erase_image_status_page() 33 ret = flash_erase(sf_dev, page.start_offset, page.size); in erase_image_status_page()
|
/Zephyr-latest/drivers/audio/ |
D | tlv320dac310x.c | 187 if (dev_data->reg_addr_cache.page != reg.page) { in codec_write_reg() 188 i2c_reg_write_byte_dt(&dev_cfg->bus, 0, reg.page); in codec_write_reg() 189 dev_data->reg_addr_cache.page = reg.page; in codec_write_reg() 194 reg.page, reg.reg_addr, val); in codec_write_reg() 204 if (dev_data->reg_addr_cache.page != reg.page) { in codec_read_reg() 205 i2c_reg_write_byte_dt(&dev_cfg->bus, 0, reg.page); in codec_read_reg() 206 dev_data->reg_addr_cache.page = reg.page; in codec_read_reg() 211 reg.page, reg.reg_addr, *val); in codec_read_reg()
|
/Zephyr-latest/boards/shields/reyax_lora/doc/ |
D | index.rst | 12 `Reyax RYLR page`_. 28 .. _Reyax RYLR page:
|
/Zephyr-latest/drivers/flash/ |
D | flash_page_layout.c | 81 size_t block, num_blocks, page = 0, i; in flash_page_foreach() local 92 page_info.index = page; in flash_page_foreach() 99 page++; in flash_page_foreach()
|
D | flash_stm32wbax.c | 161 int page; in erase_page() local 175 page = offset / FLASH_PAGE_SIZE; in erase_page() 176 LOG_DBG("Erase page %d\n", page); in erase_page() 181 regs->NSCR |= (page << FLASH_STM32_NSPNB_POS); in erase_page()
|
D | flash_stm32f1x.c | 63 static void erase_page_begin(FLASH_TypeDef *regs, unsigned int page) in erase_page_begin() argument 67 regs->AR = FLASH_STM32_BASE_ADDRESS + page * FLASH_PAGE_SIZE; in erase_page_begin() 101 static void erase_page_begin(FLASH_TypeDef *regs, unsigned int page) in erase_page_begin() argument 104 FLASH_STM32_BASE_ADDRESS + page * FLASH_PAGE_SIZE); in erase_page_begin()
|
/Zephyr-latest/arch/xtensa/core/ |
D | ptables.c | 219 uint32_t page, *table; in map_memory_range() local 224 for (page = start; page < end; page += CONFIG_MMU_PAGE_SIZE) { in map_memory_range() 225 uint32_t pte = XTENSA_MMU_PTE(page, in map_memory_range() 229 uint32_t l2_pos = XTENSA_MMU_L2_POS(page); in map_memory_range() 230 uint32_t l1_pos = XTENSA_MMU_L1_POS(page); in map_memory_range() 236 "map 0x%08x\n", page); in map_memory_range() 355 uintptr_t page; in arch_reserved_pages_update() local 358 for (page = CONFIG_SRAM_BASE_ADDRESS, idx = 0; in arch_reserved_pages_update() 359 page < (uintptr_t)z_mapped_start; in arch_reserved_pages_update() 360 page += CONFIG_MMU_PAGE_SIZE, idx++) { in arch_reserved_pages_update() [all …]
|
/Zephyr-latest/doc/_doxygen/ |
D | doxygen-awesome-zephyr.css | 18 --searchbar-background: var(--page-background-color); 19 --searchbar-foreground: var(--page-foreground-color); 39 --side-nav-foreground: var(--page-foreground-color); 55 --side-nav-foreground: var(--page-foreground-color);
|
D | doxygen-awesome.css | 36 /* page base colors */ 37 --page-background-color: #ffffff; 38 --page-foreground-color: #2f4153; 39 --page-secondary-foreground-color: #6f7e8e; 49 …ngs. Most components reference these values for spacing, to provide uniform spacing on the page. */ 67 --page-font-size: 15.6px; 73 …/* content text properties. These only affect the page content, not the navigation or any other ui… 75 …centered and constraint in it's width. To make the content fill the whole page, set the variable t… 108 --tablehead-foreground: var(--page-foreground-color); 116 --menu-focus-foreground: var(--page-background-color); [all …]
|
/Zephyr-latest/doc/contribute/ |
D | index.rst | 7 improving documentation, or proposing new features, your efforts are highly appreciated. This page 25 This page is a mandatory read for first-time contributors as it contains important information on 37 This page describes these guidelines and introduces important considerations regarding the use of 58 This page provides some simple guidelines for writing documentation using the reSTructuredText 64 This page describes how to build the Zephyr documentation locally. 80 This page describes in more details when and how to import external source code into Zephyr. 88 in binary form, this page describes the process and guidelines for :ref:`contributing binary
|
/Zephyr-latest/subsys/bluetooth/mesh/ |
D | access.h | 26 size_t bt_mesh_comp_page_size(uint8_t page); 67 int bt_mesh_comp_read(struct net_buf_simple *buf, uint8_t page); 75 int bt_mesh_comp_data_get_page(struct net_buf_simple *buf, size_t page, size_t offset);
|
D | blob_io_flash.c | 71 struct flash_pages_info page; in block_start() local 81 flash->offset + block->offset, &page); in block_start() 86 erase_size = page.size * DIV_ROUND_UP(block->size, page.size); in block_start()
|
/Zephyr-latest/boards/telink/tlsr9518adk80d/ |
D | Kconfig.defconfig | 16 # equal to flash page. tlsr9518adk80d boards use external P25Q16 IC as 17 # flesh memory. Flash page size of the IC is 256 bytes. So that, it is
|
/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.
|