Home
last modified time | relevance | path

Searched refs:toc (Results 1 – 25 of 202) sorted by relevance

123456789

/openbsd-src/sys/dev/pci/drm/amd/pm/powerplay/smumgr/
H A Dsmu7_smumgr.c369 if (!smu_data->toc) { in smu7_request_smu_load_fw()
370 struct SMU_DRAMData_TOC *toc; in smu7_request_smu_load_fw() local
372 smu_data->toc = kzalloc(sizeof(struct SMU_DRAMData_TOC), GFP_KERNEL); in smu7_request_smu_load_fw()
373 if (!smu_data->toc) in smu7_request_smu_load_fw()
375 toc = smu_data->toc; in smu7_request_smu_load_fw()
376 toc->num_entries = 0; in smu7_request_smu_load_fw()
377 toc->structure_version = 1; in smu7_request_smu_load_fw()
380 UCODE_ID_RLC_G, &toc->entry[toc->num_entries++]), in smu7_request_smu_load_fw()
383 UCODE_ID_CP_CE, &toc->entry[toc->num_entries++]), in smu7_request_smu_load_fw()
386 UCODE_ID_CP_PFP, &toc->entry[toc->num_entries++]), in smu7_request_smu_load_fw()
[all …]
H A Dsmu8_smumgr.c333 struct TOC *toc = (struct TOC *)smu8_smu->toc_buffer.kaddr; in smu8_smu_populate_single_scratch_task() local
334 struct SMU_Task *task = &toc->tasks[smu8_smu->toc_entry_used_count++]; in smu8_smu_populate_single_scratch_task()
370 struct TOC *toc = (struct TOC *)smu8_smu->toc_buffer.kaddr; in smu8_smu_populate_single_ucode_load_task() local
371 struct SMU_Task *task = &toc->tasks[smu8_smu->toc_entry_used_count++]; in smu8_smu_populate_single_ucode_load_task()
409 struct TOC *toc = (struct TOC *)smu8_smu->toc_buffer.kaddr; in smu8_smu_initialize_toc_empty_job_list() local
412 toc->JobList[i] = (uint8_t)IGNORE_JOB; in smu8_smu_initialize_toc_empty_job_list()
420 struct TOC *toc = (struct TOC *)smu8_smu->toc_buffer.kaddr; in smu8_smu_construct_toc_for_vddgfx_enter() local
422 toc->JobList[JOB_GFX_SAVE] = (uint8_t)smu8_smu->toc_entry_used_count; in smu8_smu_construct_toc_for_vddgfx_enter()
438 struct TOC *toc = (struct TOC *)smu8_smu->toc_buffer.kaddr; in smu8_smu_construct_toc_for_vddgfx_exit() local
440 toc->JobList[JOB_GFX_RESTORE] = (uint8_t)smu8_smu->toc_entry_used_count; in smu8_smu_construct_toc_for_vddgfx_exit()
/openbsd-src/sys/arch/hppa/stand/mkboot/
H A Dmkboot.c351 bcddate(char *file, char *toc) in bcddate() argument
358 *toc = (tm->tm_year / 10) << 4; in bcddate()
359 *toc++ |= tm->tm_year % 10; in bcddate()
360 *toc = ((tm->tm_mon+1) / 10) << 4; in bcddate()
361 *toc++ |= (tm->tm_mon+1) % 10; in bcddate()
362 *toc = (tm->tm_mday / 10) << 4; in bcddate()
363 *toc++ |= tm->tm_mday % 10; in bcddate()
364 *toc = (tm->tm_hour / 10) << 4; in bcddate()
365 *toc++ |= tm->tm_hour % 10; in bcddate()
366 *toc in bcddate()
[all...]
/openbsd-src/sys/scsi/
H A Dcd.c888 struct cd_toc *toc; in cdioctl() local
896 toc = dma_alloc(sizeof(*toc), PR_WAITOK | PR_ZERO); in cdioctl()
898 th = &toc->header; in cdioctl()
900 if (len > sizeof(toc->entries) || in cdioctl()
902 dma_free(toc, sizeof(*toc)); in cdioctl()
907 toc, len + sizeof(struct ioc_toc_header), 0); in cdioctl()
909 dma_free(toc, sizeof(*toc)); in cdioctl()
916 cte = &toc->entries[ntracks]; in cdioctl()
934 error = copyout(toc->entries, te->data, len); in cdioctl()
935 dma_free(toc, sizeof(*toc)); in cdioctl()
[all …]
/openbsd-src/lib/libc/arch/powerpc64/sys/
H A Dbrk.S39 addis %r5, %r2, .LC0@toc@ha
40 ld %r5, .LC0@toc@l(%r5) /* # %r5 = &_end */
49 addis %r6, %r2, __curbrk@toc@ha
50 addi %r6, %r6, __curbrk@toc@l /* # %r6 = &__curbrk */
73 .section .toc,"aw",@progbits
H A Dsbrk.S46 addis %r6, %r2, __curbrk@toc@ha
47 addi %r6, %r6, __curbrk@toc@l /* # %r6 = &__curbrk */
/openbsd-src/sys/arch/powerpc64/include/
H A Dasm.h45 addis %r11, %r2, _TMP_LABEL(y)@toc@ha; \
47 addi %r0, %r11, _TMP_LABEL(y)@toc@l; \
66 addis reg, %r2, (__retguard_ ## x)@toc@ha; \
67 ld reg, ((__retguard_ ## x)@toc@l)(reg); \
72 addis %r12, %r2, (__retguard_ ## x)@toc@ha; \
73 ld %r12, ((__retguard_ ## x)@toc@l)(%r12); \
/openbsd-src/sys/arch/sparc64/dev/
H A Dsbbc.c187 struct sbbc_sram_toc *toc; in sbbc_attach() local
251 toc = (struct sbbc_sram_toc *)(sc->sc_sram + sc->sc_sram_toc); in sbbc_attach()
253 for (i = 0; i < toc->toc_ntags; i++) { in sbbc_attach()
254 if (strcmp(toc->toc_tag[i].tag_key, "SOLSCIE") == 0) in sbbc_attach()
256 (sc->sc_sram + toc->toc_tag[i].tag_offset); in sbbc_attach()
257 if (strcmp(toc->toc_tag[i].tag_key, "SOLSCIR") == 0) in sbbc_attach()
259 (sc->sc_sram + toc->toc_tag[i].tag_offset); in sbbc_attach()
260 if (strcmp(toc->toc_tag[i].tag_key, "SCSOLIE") == 0) in sbbc_attach()
262 (sc->sc_sram + toc->toc_tag[i].tag_offset); in sbbc_attach()
263 if (strcmp(toc->toc_tag[i].tag_key, "SCSOLIR") == 0) in sbbc_attach()
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/config/
H A Dmh-ppc-aix2 # Compile Ada files with minimal-toc. The primary focus is gnatlib, so
5 # compiler with -mminimal-toc does not cause any harm.
6 BOOT_ADAFLAGS = -mminimal-toc
/openbsd-src/gnu/gcc/config/
H A Dmh-ppc-aix2 # Compile Ada files with minimal-toc. The primary focus is gnatlib, so
5 # compiler with -mminimal-toc does not cause any harm.
6 BOOT_ADAFLAGS = -mminimal-toc
/openbsd-src/sys/arch/powerpc64/powerpc64/
H A Dlocore.S67 addis %r1, %r2, tmpstack_end@toc@ha
68 addi %r1, %r1, tmpstack_end@toc@l
100 addis %r3, %r2, cpu_idle_state_psscr@toc@ha
101 ld %r3, cpu_idle_state_psscr@toc@l(%r3)
116 addis %r3, %r2, cpu_idle_state_psscr@toc@ha
117 ld %r3, cpu_idle_state_psscr@toc@l(%r3)
273 addis %r9, %r2, .Lkcopyfault@toc@ha
274 addi %r9, %r9, .Lkcopyfault@toc@l
331 addis %r9, %r2, .Lcopystrfault@toc@ha
332 addi %r9, %r9, .Lcopystrfault@toc@l
[all …]
/openbsd-src/libexec/ld.so/powerpc64/
H A Dldasm.S54 addis %r18, %r2, _DYNAMIC@toc@ha
55 addi %r18, %r18, _DYNAMIC@toc@l
83 addis %r7, %r2, _dl_dtors@toc@ha
84 addi %r7, %r7, _dl_dtors@toc@l
93 # r2 ld.so toc is loaded on entry to this function.
/openbsd-src/gnu/usr.bin/binutils-2.17/ld/scripttempl/
H A Dppcpe.sc118 The ".private.toc" sections are generated by the ppc bfd. The
119 .toc variable is generated by gas, and resolved here. It is
121 needs the address of the module's toc). The only thing
124 is to initialize the .toc value to 32K past the start of the
125 actual toc, and subtract 32K from all references, thus using
138 .toc = . + 32768;
139 *(.private.toc);
/openbsd-src/gnu/usr.bin/binutils/ld/scripttempl/
H A Dppcpe.sc118 The ".private.toc" sections are generated by the ppc bfd. The
119 .toc variable is generated by gas, and resolved here. It is
121 needs the address of the module's toc). The only thing
124 is to initialize the .toc value to 32K past the start of the
125 actual toc, and subtract 32K from all references, thus using
138 .toc = . + 32768;
139 *(.private.toc);
/openbsd-src/lib/libc/arch/powerpc64/gen/
H A Dsigsetjmp.S75 addis %r7, %r2, __jmpxor@toc@ha
76 addi %r7, %r7, __jmpxor@toc@l
133 addis %r9, %r2, __jmpxor@toc@ha
134 addi %r9, %r9, __jmpxor@toc@l
H A Dsetjmp.S83 addis %r7, %r2, __jmpxor@toc@ha
84 addi %r7, %r7, __jmpxor@toc@l
146 addis %r9, %r2, __jmpxor@toc@ha
147 addi %r9, %r9, __jmpxor@toc@l
/openbsd-src/gnu/usr.bin/binutils-2.17/ld/emultempl/
H A Dppc64elf.em52 /* Whether to run toc optimization. */
55 /* Whether to allow multiple toc sections. */
127 einfo ("%X%P: can not edit %s %E\n", "toc");
361 asection *toc = bfd_get_section_by_name (output_bfd, ".toc");
362 if (toc != NULL
363 && bfd_section_size (output_bfd, toc) > 0x10000)
485 { "no-toc-optimize", no_argument, NULL, OPTION_NO_TOC_OPT },
486 { "no-multi-toc", no_argument, NULL, OPTION_NO_MULTI_TOC },
519 --no-toc-optimize Don'\''t optimize the TOC section.\n"
522 --no-multi-toc Disallow automatic multiple toc sections.\n"
/openbsd-src/gnu/usr.bin/texinfo/makeinfo/
H A Dsectioning.c238 || section_alist[i].toc != section_alist[index_offset].toc) in what_section()
360 if (section_alist[search_sectioning (cmd)].toc == TOC_YES) in sectioning_underscore()
381 && section_alist[search_sectioning (cmd)].toc == TOC_YES) in sectioning_underscore()
493 if (section_alist[index].toc == TOC_YES) in insert_and_underscore()
587 if (section_alist[index].toc == TOC_YES) in sectioning_html()
/openbsd-src/gnu/usr.bin/gcc/gcc/config/rs6000/
H A Dxcoff.h67 read_only_data, private_data, read_only_private_data, toc, bss
122 if (in_section != toc) \
128 if (in_section != toc) \
131 in_section = toc; \
H A Dt-aix5248 # Compile Ada files with minimal-toc. The primary focus is gnatlib, so
51 # compiler with -mminimal-toc does not cause any harm.
52 T_ADAFLAGS = -mminimal-toc
H A Dt-aix4367 # Compile Ada files with minimal-toc. The primary focus is gnatlib, so
70 # compiler with -mminimal-toc does not cause any harm.
71 T_ADAFLAGS = -mminimal-toc
/openbsd-src/gnu/usr.bin/binutils/gdb/config/powerpc/
H A Dppc64-linux.mh12 # -mfull-toc (the default), so we need to ask GCC to use as few TOC
14 MH_CFLAGS= -mminimal-toc
/openbsd-src/gnu/gcc/gcc/config/rs6000/
H A Drs6000.opt142 mno-fp-in-toc
146 mfp-in-toc
150 mno-sum-in-toc
154 msum-in-toc
165 mminimal-toc
169 mfull-toc
H A Dx-linux642 X_CFLAGS = -mminimal-toc
/openbsd-src/sys/arch/powerpc64/conf/
H A Dld.script66 .toc : { *(.toc) }

123456789