HomeSort by: relevance | last modified time | path
    Searched defs:ln (Results 1 - 25 of 45) sorted by relevancy

1 2

  /src/usr.bin/xlint/llib/
Makefile 5 LIBS= llib-lposix.ln llib-lstdc.ln
16 llib-lposix.ln: llib-lposix
20 llib-lstdc.ln: llib-lstdc
  /src/usr.sbin/gspa/gspa/
gsp_pseu.c 49 unsigned ln; local in function:pseudo
60 if( !eval_expr(ops->op_u.value, &val, &ln) ){
94 eval_expr(o->op_u.value, &val, &ln);
126 if( !eval_expr(ops->op_u.value, &val, &ln) ){
146 eval_expr(ops->op_u.value, &val, &ln);
  /src/lib/libc/gen/
posix_spawnp.c 56 size_t lp, ln; local in function:posix_spawnp
79 ln = strlen(file);
108 if (lp + ln + 2 > sizeof(fpath)) {
116 memcpy(fpath + lp + 1, file, ln);
117 fpath[lp + ln + 1] = '\0';
execvp.c 63 size_t lp, ln; local in function:__weak_alias
76 ln = strlen(name);
108 if (lp + ln + 2 > sizeof(buf)) {
116 memcpy(buf + lp + 1, name, ln);
117 buf[lp + ln + 1] = '\0';
  /src/games/backgammon/common_source/
board.c 44 static char ln[60]; variable in typeref:typename:char[60]
66 strcpy(ln, bl);
69 ln[j + 1] = k % 10 + '0';
70 ln[j] = k / 10 + '0';
74 writel(ln);
76 strcpy(ln, sv);
84 ln[26] = 'w';
86 ln[25] = 'w';
88 ln[27] = 'w';
91 ln[54] = 'r'
    [all...]
  /src/sys/conf/
lint.mk 15 LOBJS?= ${_lsrc:T:.c=.ln} ${LIBKERNLN} ${SYSLIBCOMPATLN}
25 ${cfile:T:R}.ln: ${cfile}
  /src/usr.bin/xlint/lint1/
Makefile 19 LOBJS.${PROG}+= ${SRCS:M*.y:.y=.ln}
20 LOBJS.${PROG}+= ${SRCS:M*.l:.l=.ln}
59 cgram.ln: cgram.c
func.c 917 tnode_t *ln = expr_zero_alloc(sizeof(*ln), "tnode"); local in function:check_return_value
918 ln->tn_op = NAME;
919 ln->tn_type = expr_unqualified_type(funcsym->s_type->t_subt);
920 ln->tn_lvalue = true;
921 ln->u.sym = funcsym; /* better than nothing */
923 tnode_t *retn = build_binary(ln, RETURN, sys, tn);
  /src/sys/miscfs/nullfs/
null.h 102 struct layer_node ln; member in struct:null_node
104 #define null_hash ln.layer_hash
105 #define null_lowervp ln.layer_lowervp
106 #define null_vnode ln.layer_vnode
107 #define null_flags ln.layer_flags
  /src/sys/miscfs/overlay/
overlay.h 105 struct layer_node ln; member in struct:overlay_node
107 #define ov_hash ln.layer_hash
108 #define ov_lowervp ln.layer_lowervp
109 #define ov_vnode ln.layer_vnode
110 #define ov_flags ln.layer_flags
  /src/usr.bin/make/
lst.c 42 ListNode *ln = bmake_malloc(sizeof *ln); local in function:LstNodeNew
44 ln->prev = prev;
45 ln->next = next;
46 ln->datum = datum;
48 return ln;
54 ListNode *ln, *next; local in function:Lst_Done
56 for (ln = list->first; ln != NULL; ln = next)
65 ListNode *ln, *next; local in function:Lst_DoneFree
96 ListNode *ln; local in function:Lst_Prepend
115 ListNode *ln; local in function:Lst_Append
179 ListNode *ln; local in function:Lst_FindDatum
216 ListNode *ln; local in function:Lst_PrependAll
226 ListNode *ln; local in function:Lst_AppendAll
    [all...]
targ.c 138 GNodeListNode *ln; local in function:Targ_End
142 for (ln = allNodes.first; ln != NULL; ln = ln->next)
143 GNode_Free(ln->datum);
327 StringListNode *ln; local in function:Targ_FindList
329 for (ln = names->first; ln != NULL; ln = ln->next)
339 GNodeListNode *ln; local in function:PrintNodeNames
360 StringListNode *ln; local in function:Targ_PrintCmds
520 GNodeListNode *ln; local in function:Targ_PrintNodes
529 GNodeListNode *ln; local in function:PrintOnlySources
586 GNodeListNode *ln, *cln; local in function:Targ_Propagate
    [all...]
compat.c 229 * ln List node that contains the command
235 Compat_RunCommand(const char *cmdp, GNode *gn, StringListNode *ln)
270 LstNode_Set(ln, cmdStart);
360 LstNode_SetNull(ln);
443 StringListNode *ln; local in function:RunCommands
445 for (ln = gn->commands.first; ln != NULL; ln = ln->next) {
446 const char *cmd = ln->datum
474 GNodeListNode *ln; local in function:MakeWaitGroupsInRandomOrder
500 GNodeListNode *ln; local in function:MakeNodes
    [all...]
arch.c 374 ArchListNode *ln; local in function:ArchStatMember
382 for (ln = archives.first; ln != NULL; ln = ln->next) {
383 const Arch *a = ln->datum;
388 if (ln != NULL) {
391 ar = ln->datum;
816 GNodeListNode *ln; local in function:Arch_UpdateMemberMTime
818 for (ln = gn->parents.first; ln != NULL; ln = ln->next)
956 ArchListNode *ln; local in function:Arch_End
    [all...]
make.c 374 GNodeListNode *ln; local in function:GNode_IsOODate
375 for (ln = gn->parents.first; ln != NULL; ln = ln->next)
376 GNode_UpdateYoungestChild(ln->datum, gn);
385 GNodeListNode *ln; local in function:PretendAllChildrenAreMade
387 for (ln = pgn->children.first; ln != NULL; ln = ln->next)
414 GNodeListNode *ln; \/* An element in the children list *\/ local in function:Make_HandleUse
500 GNodeListNode *ln, *nln; local in function:HandleUseNodes
594 GNodeListNode *ln; local in function:UpdateImplicitParentsVars
611 GNodeListNode *ln; local in function:IsWaitingForOrder
633 GNodeListNode *ln; local in function:ScheduleOrderSuccessors
670 GNodeListNode *ln; local in function:Make_Update
809 GNodeListNode *ln; local in function:UnmarkChildren
906 GNodeListNode *ln; local in function:GNode_SetLocalVars
928 GNodeListNode *ln; local in function:ScheduleRandomly
980 ListNode *ln; local in function:MakeBuildChild
998 GNodeListNode *ln; local in function:MakeChildren
1111 GNodeListNode *ln; local in function:MakePrintStatusOrder
1202 GNodeListNode *ln; local in function:MakePrintStatusList
1212 GNodeListNode *ln; local in function:ExamineLater
1307 GNodeListNode *ln; local in function:AddWaitDependency
1339 GNodeListNode *ln; local in function:Make_ProcessWait
1356 GNodeListNode *waitNode, *ln; local in function:Make_ProcessWait
    [all...]
  /src/regress/sys/uvm/pdsim/
lirs.c 273 char *ln; local in function:test
275 for (;; free(ln)) {
279 ln = fparseln(stdin, NULL, NULL, NULL, 0);
280 if (ln == NULL) {
283 ch = *ln;
293 i = atoi(ln);
pdsim.c 244 char *ln; local in function:test
246 for (;; free(ln)) {
250 ln = fparseln(stdin, NULL, NULL, NULL, 0);
251 if (ln == NULL) {
254 ch = *ln;
262 i = atoi(ln);
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gem_object.c 119 struct i915_lut_handle *lut, *ln; local in function:i915_gem_close_object
123 list_for_each_entry_safe(lut, ln, &obj->lut_list, obj_link) {
148 list_for_each_entry_safe(lut, ln, &close, obj_link) {
  /src/usr.bin/grep/
util.c 192 struct str ln; local in function:procfile
222 ln.file = grep_malloc(strlen(fn) + 1);
223 strcpy(ln.file, fn);
224 ln.line_no = 0;
225 ln.len = 0;
227 ln.off = -1;
230 ln.off += ln.len + 1;
231 if ((ln.dat = grep_fgetln(f, &ln.len)) == NULL || ln.len == 0
    [all...]
  /src/sys/net/
nd.c 54 struct llentry *ln = arg; local in function:nd_timer
64 LLE_WLOCK(ln);
66 if (!(ln->la_flags & LLE_LINKED))
68 if (ln->ln_ntick > 0) {
69 nd_set_timer(ln, ND_TIMER_TICK);
73 nd = nd_find_domain(ln->lle_tbl->llt_af);
74 ifp = ln->lle_tbl->llt_ifp;
78 memcpy(&taddr, &ln->r_l3addr, sizeof(taddr));
80 switch (ln->ln_state) {
82 LLE_REMREF(ln);
    [all...]
  /src/sys/kern/
subr_userconf.c 385 int ln; local in function:userconf_change
415 for (ln = 0; ln < nld; ln++)
417 userconf_modify(&ld[ln], l);
  /src/sys/miscfs/fdesc/
fdesc_vnops.c 685 const char *ln = VTOFDESC(vp)->fd_link; local in function:fdesc_readlink
686 error = uiomove(__UNCONST(ln), strlen(ln), ap->a_uio);
  /src/sys/miscfs/umapfs/
umap.h 84 struct layer_node ln; member in struct:umap_node
90 #define umap_hash ln.layer_hash
91 #define umap_lowervp ln.layer_lowervp
92 #define umap_vnode ln.layer_vnode
93 #define umap_flags ln.layer_flags
  /src/share/mk/
bsd.sys.mk 276 .SUFFIXES: .o .ln .lo .c .cc .cpp .cxx .C .m ${YHEADER:D.h}
284 .c.ln:
bsd.lib.mk 95 MKDEP_SUFFIXES?= .o .po .pico .go .ln .d
157 .SUFFIXES: .out .a .ln .pico .po .go .o .s .S .c .cc .cpp .cxx .C .m .F .f .r .y .l .cl .p .h
328 .f.ln:
422 _LIB.ln:=llib-l${LIB}.ln
458 LOBJS+=${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
499 _LIBS+=${_LIB.ln}
767 ${_LIB.ln}: ${LOBJS}
807 LIBCLEANFILES5+= ${_LIB.ln} ${LOBJS} llib-lmanual-lint.l
    [all...]

Completed in 23 milliseconds

1 2