Home
last modified time | relevance | path

Searched refs:fno (Results 1 – 25 of 36) sorted by relevance

12

/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A DMakefile.am82 $(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 \
162 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \
[all …]
H A DMakefile.in967 $(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 \
1017 $(COMPILE) $(STAGE2_CFLAGS) -fno-builtin -nostdinc \
[all …]
H A DMakefile.solaris24 $(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 Dsetbuf.c50 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 Dsetbuffer.c53 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 Dmain.c381 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()
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()
400 fno = -1; in exfile()
401 shp->infd = fno; in exfile()
606 if(fno>0) in exfile()
[all …]
H A Dio.c1602 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()
1634 if(fno>=0) in io_heredoc()
1635 fcntl(fno,F_SETLK,&lock); in io_heredoc()
1881 register int n,fno; in slowexcept() local
1894 fno = sffileno(iop); in slowexcept()
1902 fcntl(fno, F_SETFL, n); in slowexcept()
1910 n = fcntl(fno,F_GETFL,0); in slowexcept()
1912 fcntl(fno, F_SETFL, n); in slowexcept()
[all …]
H A Dpath.c590 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 Dtail.c219 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 DMakefile.master326 -_gcc=-fno-inline-small-functions \
327 -_gcc=-fno-inline-functions-called-once \
328 -_gcc=-fno-ipa-cp \
329 -_gcc=-fno-ipa-icf \
330 -_gcc=-fno-clone-functions
338 CCNOREORDER= -_gcc=-fno-reorder-functions \
339 -_gcc=-fno-reorder-blocks-and-partition
348 CCNOAGGRESSIVELOOPS= -_gcc=-fno-aggressive-loop-optimizations
481 CALLSYMS= -_gcc=-fno-eliminate-unused-debug-symbols \
482 -_gcc=-fno-eliminate-unused-debug-types
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dlufs.c567 daddr_t fno; in lufs_free() local
618 fno = logbtofrag(fs, ep->pbno); in lufs_free()
668 daddr_t fno; /* in frags */ in lufs_alloc() local
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()
729 ep->pbno = (uint32_t)fno; in lufs_alloc()
736 error = alloc(ip, fno + fs->fs_frag, fs->fs_bsize, &fno, cr); in lufs_alloc()
743 bno = fsbtodb(fs, fno); in lufs_alloc()
[all …]
/illumos-gate/usr/src/lib/libm/
H A DMakefile.libm.com59 CFLAGS += -_gcc=-fno-strict-overflow
60 CFLAGS64 += -_gcc=-fno-strict-overflow
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dinfinite-loop01.c22 void fno(void) in fno() function
/illumos-gate/usr/src/grub/grub-0.97/stage1/
H A DMakefile.am7 AM_CCASFLAGS = $(STAGE1_CFLAGS) -fno-builtin -nostdinc
H A DMakefile.solaris17 CCASFLAGS += -O2 -fno-builtin -nostdinc
/illumos-gate/usr/src/uts/i86pc/
H A DMakefile.i86pc194 -_gcc=-fno-eliminate-unused-debug-symbols \
195 -_gcc=-fno-eliminate-unused-debug-types
/illumos-gate/usr/src/uts/i86xpv/
H A DMakefile.i86xpv187 -_gcc=-fno-eliminate-unused-debug-symbols \
188 -_gcc=-fno-eliminate-unused-debug-types
/illumos-gate/usr/src/test/elf-tests/tests/relocs/amd64/gotpcrelx/
H A Dgotpcrelx.sh56 gcc -fno-pie -m64 gotpcrel.o -o gotpcrel
/illumos-gate/usr/src/boot/
H A DMakefile.inc48 CFLAGS= -_gcc=-Os -_gcc=-ffreestanding -_gcc=-fno-builtin
/illumos-gate/usr/src/grub/grub-0.97/docs/
H A DMakefile.am15 kernel_CFLAGS = -fno-builtin -nostdinc -O -g -Wall \
/illumos-gate/usr/src/cmd/krb5/krb5kdc/
H A DMakefile46 CFLAGS += -_gcc=-fno-strict-overflow
/illumos-gate/usr/src/grub/grub-0.97/
H A Dconfigure.ac98 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 DMakefile.solaris.defs83 OPTFLAGS += -fno-reorder-functions
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dutilities.c2184 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 DMakefile97 cflags = -fno-strict-aliasing

12