Searched refs:nlist (Results 1 - 25 of 176) sorted by relevance

12345678

/macosx-10.10.1/Libc-1044.1.2/include/
H A Dnlist.h38 * @(#)nlist.h 8.2 (Berkeley) 1/21/94
46 * nlist.h can initialize nlist structures statically.
48 struct nlist { struct
82 int nlist(const char *, struct nlist *);
H A Dkvm.h65 #include <nlist.h>
81 int kvm_nlist(kvm_t *, struct nlist *);
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Drpclog.c102 #include <nlist.h>
147 struct nlist symtab[QMEM_X + 2];
152 nlist ("/vmunix", symtab);
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/functions/
H A Dautoload.v272 local -a nlist
77 *) nlist[nnl]="${_AUTOLOADS[i]}" ; (( nnl += 1 ));;
82 eval _AUTOLOADS=( ${nlist[@]} )
/macosx-10.10.1/emacs-93/emacs/lisp/progmodes/
H A Debnf-otz.el277 (nlist (car hlist))
279 (elist (ebnf-split-header-suffix nlist zlist)))
289 (let* ((nl (ebnf-extract-empty nlist))
301 (nnode (ebnf-map-list-to-optional nlist)))
303 (setq nlist (list nnode)))
304 (if (or (null nlist)
305 (and (= (length nlist) 1)
306 (eq (ebnf-node-kind (car nlist))
310 (list (or (ebnf-prefix-suffix nlist)
311 (ebnf-create-alternative nlist))
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/db/internal/
H A Ddb_java.java12 public static void DbEnv_lock_vec(DbEnv dbenv, int locker, int flags, com.sleepycat.db.LockRequest[] list, int offset, int nlist) throws com.sleepycat.db.DatabaseException { argument
13 db_javaJNI.DbEnv_lock_vec(DbEnv.getCPtr(dbenv), dbenv, locker, flags, list, offset, nlist);
/macosx-10.10.1/xnu-2782.1.97/EXTERNAL_HEADERS/mach-o/
H A Dnlist.h25 /* $NetBSD: nlist.h,v 1.5 1994/10/26 00:56:11 cgd Exp $ */
64 * @(#)nlist.h 8.2 (Berkeley) 1/21/94
76 struct nlist { struct
175 * the undefined symbols in the symbol table (the nlist structures) are marked
182 * The implementation of marking nlist structures in the symbol table for
185 * of an nlist structure for an undefined symbol to determine the type of
222 * undefined references from module defined in another use the same nlist struct
304 * The function nlist(3) from the C library.
306 extern int nlist (const char *filename, struct nlist *lis
[all...]
H A DMakefile13 nlist.h \
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/menubar/
H A Dtree.tcl97 set nlist {}
99 lappend nlist [my Name2Node ${name}]
101 return ${nlist}
107 set nlist {}
109 lappend nlist [my Node2Name ${node}]
111 return ${nlist}
161 set nlist [my Names2NodeList {*}${args}]
162 set children [lreplace ${children} ${idx} ${idx} {*}${nlist}]
417 set nlist ""
431 lappend nlist
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/loadables/
H A Dprint.c117 WORD_LIST *nlist; local
120 nlist = make_word_list (w, list);
121 r = printf_builtin (nlist);
122 nlist->next = (WORD_LIST *)NULL;
123 dispose_words (nlist);
/macosx-10.10.1/Libc-1044.1.2/gen/
H A Dnlist.c94 #include <mach-o/nlist.h>
105 int __fdnlist(int fd, struct nlist *list);
108 * nlist - retreive attributes from name list (string table version)
112 nlist(name, list) function
114 struct nlist *list;
131 struct nlist *list;
133 register struct nlist *p, *q;
140 struct nlist space[BUFSIZ/sizeof (struct nlist)];
289 n = stp->nsyms * sizeof(struct nlist);
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/
H A Dbout.h106 struct nlist struct
111 struct nlist * n_next;
/macosx-10.10.1/xnu-2782.1.97/libkern/libkern/
H A Dkernel_mach_header.h48 #include <mach-o/nlist.h>
70 typedef struct nlist kernel_nlist_t;
/macosx-10.10.1/bootp-298/bootplib/
H A DDNSNameList.c299 DNSNameOffsetsListInit(DNSNameOffsetsListRef nlist) argument
301 bzero(nlist, sizeof(*nlist));
306 DNSNameOffsetsListFreeElements(DNSNameOffsetsListRef nlist) argument
308 if (nlist->dnl_list != NULL) {
310 for (i = 0; i < nlist->dnl_count; i++) {
311 DNSNameOffsetsFree(nlist->dnl_list + i);
313 free(nlist->dnl_list);
315 DNSNameOffsetsListInit(nlist);
320 DNSNameOffsetsListAdd(DNSNameOffsetsListRef nlist, DNSNameOffsetsRe argument
348 DNSNameOffsetsListElement(DNSNameOffsetsListRef nlist, int i) argument
354 DNSNameOffsetsListCount(DNSNameOffsetsListRef nlist) argument
[all...]
/macosx-10.10.1/screen-22/screen/
H A Dloadav.c269 # include <nlist.h>
274 extern int nlist __P((char *, struct nlist *));
278 # define nlist nlist64 macro
281 static struct nlist nl[2];
285 # define nlist(u,l) knlist(l,1,sizeof(*l)) macro
304 nlist(LOADAV_UNIX, nl);
/macosx-10.10.1/ntp-92/include/
H A Dl_stdlib.h101 struct nlist;
102 extern int nlist (const char *, struct nlist *);
/macosx-10.10.1/tcl-105/tk/tk/macosx/
H A DtkMacOSXDebug.c22 #include <mach-o/nlist.h>
124 struct nlist *sym;
135 sym = (struct nlist *) (base + st->symoff);
/macosx-10.10.1/adv_cmds-158/ps/
H A Dextern.h34 struct nlist;
72 void nlisterr(struct nlist *);
/macosx-10.10.1/BerkeleyDB-21/db/examples_c/
H A Dex_thread.c71 int nlist; /* -n */ variable
105 nlist = 1000;
117 nlist = atoi(optarg);
239 n = rand() % nlist;
293 n = rand() % nlist;
568 if ((list = malloc(nlist * sizeof(char *))) == NULL)
571 for (cnt = 0; cnt < nlist; ++cnt) {
577 nlist = cnt; /* In case nlist was larger than possible. */
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Darrayfunc.c273 WORD_LIST *list, *nlist; local
301 nlist = list ? expand_words_no_vars (list) : (WORD_LIST *)NULL;
308 return nlist;
312 assign_compound_array_list (var, nlist, flags)
314 WORD_LIST *nlist;
331 for (list = nlist; list; list = list->next)
403 WORD_LIST *nlist; local
408 nlist = expand_compound_array_assignment (value, flags);
409 assign_compound_array_list (var, nlist, flags);
411 if (nlist)
[all...]
/macosx-10.10.1/ruby-106/ruby/
H A Ddln.c289 static struct nlist *
292 struct nlist * buffer;
293 struct nlist * sym;
294 struct nlist * end;
303 buffer = (struct nlist*)xmalloc(hdrp->a_syms + size);
316 end = sym + hdrp->a_syms / sizeof(struct nlist);
331 sym_hash(struct exec *hdrp, struct nlist *syms)
334 struct nlist *sym = syms;
335 struct nlist *end = syms + (hdrp->a_syms / sizeof(struct nlist));
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Dsetattr.c77 WORD_LIST *nlist, *tlist; local
174 nlist = make_word_list (w, list);
175 opt = declare_builtin (nlist);
180 free (nlist);
/macosx-10.10.1/tcsh-65/tcsh/
H A Dtw.init.c47 size_t nlist, /* Number of items */ member in struct:__anon13869
113 if (sl->tlist <= sl->nlist) {
129 for (i = 0; i < sl->nlist; i++)
134 ptr = sl->list[sl->nlist++] = &sl->buff[sl->nbuff];
150 sl->tlist = sl->nlist = 0;
321 qsort(tw_cmd.list, tw_cmd.nlist, sizeof(Char *), fcompare);
324 for (i = 0, fwd = 0; i + 1 < tw_cmd.nlist; i++) {
333 tw_cmd.nlist -= fwd;
393 if (tw_cmd_state.cur < tw_cmd.nlist) {
821 for (i = 0; i < tw_item.nlist;
[all...]
/macosx-10.10.1/ntp-92/ntpdate/
H A Dntpdate.c1011 register int nlist; local
1029 nlist = 0; /* none yet */
1077 for (i = 0; i < nlist; i++)
1080 for ( ; i < nlist; i++) {
1093 for (j = nlist; j > i; j--)
1102 if (nlist < NTP_MAXLIST)
1103 nlist++;
1111 for (i = 1; i < nlist; i++)
1114 nlist = i;
1125 if (nlist
[all...]
H A Dntptimeset.c1308 register int nlist; local
1326 nlist = 0; /* none yet */
1354 for (i = 0; i < nlist; i++)
1357 for ( ; i < nlist; i++) {
1370 for (j = nlist; j > i; j--)
1379 if (nlist < NTP_MAXLIST)
1380 nlist++;
1388 for (i = 1; i < nlist; i++)
1391 nlist = i;
1402 if (nlist
[all...]

Completed in 188 milliseconds

12345678