Searched refs:sl (Results 1 - 25 of 263) sorted by relevance

1234567891011

/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dstringlist.c51 StringList *sl; local
53 sl = malloc(sizeof(StringList));
54 if (sl == NULL)
57 sl->sl_cur = 0;
58 sl->sl_max = _SL_CHUNKSIZE;
59 sl->sl_str = malloc(sl->sl_max * sizeof(char *));
60 if (sl->sl_str == NULL)
62 return sl;
70 sl_add(sl, nam
[all...]
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libnetbsd/
H A Dsl_init.c50 StringList *sl; local
52 sl = malloc(sizeof(StringList));
53 if (sl == NULL)
56 sl->sl_cur = 0;
57 sl->sl_max = _SL_CHUNKSIZE;
58 sl->sl_str = malloc(sl->sl_max * sizeof(char *));
59 if (sl->sl_str == NULL) {
60 free(sl);
61 sl
71 sl_add(StringList *sl, char *name) argument
92 sl_free(StringList *sl, int all) argument
112 sl_find(StringList *sl, char *name) argument
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dstringlist.c64 strlist_resize (sl, n)
65 STRINGLIST *sl;
70 if (sl == 0)
71 return (sl = strlist_create (n));
73 if (n > sl->list_size)
75 sl->list = strvec_resize (sl->list, n + 1);
76 for (i = sl->list_size; i <= n; i++)
77 sl->list[i] = (char *)NULL;
78 sl
150 STRINGLIST *sl; local
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rubygems/
H A Dtest_gem_source_list.rb11 @sl = Gem::SourceList.new
12 @sl << @source
16 sl = Gem::SourceList.from [@uri]
18 assert_equal [Gem::Source.new(@uri)], sl.sources
22 sl = Gem::SourceList.new
23 source = (sl << @uri)
30 assert_equal [source], sl.sources
34 sl = Gem::SourceList.new
35 sl.replace [@uri]
37 assert_equal [@source], sl
[all...]
H A Dtest_gem_source_local.rb10 @sl = Gem::Source::Local.new
23 @sl.load_specs(:released).sort
27 assert_equal [@ap.name_tuple], @sl.load_specs(:prerelease)
36 @sl.load_specs(:latest).sort
40 assert_equal "a-1", @sl.find_gem("a").full_name
47 assert_equal "a-2", @sl.find_gem("a").full_name
56 assert_equal "a-1", @sl.find_gem("a", req).full_name
61 assert_equal "a-2.a", @sl.find_gem("a", req, true).full_name
65 s = @sl.fetch_spec @a.name_tuple
70 path = @sl
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/mod_db4/
H A Dskiplist.c46 void skiplisti_init(Skiplist *sl) { argument
47 sl->compare = (SkiplistComparator)NULL;
48 sl->comparek = (SkiplistComparator)NULL;
49 sl->height=0;
50 sl->preheight=0;
51 sl->size=0;
52 sl->top = NULL;
53 sl->bottom = NULL;
54 sl->index = NULL;
67 void skiplist_init(Skiplist *sl) { argument
74 skiplist_set_compare(Skiplist *sl, SkiplistComparator comp, SkiplistComparator compk) argument
85 skiplist_add_index(Skiplist *sl, SkiplistComparator comp, SkiplistComparator compk) argument
116 skiplist_getlist(Skiplist *sl) argument
121 skiplist_find(Skiplist *sl, void *data, struct skiplistnode **iter) argument
138 Skiplist *sl; local
149 skiplisti_find_compare(Skiplist *sl, void *data, struct skiplistnode **ret, SkiplistComparator comp) argument
179 skiplist_next(Skiplist *sl, struct skiplistnode **iter) argument
184 skiplist_previous(Skiplist *sl, struct skiplistnode **iter) argument
189 skiplist_insert(Skiplist *sl, void *data) argument
195 skiplist_insert_compare(Skiplist *sl, void *data, SkiplistComparator comp) argument
301 skiplist_append(Skiplist *sl, void *data) argument
413 skiplist_remove(Skiplist *sl, void *data, FreeFunc myfree) argument
418 skiplist_print_struct(Skiplist *sl, char *prefix) argument
433 skiplisti_remove(Skiplist *sl, struct skiplistnode *m, FreeFunc myfree) argument
470 Skiplist *sl; local
483 skiplist_remove_all(Skiplist *sl, FreeFunc myfree) argument
[all...]
H A Dskiplist.h56 Skiplist *sl; member in struct:skiplistnode
60 void skiplist_init(Skiplist *sl);
61 void skiplist_set_compare(Skiplist *sl, SkiplistComparator,
63 void skiplist_add_index(Skiplist *sl, SkiplistComparator,
65 struct skiplistnode *skiplist_getlist(Skiplist *sl);
66 void *skiplist_find_compare(Skiplist *sl, void *data, struct skiplistnode **iter,
68 void *skiplist_find(Skiplist *sl, void *data, struct skiplistnode **iter);
69 void *skiplist_next(Skiplist *sl, struct skiplistnode **);
70 void *skiplist_previous(Skiplist *sl, struct skiplistnode **);
72 struct skiplistnode *skiplist_insert_compare(Skiplist *sl,
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/wind/
H A Dutil.py37 def subList(l, sl) :
38 """return the index of sl in l or None"""
40 slLen = len(sl)
43 while j < slLen and l[i + j] == sl[j]:
/macosx-10.9.5/bash-92/bash-3.2/lib/intl/
H A Dos2compat.c59 size_t sl = strlen (root); local
60 _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1);
61 memcpy (_nlos2_libdir, root, sl);
62 memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1);
73 size_t sl = strlen (root); local
74 _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1);
75 memcpy (_nlos2_localealiaspath, root, sl);
76 memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1);
87 size_t sl = strlen (root); local
88 _nlos2_localedir = (char *) malloc (sl
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/sl/
H A Dsl_locl.h45 #include <sl.h>
H A DNTMakefile32 RELDIR=lib\sl
36 INCFILES=$(INCDIR)\sl.h
38 $(LIBSL): $(OBJ)\sl.obj
/macosx-10.9.5/bash-92/bash-3.2/
H A Dpcomplete.c217 STRINGLIST *sl; local
219 sl = itp->slist;
220 if (sl)
223 strvec_flush (sl->list);
225 free (sl->list);
226 free (sl);
269 filter_stringlist (sl, filterpat, text)
270 STRINGLIST *sl;
277 if (sl == 0 || sl
309 STRINGLIST *sl; local
343 STRINGLIST *sl; local
371 STRINGLIST *sl; local
406 STRINGLIST *sl; local
424 STRINGLIST *sl; local
441 STRINGLIST *sl; local
460 STRINGLIST *sl; local
495 STRINGLIST *sl; local
512 STRINGLIST *sl; local
572 STRINGLIST *sl; local
590 STRINGLIST *sl; local
612 STRINGLIST *sl; local
626 STRINGLIST *sl; local
646 STRINGLIST *ret, *sl; local
798 STRINGLIST *sl; local
817 STRINGLIST *sl; local
989 STRINGLIST *sl; local
1075 STRINGLIST *sl; local
[all...]
/macosx-10.9.5/tcsh-65/tcsh/
H A Dtw.help.c184 nextslist(const Char *sl, Char *np) argument
186 if (!*sl)
188 else if (*sl == ':') {
193 while (*sl && *sl != ':')
194 *np++ = *sl++;
204 skipslist(Char *sl) argument
206 while (*sl && *sl++ != ':')
208 return (sl);
[all...]
H A Dtw.init.c109 tw_str_add(stringlist_t *sl, size_t len) argument
113 if (sl->tlist <= sl->nlist) {
115 sl->tlist += TW_INCR;
116 sl->list = xrealloc(sl->list, sl->tlist * sizeof(Char *));
119 if (sl->tbuff <= sl->nbuff + len) {
122 ptr = sl
144 tw_str_free(stringlist_t *sl) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/test/
H A Dtest_syslog.rb132 Syslog.open("syslog_test", options) { |sl|
133 sl.log(Syslog::LOG_NOTICE, "test1 - hello, %s!", "world")
134 sl.notice("test1 - hello, %s!", "world")
137 Syslog.open("syslog_test", options | Syslog::LOG_PID) { |sl|
138 sl.log(Syslog::LOG_CRIT, "test2 - pid")
139 sl.crit("test2 - pid")
173 Syslog.open { |sl|
176 sl.ident,
177 sl.options,
178 sl
[all...]
/macosx-10.9.5/iodbc-42.5/iodbc/iodbc/
H A Dinstall_libodbc.sh114 libiodbc.sl.*)
115 rm -f libodbc.sl
116 ln -s $lib libodbc.sl
/macosx-10.9.5/ruby-104/ruby/test/ruby/enc/
H A Dtest_utf32.rb60 sl = "a\0".force_encoding("utf-32le")
62 assert_equal(sl, sl.chomp)
67 sl = "a\0\0\0".force_encoding("utf-32le")
69 assert_equal("a".ord, sl.ord)
87 sl = "a\0\0\0".force_encoding("utf-32le")
89 assert_equal(sl, "a".ord.chr("utf-32le"))
H A Dtest_utf16.rb308 sl = "f\0o\0o\0\n\0b\0a\0r\0\n\0b\0a\0z\0\n\0".force_encoding("utf-16le")
310 al = sl.lines.to_a
319 sl = "f\0o\0o\0\n\0".force_encoding("utf-16le")
323 assert_equal(sl2, sl.chomp)
324 assert_equal(sl2, sl.chomp.chomp)
328 sl = "f\0o\0o\0\n".force_encoding("utf-16le")
330 assert_equal(sl, sl.chomp)
353 sl = "\x42\xd8\xb7\xdf".force_encoding("utf-16le")
356 assert_equal(1, sl
[all...]
/macosx-10.9.5/emacs-92/emacs/src/s/
H A Dhpux10.h46 #define LIBS_SYSTEM -ln -l:libdld.sl
48 #define LIBS_SYSTEM -l:libdld.sl
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/ldapc++/src/
H A DStringList.h32 StringList(const StringList& sl);
H A DStringList.cpp17 StringList::StringList(const StringList& sl){ argument
18 m_data= StringList::ListType(sl.m_data);
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/
H A Dsasl.c204 lookup_info *sl = (lookup_info *)op->o_callback->sc_private; local
208 for( i = 0; sl->list[i].name; i++ ) {
209 const char *name = sl->list[i].name;
212 if ( sl->flags & SASL_AUXPROP_AUTHZID ) continue;
219 } else if ( !(sl->flags & SASL_AUXPROP_AUTHZID ) )
222 if ( sl->list[i].values ) {
223 if ( !(sl->flags & SASL_AUXPROP_OVERRIDE) ) continue;
236 if ( ad == slap_schema.si_ad_userPassword && sl->list[i].values &&
245 if ( sl->list[i].values && ( sl
301 lookup_info sl; local
762 lookup_info sl = {0}; local
1324 slapd_map_data *sl = private; local
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dmd5crypt.c56 int sl, pl, i, j; local
74 sl = ep - sp;
77 memcpy(salt_copy, sp, sl);
78 salt_copy[sl] = '\0';
89 MD5_Update(&ctx, sp, sl);
94 MD5_Update(&ctx1, sp, sl);
129 MD5_Update(&ctx1, sp, sl);
/macosx-10.9.5/Heimdal-323.92.1/admin/
H A Dktutil_locl.h61 #include <sl.h>
/macosx-10.9.5/ruby-104/ruby/lib/irb/cmd/
H A Dload.rb45 when /\.(so|o|sl)$/

Completed in 246 milliseconds

1234567891011