/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/ |
restFP.S | 23 lfd f14,-144(r1) 24 lfd f15,-136(r1) 25 lfd f16,-128(r1) 26 lfd f17,-120(r1) 27 lfd f18,-112(r1) 28 lfd f19,-104(r1) 29 lfd f20,-96(r1) 30 lfd f21,-88(r1) 31 lfd f22,-80(r1) 32 lfd f23,-72(r1 [all...] |
/src/sys/arch/powerpc/powerpc/ |
fpu_subr.S | 35 lfd %f0,FPREG_FPSCR(%r3) 38 lfd %f0,FPREG_F0(%r3) 39 lfd %f1,FPREG_F1(%r3) 40 lfd %f2,FPREG_F2(%r3) 41 lfd %f3,FPREG_F3(%r3) 42 lfd %f4,FPREG_F4(%r3) 43 lfd %f5,FPREG_F5(%r3) 44 lfd %f6,FPREG_F6(%r3) 45 lfd %f7,FPREG_F7(%r3) 46 lfd %f8,FPREG_F8(%r3 [all...] |
/src/sys/lib/libunwind/ |
unwind_registers.S | 195 lfd %f0, 144(%r3) 196 lfd %f1, 152(%r3) 197 lfd %f2, 160(%r3) 198 lfd %f3, 168(%r3) 199 lfd %f4, 176(%r3) 200 lfd %f5, 184(%r3) 201 lfd %f6, 192(%r3) 202 lfd %f7, 200(%r3) 203 lfd %f8, 208(%r3) 204 lfd %f9, 216(%r3 [all...] |
/src/sbin/veriexecctl/ |
veriexecctl.c | 240 int lfd; local in function:main 247 lfd = open(file, O_RDONLY|O_EXLOCK, 0); 248 if (lfd == -1) 251 yyin = fdopen(lfd, "r");
|
/src/libexec/mail.local/ |
mail.local.c | 200 int created = 0, mbfd = -1, nr, nw, off, rval = EX_OSERR, lfd = -1; local in function:deliver 223 if((lfd = open(lpath, O_CREAT|O_WRONLY|O_EXCL, 304 if (lfd >= 0) { 306 close(lfd);
|
/src/usr.sbin/lpr/lpd/ |
lpd.c | 148 int lfd, errs, i, f, nfds; local in function:main 242 lfd = open(_PATH_MASTERLOCK, O_WRONLY|O_CREAT, 0644); 243 if (lfd < 0) { 247 if (flock(lfd, LOCK_EX|LOCK_NB) < 0) { 256 ftruncate(lfd, 0); 262 if (write(lfd, line, f) != f) {
|
printjob.c | 98 static int lfd; /* lock file descriptor */ variable in typeref:typename:int 185 lfd = open(LO, O_WRONLY|O_CREAT, 0644); 186 if (lfd < 0) { 190 if (flock(lfd, LOCK_EX|LOCK_NB) < 0) { 196 ftruncate(lfd, 0); 201 if (write(lfd, line, i) != i) { 231 if (fchmod(lfd, stb.st_mode & 0777) < 0) 247 (void)lseek(lfd, pidoff, 0); 249 if (write(lfd, line, i) != i) 259 if (fstat(lfd, &stb) == 0) [all...] |