Home
last modified time | relevance | path

Searched refs:sb1 (Results 1 – 16 of 16) sorted by relevance

/dragonfly/usr.bin/cmp/
H A Dcmp.c68 struct stat sb1, sb2; in main() local
154 if (fstat(fd1, &sb1)) { in main()
160 if (!S_ISREG(sb1.st_mode)) in main()
177 if (zflag && sb1.st_size != sb2.st_size) { in main()
183 c_regular(fd1, file1, skip1, sb1.st_size, in main()
/dragonfly/contrib/cvs-1.12/src/
H A Dfilesubr.c570 struct stat sb1, sb2; in xcmp() local
574 if (lstat (file1, &sb1) < 0) in xcmp()
580 if ((sb1.st_mode & S_IFMT) != (sb2.st_mode & S_IFMT)) in xcmp()
586 if (S_ISLNK (sb1.st_mode) && S_ISLNK (sb2.st_mode)) in xcmp()
589 buf1 = Xreadlink (file1, sb1.st_size); in xcmp()
600 if (S_ISBLK (sb1.st_mode) || S_ISCHR (sb1.st_mode)) in xcmp()
603 if (sb1.st_rdev == sb2.st_rdev) in xcmp()
622 if (sb1.st_size != sb2.st_size) in xcmp()
624 else if (sb1.st_size == 0) in xcmp()
H A Drcscmds.c534 struct stat sb1, sb2; in diff_exec() local
536 if (lstat (file1, &sb1) < 0) in diff_exec()
541 if (!S_ISREG (sb1.st_mode) && !S_ISDIR (sb1.st_mode)) in diff_exec()
/dragonfly/bin/stty/
H A Dutil.c54 struct stat sb1, sb2; in checkredirect() local
57 !fstat(STDOUT_FILENO, &sb1) && !fstat(STDERR_FILENO, &sb2) && in checkredirect()
58 (sb1.st_rdev != sb2.st_rdev)) in checkredirect()
/dragonfly/bin/ln/
H A Dln.c174 struct stat sb1, sb2; in samedirent() local
198 if (stat(pathbuf, &sb1) != 0) in samedirent()
208 return sb1.st_dev == sb2.st_dev && sb1.st_ino == sb2.st_ino; in samedirent()
/dragonfly/contrib/openbsd_libm/src/
H A Ds_erf.c179 sb1 = 3.03380607434824582924e+01, /* 0x403E568B, 0x261D5190 */ variable
230 S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*( in erf()
288 S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*( in erfc()
H A Ds_erff.c86 sb1 = 3.0338060379e+01, /* 0x41f2b459 */ variable
138 S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*( in erff()
196 S=one+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*( in erfcf()
/dragonfly/sys/crypto/serpent/
H A Dserpent.c81 #define sb1(a,b,c,d,e,f,g,h) \ macro
493 k_set( 2,a,b,c,d);sb1(a,b,c,d,e,f,g,h);k_get( 2,e,f,g,h); in serpent_set_key()
501 k_set(10,a,b,c,d);sb1(a,b,c,d,e,f,g,h);k_get(10,e,f,g,h); in serpent_set_key()
509 k_set(18,a,b,c,d);sb1(a,b,c,d,e,f,g,h);k_get(18,e,f,g,h); in serpent_set_key()
517 k_set(26,a,b,c,d);sb1(a,b,c,d,e,f,g,h);k_get(26,e,f,g,h); in serpent_set_key()
542 k_xor( 1,e,f,g,h); sb1(e,f,g,h,a,b,c,d); rot(a,b,c,d); in serpent_encrypt()
550 k_xor( 9,e,f,g,h); sb1(e,f,g,h,a,b,c,d); rot(a,b,c,d); in serpent_encrypt()
558 k_xor(17,e,f,g,h); sb1(e,f,g,h,a,b,c,d); rot(a,b,c,d); in serpent_encrypt()
566 k_xor(25,e,f,g,h); sb1(e,f,g,h,a,b,c,d); rot(a,b,c,d); in serpent_encrypt()
/dragonfly/contrib/mdocml/
H A Dmandocdb.c2205 struct stat sb1, sb2; in dbwrite() local
2262 if (fstat(fd1, &sb1) == -1) { in dbwrite()
2270 if (sb1.st_size != sb2.st_size) in dbwrite()
2272 if ((cp1 = mmap(NULL, sb1.st_size, PROT_READ, MAP_PRIVATE, in dbwrite()
2282 for (i = 0; i < sb1.st_size; i++) in dbwrite()
2293 munmap(cp1, sb1.st_size); in dbwrite()
/dragonfly/contrib/grep/lib/
H A Dfts.c1717 struct stat sb1, sb2; in same_fd() local
1718 return (fstat (fd1, &sb1) == 0 in same_fd()
1720 && SAME_INODE (sb1, sb2)); in same_fd()
/dragonfly/contrib/lvm2/dist/autoconf/
H A Dconfig.sub939 sb1)
/dragonfly/share/terminfo/
H A DMakefile.entries1748 s/sb1 \
/dragonfly/contrib/binutils-2.27/gas/doc/
H A Dc-mips.texi387 sb1,
/dragonfly/share/termcap/
H A Dtermcap.src2147 # Note: there are at least 3 kinds of superbees in the world. The sb1
2152 # The f1/f2 business is for the sb1 and the :xb: can be taken out for
2156 sb1|superbee|superb|beehive super bee:\
/dragonfly/contrib/gcc-4.7/gcc/doc/
H A Dinvoke.texi756 -mfix-vr4130 -mno-fix-vr4130 -mfix-sb1 -mno-fix-sb1 @gol
15303 @samp{sb1},
15926 @item -mfix-sb1
15927 @itemx -mno-fix-sb1
15928 @opindex mfix-sb1
/dragonfly/contrib/ncurses/misc/
H A Dterminfo.src555 # USENET {akgua,msdc,sb1,sb6,gatech}!emory!mlhhh.
16775 sb1|beehive superbee,
16796 use=sb1,
16798 # Note: there are at least 3 kinds of superbees in the world. The sb1
16803 # The f1/f2 business is for the sb1 and the <xsb> can be taken out for
24635 # * Fixed sb1 entry, SCO erroneously left out the xsb glitch.
24910 # f1720a, go140, sb1, superbeeic, microb, ibm8512, kt7, ergo4000,