| /netbsd-src/sys/external/bsd/drm2/dist/drm/amd/powerplay/smumgr/ |
| H A D | amdgpu_smu7_smumgr.c | 387 if (!smu_data->toc) { in smu7_request_smu_load_fw() 388 struct SMU_DRAMData_TOC *toc; in smu7_request_smu_load_fw() local 390 smu_data->toc = kzalloc(sizeof(struct SMU_DRAMData_TOC), GFP_KERNEL); in smu7_request_smu_load_fw() 391 if (!smu_data->toc) in smu7_request_smu_load_fw() 393 toc = smu_data->toc; in smu7_request_smu_load_fw() 394 toc->num_entries = 0; in smu7_request_smu_load_fw() 395 toc->structure_version = 1; in smu7_request_smu_load_fw() 398 UCODE_ID_RLC_G, &toc->entry[toc->num_entries++]), in smu7_request_smu_load_fw() 401 UCODE_ID_CP_CE, &toc->entry[toc->num_entries++]), in smu7_request_smu_load_fw() 404 UCODE_ID_CP_PFP, &toc->entry[toc->num_entries++]), in smu7_request_smu_load_fw() [all …]
|
| H A D | amdgpu_smu8_smumgr.c | 340 struct TOC *toc = (struct TOC *)smu8_smu->toc_buffer.kaddr; in smu8_smu_populate_single_scratch_task() local 341 struct SMU_Task *task = &toc->tasks[smu8_smu->toc_entry_used_count++]; in smu8_smu_populate_single_scratch_task() 377 struct TOC *toc = (struct TOC *)smu8_smu->toc_buffer.kaddr; in smu8_smu_populate_single_ucode_load_task() local 378 struct SMU_Task *task = &toc->tasks[smu8_smu->toc_entry_used_count++]; in smu8_smu_populate_single_ucode_load_task() 416 struct TOC *toc = (struct TOC *)smu8_smu->toc_buffer.kaddr; in smu8_smu_initialize_toc_empty_job_list() local 419 toc->JobList[i] = (uint8_t)IGNORE_JOB; in smu8_smu_initialize_toc_empty_job_list() 427 struct TOC *toc = (struct TOC *)smu8_smu->toc_buffer.kaddr; in smu8_smu_construct_toc_for_vddgfx_enter() local 429 toc->JobList[JOB_GFX_SAVE] = (uint8_t)smu8_smu->toc_entry_used_count; in smu8_smu_construct_toc_for_vddgfx_enter() 445 struct TOC *toc = (struct TOC *)smu8_smu->toc_buffer.kaddr; in smu8_smu_construct_toc_for_vddgfx_exit() local 447 toc->JobList[JOB_GFX_RESTORE] = (uint8_t)smu8_smu->toc_entry_used_count; in smu8_smu_construct_toc_for_vddgfx_exit()
|
| /netbsd-src/sys/dev/isa/ |
| H A D | mcd.c | 145 union mcd_qchninfo toc[MCD_MAXTOCS]; member 1434 sc->toc[trk].toc.idx_no = 0x00; in mcd_read_toc() 1439 if (q.toc.trk_no != 0x00 || q.toc.idx_no == 0x00) in mcd_read_toc() 1441 idx = bcd2bin(q.toc.idx_no); in mcd_read_toc() 1443 sc->toc[idx].toc.idx_no == 0x00) { in mcd_read_toc() 1444 sc->toc[idx] = q; in mcd_read_toc() 1458 sc->toc[idx].toc.control = sc->toc[idx-1].toc.control; in mcd_read_toc() 1459 sc->toc[idx].toc.addr_type = sc->toc[idx-1].toc.addr_type; in mcd_read_toc() 1460 sc->toc[idx].toc.trk_no = 0x00; in mcd_read_toc() 1461 sc->toc[idx].toc.idx_no = 0xaa; in mcd_read_toc() [all …]
|
| /netbsd-src/distrib/notes/ |
| H A D | Makefile.inc | 24 TOCS= ${TARG}.PostScript.toc ${TARG}.ASCII.toc ${TARG}.HTML.toc \ 25 ${TARG}.more.toc 119 ${TARG}.PostScript.toc: ${SRCS} 125 ${TARG}.ASCII.toc: ${SRCS} 129 ${TARG}.HTML.toc: ${SRCS} 133 ${TARG}.more.toc: ${SRCS} 144 ${TOCS:S/.toc$/.toc.tmp/g}
|
| /netbsd-src/sys/arch/hppa/stand/mkboot/ |
| H A D | mkboot.c | 414 bcddate(char *file, char *toc) in bcddate() 426 *toc = (tm->tm_year / 10) << 4; in bcddate() 427 *toc++ |= tm->tm_year % 10; in bcddate() 428 *toc = ((tm->tm_mon+1) / 10) << 4; in bcddate() 429 *toc++ |= (tm->tm_mon+1) % 10; in bcddate() 430 *toc = (tm->tm_mday / 10) << 4; in bcddate() 431 *toc++ |= tm->tm_mday % 10; in bcddate() 432 *toc = (tm->tm_hour / 10) << 4; in bcddate() 433 *toc++ |= tm->tm_hour % 10; in bcddate() 434 *toc in bcddate() 413 bcddate(char * file,char * toc) bcddate() argument [all...] |
| /netbsd-src/sys/arch/dreamcast/dev/g1/ |
| H A D | gdrom.c | 232 int gdrom_read_toc(struct gdrom_softc *sc, struct gd_toc *toc) in gdrom_read_toc() argument 253 (void *)toc, sizeof(struct gd_toc), in gdrom_read_toc() 378 struct gd_toc toc; in gdromopen() local 402 error = gdrom_read_toc(sc, &toc); in gdromopen() 529 struct gd_toc toc; in gdromioctl() local 540 error = gdrom_read_toc(sc, &toc); in gdromioctl() 549 unsigned char *ptr = (unsigned char *)&toc; in gdromioctl() 553 for(i = 0; i < sizeof(toc); ++i) { in gdromioctl() 563 for (track = TOC_TRACK(toc.last); in gdromioctl() 564 track >= TOC_TRACK(toc.first); in gdromioctl() [all …]
|
| /netbsd-src/sys/arch/dreamcast/dev/ |
| H A D | gdrom.c | 328 int gdrom_read_toc(struct gdrom_softc *sc, struct gd_toc *toc) in gdrom_read_toc() argument 347 return gdrom_command_sense(sc, cmd, toc, sizeof(struct gd_toc), NULL); in gdrom_read_toc() 446 struct gd_toc toc; in gdromopen() local 470 error = gdrom_read_toc(sc, &toc); in gdromopen() 589 struct gd_toc toc; in gdromioctl() local 600 error = gdrom_read_toc(sc, &toc); in gdromioctl() 609 unsigned char *ptr = (unsigned char *)&toc; in gdromioctl() 613 for(i = 0; i < sizeof(toc); ++i) { in gdromioctl() 623 for (track = TOC_TRACK(toc.last); in gdromioctl() 624 track >= TOC_TRACK(toc.first); in gdromioctl() [all …]
|
| /netbsd-src/sys/dev/scsipi/ |
| H A D | cd.c | 1109 cdreadmsaddr(struct cd_softc *cd, struct cd_formatted_toc *toc, int *addr) in cdreadmsaddr() argument 1115 error = cd_read_toc(cd, CD_TOC_FORM, 0, 0, toc, in cdreadmsaddr() 1122 cte = &toc->entries[0]; in cdreadmsaddr() 1125 toc->header.len = le16toh(toc->header.len); in cdreadmsaddr() 1128 toc->header.len = be16toh(toc->header.len); in cdreadmsaddr() 1131 *addr = (toc->header.len >= 10 && cte->track > 1) ? in cdreadmsaddr() 1160 struct cd_formatted_toc *toc) in do_cdioreadentries() argument 1169 th = &toc in do_cdioreadentries() 1208 struct cd_formatted_toc toc; cdioctl() local 1466 struct cd_formatted_toc toc; cd_label() local 1662 cd_play_tracks(struct cd_softc * cd,struct cd_formatted_toc * toc,int strack,int sindex,int etrack,int eindex) cd_play_tracks() argument 1770 cd_read_toc(struct cd_softc * cd,int respf,int mode,int start,struct cd_formatted_toc * toc,int len,int flags,int control) cd_read_toc() argument 1797 cd_load_toc(struct cd_softc * cd,int respf,struct cd_formatted_toc * toc,int flags) cd_load_toc() argument 3085 struct scsipi_toc_formatted *toc; mmc_gettrackinfo_dvdrom() local [all...] |
| /netbsd-src/sys/arch/hp300/stand/mkboot/ |
| H A D | mkboot.c | 297 bcddate(char *name, char *toc) in bcddate() argument 308 *toc++ = bintobcd(tm->tm_mon + 1); in bcddate() 309 *toc++ = bintobcd(tm->tm_mday); in bcddate() 310 *toc++ = bintobcd(tm->tm_year); in bcddate() 311 *toc++ = bintobcd(tm->tm_hour); in bcddate() 312 *toc++ = bintobcd(tm->tm_min); in bcddate() 313 *toc = bintobcd(tm->tm_sec); in bcddate()
|
| /netbsd-src/share/man/man0/ |
| H A D | tocrc | 38 tmp=/tmp/toc$$ 58 : permuted index and toc files 77 >toc$x
|
| /netbsd-src/external/lgpl3/gmp/dist/mpn/powerpc64/ |
| H A D | elf.m4 | 38 dnl Called: PROLOGUE_cpu(GSYM_PREFIX`'foo[,toc]) 44 `ifelse(`$2',toc,, 53 ifelse(`$2',toc,` 85 ` .section ".toc", "aw" 87 `ld $1, ..$2@toc(2)')
|
| H A D | aix.m4 | 36 .toc') 38 dnl Called: PROLOGUE_cpu(GSYM_PREFIX`'foo[,toc]) 45 `ifelse(`$2',toc,, 64 ` .toc
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/ |
| H A D | NTMakefile | 82 $(OBJ)\heimdal\toc.hhc: $(OBJ)\heimdal\Copyrights-and-Licenses.html 83 $(PERL) $(SRC)\cf\w32-hh-toc-from-info.pl -o$@ $** 88 $(DOCDIR)\heimdal.chm: $(OBJ)\heimdal\heimdal.hhp $(OBJ)\heimdal\toc.hhc 103 $(OBJ)\hx509\toc.hhc: $(OBJ)\hx509\How-to-use-the-PKCS11-module.html 104 $(PERL) $(SRC)\cf\w32-hh-toc-from-info.pl -o$@ $** 109 $(DOCDIR)\hx509.chm: $(OBJ)\hx509\hx509.hhp $(OBJ)\hx509\toc.hhc
|
| /netbsd-src/external/gpl3/binutils.old/dist/ld/emultempl/ |
| H A D | ppc64elf.em | 63 /* Whether to run toc optimization. */ 66 /* Whether to sort input toc and got sections. */ 69 /* Input .toc sections will be placed in this output section. */ 114 /* We have a .toc section that might be written to at run time. 115 Don't put .toc into the .got output section. */ 128 if (strcmp ((*i)->spec.name, ".toc") == 0) 133 /* Instead, .toc input sections will be mapped to the 134 read/write .toc output section. If user scripts don't 135 provide one then we'll lose toc sorting and multi-toc. */ 136 toc_section_name = ".toc"; [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/ld/emultempl/ |
| H A D | ppc64elf.em | 63 /* Whether to run toc optimization. */ 66 /* Whether to sort input toc and got sections. */ 69 /* Input .toc sections will be placed in this output section. */ 114 /* We have a .toc section that might be written to at run time. 115 Don't put .toc into the .got output section. */ 128 if (strcmp ((*i)->spec.name, ".toc") == 0) 133 /* Instead, .toc input sections will be mapped to the 134 read/write .toc output section. If user scripts don't 135 provide one then we'll lose toc sorting and multi-toc. */ 136 toc_section_name = ".toc"; [all …]
|
| /netbsd-src/external/gpl2/texinfo/dist/makeinfo/ |
| H A D | sectioning.c | 240 || section_alist[i].toc != section_alist[index_offset].toc) in what_section() 361 if (section_alist[search_sectioning (cmd)].toc == TOC_YES) in sectioning_underscore() 382 && section_alist[search_sectioning (cmd)].toc == TOC_YES) in sectioning_underscore() 494 if (section_alist[index].toc == TOC_YES) in insert_and_underscore() 588 if (section_alist[index].toc == TOC_YES) in sectioning_html()
|
| /netbsd-src/lib/libc/arch/powerpc64/sys/ |
| H A D | sbrk.S | 13 addis %r8,%r2,_C_LABEL(__curbrk)@toc@ha 14 ldptru %r6,_C_LABEL(__curbrk)@toc@l(%r8)
|
| H A D | brk.S | 24 addis %r9,%r2,_C_LABEL(__minbrk)@toc@ha 25 ldptru %r5,_C_LABEL(__minbrk)@toc@l(%r9)
|
| H A D | ptrace.S | 32 addis %r7,%r2,_C_LABEL(errno)@toc@ha 33 ldptr %r7,_C_LABEL(errno)@toc@l(%r7)
|
| /netbsd-src/share/man/tools/ |
| H A D | tocrc | 24 : create toc input file for one section only 73 : permuted index and toc files 105 w $MANDIR/man0/toc$x
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/tests/java/ |
| H A D | KerberosInit.java | 48 TextOutputCallback toc = (TextOutputCallback)callbacks[i]; in handle() local 49 System.out.println(toc.getMessage()); in handle()
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/ |
| H A D | doxygen.css | 1425 div.toc { 1436 .PageDocRTL-title div.toc { 1441 div.toc li { 1449 .PageDocRTL-title div.toc li { 1455 div.toc h3 { 1462 div.toc ul { 1468 div.toc li.level1 { 1472 div.toc li.level2 { 1476 div.toc li.level3 { 1480 div.toc li.level4 { [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/ |
| H A D | doxygen.css | 1425 div.toc { 1436 .PageDocRTL-title div.toc { 1441 div.toc li { 1449 .PageDocRTL-title div.toc li { 1455 div.toc h3 { 1462 div.toc ul { 1468 div.toc li.level1 { 1472 div.toc li.level2 { 1476 div.toc li.level3 { 1480 div.toc li.level4 { [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/ |
| H A D | doxygen.css | 1425 div.toc { 1436 .PageDocRTL-title div.toc { 1441 div.toc li { 1449 .PageDocRTL-title div.toc li { 1455 div.toc h3 { 1462 div.toc ul { 1468 div.toc li.level1 { 1472 div.toc li.level2 { 1476 div.toc li.level3 { 1480 div.toc li.level4 { [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/ |
| H A D | doxygen.css | 1425 div.toc { 1436 .PageDocRTL-title div.toc { 1441 div.toc li { 1449 .PageDocRTL-title div.toc li { 1455 div.toc h3 { 1462 div.toc ul { 1468 div.toc li.level1 { 1472 div.toc li.level2 { 1476 div.toc li.level3 { 1480 div.toc li.level4 { [all …]
|