| /src/share/man/man0/ |
| tocrc | 38 tmp=/tmp/toc$$ 58 : permuted index and toc files 77 >toc$x
|
| /src/lib/libc/arch/powerpc64/sys/ |
| sbrk.S | 13 addis %r8,%r2,_C_LABEL(__curbrk)@toc@ha 14 ldptru %r6,_C_LABEL(__curbrk)@toc@l(%r8)
|
| brk.S | 24 addis %r9,%r2,_C_LABEL(__minbrk)@toc@ha 25 ldptru %r5,_C_LABEL(__minbrk)@toc@l(%r9)
|
| ptrace.S | 28 .pushsection ".toc","aw" 32 addis %r7,%r2,_C_LABEL(errno)@toc@ha 33 ldptr %r7,_C_LABEL(errno)@toc@l(%r7)
|
| /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/smumgr/ |
| amdgpu_smu7_smumgr.c | 387 if (!smu_data->toc) { 388 struct SMU_DRAMData_TOC *toc; local 390 smu_data->toc = kzalloc(sizeof(struct SMU_DRAMData_TOC), GFP_KERNEL); 391 if (!smu_data->toc) 393 toc = smu_data->toc; 394 toc->num_entries = 0; 395 toc->structure_version = 1; 398 UCODE_ID_RLC_G, &toc->entry[toc->num_entries++]) [all...] |
| /src/external/bsd/mdocml/dist/ |
| manconf.h | 46 int toc; member in struct:manoutput
|
| /src/crypto/external/bsd/heimdal/dist/doc/ |
| 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
|
| /src/distrib/notes/ |
| Makefile.inc | 24 TOCS= ${TARG}.PostScript.toc ${TARG}.ASCII.toc ${TARG}.HTML.toc \ 25 ${TARG}.more.toc 89 TOC.ps= ${TOCS:M*.PostScript.*} 90 TOC.txt= ${TOCS:M*.ASCII.*} 91 TOC.html= ${TOCS:M*.HTML.*} 92 TOC.more= ${TOCS:M*.more.*} 97 ${TARG}.ps: ${SRCS} ${TOC.ps} ${DISTRIBVERDEP} 105 ${TARG}.txt: ${SRCS} ${TOC.txt} ${DISTRIBVERDEP [all...] |
| /src/crypto/external/bsd/heimdal/dist/tests/java/ |
| KerberosInit.java | 48 TextOutputCallback toc = (TextOutputCallback)callbacks[i]; local 49 System.out.println(toc.getMessage());
|
| /src/sys/dev/isa/ |
| mcd.c | 95 /* toc */ 145 union mcd_qchninfo toc[MCD_MAXTOCS]; member in struct:mcd_softc 1406 printf("%s: mcd_toc_header: reading toc header\n", 1434 sc->toc[trk].toc.idx_no = 0x00; 1439 if (q.toc.trk_no != 0x00 || q.toc.idx_no == 0x00) 1441 idx = bcd2bin(q.toc.idx_no); 1443 sc->toc[idx].toc.idx_no == 0x00) [all...] |
| /src/sys/arch/dreamcast/dev/g1/ |
| gdrom.c | 229 int gdrom_read_toc(struct gdrom_softc *sc, struct gd_toc *toc) 250 (void *)toc, sizeof(struct gd_toc), 375 struct gd_toc toc; local 399 error = gdrom_read_toc(sc, &toc); 526 struct gd_toc toc; local 537 error = gdrom_read_toc(sc, &toc); 545 { /* Dump the GDROM TOC */ 546 unsigned char *ptr = (unsigned char *)&toc; 549 printf("gdrom: TOC\n"); 550 for(i = 0; i < sizeof(toc); ++i) [all...] |
| /src/sys/arch/dreamcast/dev/ |
| gdrom.c | 325 int gdrom_read_toc(struct gdrom_softc *sc, struct gd_toc *toc) 344 return gdrom_command_sense(sc, cmd, toc, sizeof(struct gd_toc), NULL); 443 struct gd_toc toc; local 467 error = gdrom_read_toc(sc, &toc); 586 struct gd_toc toc; local 597 error = gdrom_read_toc(sc, &toc); 605 { /* Dump the GDROM TOC */ 606 unsigned char *ptr = (unsigned char *)&toc; 609 printf("gdrom: TOC\n"); 610 for(i = 0; i < sizeof(toc); ++i) [all...] |
| /src/sys/arch/hppa/stand/mkboot/ |
| mkboot.c | 414 bcddate(char *file, char *toc) 426 *toc = (tm->tm_year / 10) << 4; 427 *toc++ |= tm->tm_year % 10; 428 *toc = ((tm->tm_mon+1) / 10) << 4; 429 *toc++ |= (tm->tm_mon+1) % 10; 430 *toc = (tm->tm_mday / 10) << 4; 431 *toc++ |= tm->tm_mday % 10; 432 *toc = (tm->tm_hour / 10) << 4; 433 *toc++ |= tm->tm_hour % 10; 434 *toc = (tm->tm_min / 10) << 4 [all...] |
| /src/sys/arch/hp300/stand/mkboot/ |
| mkboot.c | 286 bcddate(char *name, char *toc) 297 *toc++ = bintobcd(tm->tm_mon + 1); 298 *toc++ = bintobcd(tm->tm_mday); 299 *toc++ = bintobcd(tm->tm_year); 300 *toc++ = bintobcd(tm->tm_hour); 301 *toc++ = bintobcd(tm->tm_min); 302 *toc = bintobcd(tm->tm_sec);
|
| /src/external/gpl2/groff/tmac/mom/momdoc/ |
| Makefile | 24 toc.html \
|
| /src/external/gpl2/texinfo/bin/makeinfo/ |
| Makefile | 9 sectioning.c toc.c xml.c xref.c
|
| /src/sys/dev/scsipi/ |
| cd.c | 100 #define CD_TOC_FORM 0 /* formatted TOC, exposed to userland */ 102 #define CD_TOC_RAW 2 /* raw TOC as on disc, unprocessed */ 1109 cdreadmsaddr(struct cd_softc *cd, struct cd_formatted_toc *toc, int *addr) 1115 error = cd_read_toc(cd, CD_TOC_FORM, 0, 0, toc, 1122 cte = &toc->entries[0]; 1125 toc->header.len = le16toh(toc->header.len); 1128 toc->header.len = be16toh(toc->header.len); 1131 *addr = (toc->header.len >= 10 && cte->track > 1) 1208 struct cd_formatted_toc toc; local 1466 struct cd_formatted_toc toc; local 3085 struct scsipi_toc_formatted *toc; local [all...] |
| /src/lib/libc/arch/powerpc/gen/ |
| swapcontext.S | 50 PIC_TOCSETUP(swapcontext,%r30) # setup toc pointer
|
| /src/external/gpl2/texinfo/dist/makeinfo/ |
| sectioning.h | 89 int toc; /* TOC_NO means do not enter in toc; member in struct:__anon9569 90 TOC_YES means enter it in toc */ 100 /* make entries into toc no/yes */
|
| sectioning.c | 29 #include "toc.h" 240 /* As it happens, each group has unique .num/.toc values. */ 242 || section_alist[i].toc != section_alist[index_offset].toc) 361 /* If the section appears in the toc, it means it's a real section 363 if (section_alist[search_sectioning (cmd)].toc == TOC_YES) 384 && section_alist[search_sectioning (cmd)].toc == TOC_YES) 475 Info output and in TOC, but only SECTION-NAME in the macro-expanded 494 insert it into the TOC. */ 496 if (section_alist[index].toc == TOC_YES [all...] |
| /src/external/mit/xorg/bin/xmh/ |
| Makefile | 7 menu.c mlist.c msg.c pick.c popup.c screen.c toc.c \
|
| /src/sys/arch/powerpc/conf/ |
| kern64.ldscript | 52 .got : ALIGN(8) { *(.got .toc) }
|
| /src/crypto/external/apache2/openssl/dist/crypto/ec/asm/ |
| ecp_nistp384-ppc64.pl | 482 addis 5, 2, .LConst_two127\@toc\@ha 483 addi 5, 5, .LConst_two127\@toc\@l 659 addis 5, 2, .LConst_128_two64\@toc\@ha 660 addi 5, 5, .LConst_128_two64\@toc\@l 772 addis 5, 2, .LConst_two60\@toc\@ha 773 addi 5, 5, .LConst_two60\@toc\@l 896 addis 12, 2, .LConst\@toc\@ha 897 addi 12, 12, .LConst\@toc\@l
|
| /src/crypto/external/apache2/openssl/lib/libcrypto/arch/powerpc64/ |
| ecp_nistp384-ppc64.S | 9 .quad .p384_felem_mul,.TOC.@tocbase,0 48 .quad .p384_felem_square,.TOC.@tocbase,0 373 .quad .p384_felem128_mul_by_8,.TOC.@tocbase,0 426 .quad .p384_felem128_mul_by_2,.TOC.@tocbase,0 466 .quad .p384_felem_diff128,.TOC.@tocbase,0 472 addis 5, 2, .LConst_two127@toc@ha 473 addi 5, 5, .LConst_two127@toc@l 650 .quad .p384_felem_diff_128_64,.TOC.@tocbase,0 655 addis 5, 2, .LConst_128_two64@toc@ha 656 addi 5, 5, .LConst_128_two64@toc@ [all...] |
| /src/external/gpl3/gcc/dist/libgcc/config/rs6000/ |
| tramp.S | 143 .pushsection ".toc","aw" 154 addis 7,2,.LC0@toc@ha 155 ld 7,.LC0@toc@l(7) /* trampoline address -8 */
|