Lines Matching refs:kind
312 for kind in SectionKind:
315 out.add(kind)
336 kind: SectionKind,
351 if full_list_of_sections[kind]:
354 tmp = print_linker_sections(full_list_of_sections[kind])
355 if region_is_default_ram(memory_type) and kind in (SectionKind.DATA, SectionKind.BSS):
358 if not region_is_default_ram(memory_type) and kind is SectionKind.RODATA:
363 …linker_string += LINKER_SECTION_SEQ_MPU.format(memory_type.lower(), kind.value, memory_type.upper(…
364 … kind, tmp, load_address_string, align_size)
366 … if region_is_default_ram(memory_type) and kind in (SectionKind.TEXT, SectionKind.LITERAL):
368 …linker_string += LINKER_SECTION_SEQ_MPU.format(memory_type.lower(), kind.value, memory_type.upper(…
369 … kind, tmp, load_address_string, align_size)
371 … linker_string += LINKER_SECTION_SEQ.format(memory_type.lower(), kind.value, memory_type.upper(),
372 kind, tmp, load_address_string)
374 …linker_string += SECTION_LOAD_MEMORY_SEQ.format(memory_type.lower(), kind.value, memory_type.upper…
375 kind)
424 for kind in (SectionKind.TEXT, SectionKind.RODATA, SectionKind.DATA):
425 if region_is_default_ram(memory_type) and kind is SectionKind.DATA:
428 if kind in generate_sections and full_list_of_sections[kind]:
429 code_generation["copy_code"] += MEMCPY_TEMPLATE.format(memory_type.lower(), kind.value)
431 memory_type.lower(), kind.value)