/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/ |
nouveau_nvkm_subdev_fb_gddr5.c | 42 int pd, lf, xd, vh, vr, vo, l3; local in function:nvkm_gddr5_calc 51 lf = ram->next->bios.ramcfg_11_01_40; 120 ram->mr[7] |= (lf & 0x01) << 3;
|
/src/lib/libedit/TEST/ |
tc1.c | 93 const LineInfo *lf = el_line(el); local in function:complete 100 for (ptr = lf->cursor - 1; 101 !isspace((unsigned char)*ptr) && ptr > lf->buffer; ptr--) 103 len = lf->cursor - ++ptr;
|
wtc1.c | 63 const LineInfoW *lf = el_wline(el); local in function:complete 69 for (ptr = lf->cursor -1; !iswspace(*ptr) && ptr > lf->buffer; --ptr) 71 len = lf->cursor - ++ptr;
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_flags.cc | 78 __lsan::Flags *lf = __lsan::flags(); local in function:__asan::InitializeFlags 79 lf->SetDefaults(); 82 __lsan::RegisterLsanFlags(&lsan_parser, lf);
|
/src/usr.bin/btkey/ |
btkey.c | 57 bool cf, cd, lf, ld, rf, rd, wf, wd, nk; local in function:main 62 cf = cd = lf = ld = rf = rd = wf = wd = nk = false; 105 lf = true; 139 if ((lf || ld) && (rf || rd || wf || wd || cf || cd || nk)) 145 if (((bdaddr_any(&laddr) || bdaddr_any(&raddr)) && !(lf || ld)) 146 || ((lf || ld) && (bdaddr_any(&laddr) || !bdaddr_any(&raddr))) 159 if (lf && !list_file())
|
/src/usr.bin/ftp/ |
complete.c | 358 const LineInfo *lf; local in function:complete 362 lf = el_line(cel); 363 len = lf->lastchar - lf->buffer; 366 (void)strlcpy(line, lf->buffer, len + 1); 367 cursor_pos = line + (lf->cursor - lf->buffer);
|
/src/sys/kern/ |
vfs_lockf.c | 157 struct lockf *lf, *blk; local in function:lf_printlist 160 for (lf = *lock->lf_head; lf; lf = lf->lf_next) { 161 printf("\tlock %p for ", lf); 162 if (lf->lf_flags & F_POSIX) 163 printf("proc %d", ((struct proc *)lf->lf_id)->p_pid); 165 printf("file %p", (struct file *)lf->lf_id); 167 lf->lf_type == F_RDLCK ? "shared" 415 struct lockf *lf = *head; local in function:lf_clearlock 483 struct lockf **prev, *overlap, *lf = *(lock->lf_head); local in function:lf_getblock [all...] |
sys_descrip.c | 629 struct flock lf; local in function:sys_flock 644 lf.l_whence = SEEK_SET; 645 lf.l_start = 0; 646 lf.l_len = 0; 650 lf.l_type = F_UNLCK; 652 error = (*fo_advlock)(fp, fp, F_UNLCK, &lf, F_FLOCK); 655 lf.l_type = F_WRLCK; 658 lf.l_type = F_RDLCK; 667 error = (*fo_advlock)(fp, fp, F_SETLK, &lf, F_FLOCK); 669 error = (*fo_advlock)(fp, fp, F_SETLK, &lf, F_FLOCK|F_WAIT) [all...] |
kern_descrip.c | 606 struct flock lf; local in function:fd_close 727 lf.l_whence = SEEK_SET; 728 lf.l_start = 0; 729 lf.l_len = 0; 730 lf.l_type = F_UNLCK; 732 (void)(*fp->f_ops->fo_advlock)(fp, p, F_UNLCK, &lf, F_POSIX); 835 struct flock lf; local in function:closef 855 lf.l_whence = SEEK_SET; 856 lf.l_start = 0; 857 lf.l_len = 0 [all...] |
vfs_syscalls.c | 308 struct flock lf; local in function:open_setfp 311 lf.l_whence = SEEK_SET; 312 lf.l_start = 0; 313 lf.l_len = 0; 315 lf.l_type = F_WRLCK; 317 lf.l_type = F_RDLCK; 322 error = VOP_ADVLOCK(vp, fp, F_SETLK, &lf, type);
|
/src/sys/dev/ic/ |
isp_stds.h | 87 } lf; member in union:__anona583cb230208::__anona583cb23030a
|
/src/usr.bin/mail/ |
complete.c | 759 emacs_ctrl_d(EditLine *el, const LineInfo *lf, int ch) 764 if (lf->buffer == lf->lastchar) 766 if (lf->cursor != lf->lastchar) { /* delete without using ^D */ 780 get_dolist(const LineInfo *lf) 788 len = lf->lastchar - lf->buffer; 792 cursor_pos = last_line + (lf->cursor - lf->buffer) 918 const LineInfo *lf; local in function:mail_complete 994 const LineInfo *lf; local in function:file_complete 1031 const LineInfo *lf; local in function:mime_enc_complete [all...] |
/src/sys/compat/sunos32/ |
sunos32_misc.c | 922 int lf, r; local in function:sunos32_sys_open 927 lf = SCARG(uap, flags); 928 noctty = lf & 0x8000; 929 r = (lf & (0x0001 | 0x0002 | 0x0008 | 0x0040 | 0x0200 | 0x0400 | 0x0800)); 930 r |= ((lf & (0x0004 | 0x1000 | 0x4000)) ? O_NONBLOCK : 0); 931 r |= ((lf & 0x0080) ? O_SHLOCK : 0); 932 r |= ((lf & 0x0100) ? O_EXLOCK : 0); 933 r |= ((lf & 0x2000) ? O_FSYNC : 0);
|
/src/lib/libukfs/ |
ukfs.c | 1193 struct loadfail *lf, *nlf; local in function:ukfs_modload_dir 1218 lf = malloc(sizeof(*lf)); 1219 if (lf == NULL) { 1223 lf->pname = strdup(nbuf); 1224 if (lf->pname == NULL) { 1225 free(lf); 1229 LIST_INSERT_HEAD(&lfs, lf, entries); 1250 while ((lf = nlf) != NULL) { 1251 nlf = LIST_NEXT(lf, entries) [all...] |