/illumos-gate/usr/src/grub/grub-0.97/netboot/ |
H A D | Makefile.am | 26 libdrivers_a_CFLAGS = $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 82 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 87 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 97 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 112 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 117 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 122 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 127 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 147 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 157 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ [all …]
|
H A D | Makefile.in | 200 libdrivers_a_CFLAGS = $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 967 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 972 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 977 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 982 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 987 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 992 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 997 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 1002 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ 1007 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \ [all …]
|
H A D | Makefile.solaris | 24 $(LIB_OBJS) := CFLAGS = $(BASE_CFLAGS) -Os -fno-builtin -nostdinc \ 61 $(DRIVER_OBJS) := CFLAGS = $(BASE_CFLAGS) -Os -fno-builtin -nostdinc \
|
/illumos-gate/usr/src/lib/libc/port/stdio/ |
H A D | setbuf.c | 50 int fno = _get_fd(iop); /* file number */ in setbuf() local 61 if (fno == 0 || fno == 1) { in setbuf() 63 buf = (fno == 0) ? _sibuf : _sobuf; in setbuf() 64 } else if (fno >= 2 && fno < _NFILE) { in setbuf() 65 buf = _smbuf[fno]; in setbuf() 73 if (fno != -1) { in setbuf() 80 if (isatty(fno) != 0) in setbuf()
|
/illumos-gate/usr/src/ucblib/libucb/port/gen/ |
H A D | setbuffer.c | 53 int fno = fileno(iop); /* file number */ in setbuffer() local 62 if (fno < 2) { in setbuffer() 64 buf = (fno == 0) ? _sibuf : _sobuf; in setbuffer() 66 } else if (fno < _NFILE) { in setbuffer() 67 buf = _smbuf[fno]; in setbuffer()
|
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/ |
H A D | main.c | 369 static void exfile(register Shell_t *shp, register Sfio_t *iop,register int fno) in exfile() argument 381 if(fno > 0) in exfile() 384 VALIDATE_FD(shp, fno); in exfile() 385 if(fno < 10 && ((r=sh_fcntl(fno,F_DUPFD,10))>=10)) in exfile() 388 shp->fdstatus[r] = shp->fdstatus[fno]; in exfile() 389 sh_close(fno); in exfile() 390 fno = r; in exfile() 392 fcntl(fno,F_SETFD,FD_CLOEXEC); in exfile() 393 shp->fdstatus[fno] |= IOCLEX; in exfile() 394 iop = sh_iostream((void*)shp,fno); in exfile() [all …]
|
H A D | io.c | 1094 static char *io_usename(char *name, int *perm, int fno, int mode) in io_usename() argument 1135 sfprintf(stkstd,"%<#d_%d{;.tmp",getpid(),fno); in io_usename() 1602 int fno = sffileno(shp->heredocs); in io_heredoc() local 1603 if(fno>=0) in io_heredoc() 1608 fcntl(fno,F_SETLKW,&lock); in io_heredoc() 1621 if(fno>=0 && !(iop->iofile&IOQUOTE)) in io_heredoc() 1623 if(fno>=0 || (iop->iofile&IOQUOTE)) in io_heredoc() 1634 if(fno>=0) in io_heredoc() 1635 fcntl(fno,F_SETLK,&lock); in io_heredoc() 1881 register int n,fno; in slowexcept() local [all …]
|
H A D | path.c | 590 static void funload(Shell_t *shp,int fno, const char *name) in funload() argument 619 sh_close(fno); in funload() 628 sh_eval(sfnew(NIL(Sfio_t*),buff,IOBSIZE,fno,SF_READ),SH_FUNEVAL); in funload() 629 sh_close(fno); in funload() 662 register int fno; in path_search() local 712 if(pp && strmatch(name,e_alphanum) && (fno=path_opentype(shp,name,pp,1))>=0) in path_search() 716 sh_close(fno); in path_search() 719 funload(shp,fno,name); in path_search()
|
/illumos-gate/usr/src/contrib/ast/src/lib/libcmd/ |
H A D | tail.c | 219 register int fno = 0; in pipetail() local 230 offset[fno] = sftell(out); in pipetail() 233 out = tmp[fno= !fno]; in pipetail() 240 offset[fno] = 0; in pipetail() 241 fno= !fno; in pipetail() 249 if (offset[fno]) in pipetail() 253 sfmove(tmp[!fno], NiL, n, delim); in pipetail() 254 if ((n = offset[!fno] - sftell(tmp[!fno])) > 0) in pipetail() 255 sfmove(tmp[!fno], outfile, n, -1); in pipetail() 258 fno = !fno; in pipetail() [all …]
|
/illumos-gate/usr/src/ |
H A D | Makefile.master | 332 # sadly does so separately not under the general -fno-inline-functions 337 -_gcc=-fno-inline-small-functions \ 338 -_gcc=-fno-inline-functions-called-once \ 339 -_gcc=-fno-ipa-cp \ 340 -_gcc=-fno-ipa-icf \ 341 -_gcc=-fno-clone-functions 349 CCNOREORDER= -_gcc=-fno-reorder-functions \ 350 -_gcc=-fno-reorder-blocks-and-partition 359 CCNOAGGRESSIVELOOPS= -_gcc=-fno-aggressive-loop-optimizations 493 CALLSYMS= -_gcc=-fno [all...] |
/illumos-gate/usr/src/uts/common/fs/ufs/ |
H A D | lufs.c | 567 daddr_t fno; in lufs_free() local 618 fno = logbtofrag(fs, ep->pbno); in lufs_free() 620 for (j = 0; j < nfno; j += fs->fs_frag, fno += fs->fs_frag) in lufs_free() 621 free(ip, fno, fs->fs_bsize, 0); in lufs_free() 668 daddr_t fno; /* in frags */ in lufs_alloc() local 694 fno = contigpref(ufsvfsp, nb + fs->fs_bsize, minb); in lufs_alloc() 695 error = alloc(ip, fno, fs->fs_bsize, &fno, cr); in lufs_alloc() 698 bno = fsbtodb(fs, fno); in lufs_alloc() 720 error = alloc(ip, fno + fs->fs_frag, fs->fs_bsize, &fno, cr); in lufs_alloc() 723 bno = fsbtodb(fs, fno); in lufs_alloc() [all …]
|
/illumos-gate/usr/src/lib/libm/ |
H A D | Makefile.libm.com | 59 CFLAGS += -_gcc=-fno-strict-overflow 60 CFLAGS64 += -_gcc=-fno-strict-overflow
|
/illumos-gate/usr/src/tools/smatch/src/validation/ |
H A D | infinite-loop01.c | 22 void fno(void) in fno() function
|
/illumos-gate/usr/src/uts/i86xpv/ |
H A D | Makefile.i86xpv | 187 -_gcc=-fno-eliminate-unused-debug-symbols \ 188 -_gcc=-fno-eliminate-unused-debug-types
|
/illumos-gate/usr/src/uts/i86pc/ |
H A D | Makefile.i86pc | 194 -_gcc=-fno-eliminate-unused-debug-symbols \ 195 -_gcc=-fno-eliminate-unused-debug-types
|
/illumos-gate/usr/src/grub/grub-0.97/stage1/ |
H A D | Makefile.am | 7 AM_CCASFLAGS = $(STAGE1_CFLAGS) -fno-builtin -nostdinc
|
H A D | Makefile.solaris | 17 CCASFLAGS += -O2 -fno-builtin -nostdinc
|
/illumos-gate/usr/src/test/elf-tests/tests/relocs/amd64/gotpcrelx/ |
H A D | gotpcrelx.sh | 56 gcc -fno-pie -m64 gotpcrel.o -o gotpcrel
|
/illumos-gate/usr/src/boot/ |
H A D | Makefile.inc | 48 CFLAGS= -_gcc=-Os -_gcc=-ffreestanding -_gcc=-fno-builtin
|
/illumos-gate/usr/src/grub/grub-0.97/docs/ |
H A D | Makefile.am | 15 kernel_CFLAGS = -fno-builtin -nostdinc -O -g -Wall \
|
/illumos-gate/usr/src/cmd/krb5/krb5kdc/ |
H A D | Makefile | 46 CFLAGS += -_gcc=-fno-strict-overflow
|
/illumos-gate/usr/src/grub/grub-0.97/ |
H A D | configure.ac | 98 STAGE2_CFLAGS="-O2 -fno-strength-reduce -fno-unroll-loops" 102 AC_CACHE_CHECK([whether gcc has -fno-stack-protector], 105 CFLAGS="-fno-stack-protector" 113 STAGE2_CFLAGS="$STAGE2_CFLAGS -fno-stack-protector"
|
H A D | Makefile.solaris.defs | 83 OPTFLAGS += -fno-reorder-functions
|
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/ |
H A D | utilities.c | 2184 daddr32_t nfno, fno; in examinelog() local 2222 fno = logbtofrag(&sblock, ep->pbno); in examinelog() 2224 for (j = 0; j < nfno; ++j, ++fno) { in examinelog() 2234 (*cb)(fno); in examinelog() 2235 if (!testbmap(fno)) in examinelog() 2242 fno = logbtofrag(&sblock, sblock.fs_logbno); in examinelog() 2243 for (j = 0; j < sblock.fs_frag; ++j, ++fno) in examinelog() 2244 (*cb)(fno); in examinelog()
|
/illumos-gate/usr/src/tools/smatch/src/ |
H A D | Makefile | 97 cflags = -fno-strict-aliasing
|