Searched refs:nel (Results 1 - 23 of 23) sorted by relevance

/macosx-10.10.1/Libc-1044.1.2/stdlib/FreeBSD/
H A Dhcreate.c91 hcreate(size_t nel) argument
102 /* If nel is too small, make it min sized. */
103 if (nel < MIN_BUCKETS)
104 nel = MIN_BUCKETS;
107 if (nel > MAX_BUCKETS)
108 nel = MAX_BUCKETS;
111 if ((nel & (nel - 1)) != 0) {
112 for (p2 = 0; nel != 0; p2++)
113 nel >>
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/hsearch/
H A Dhsearch.c65 __db_hcreate(nel)
66 size_t nel;
77 (ret = dbp->set_h_nelem(dbp, (u_int32_t)nel)) != 0 ||
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dhsearch.c94 int hcreate(size_t nel) argument
96 int hcreate(nel)
97 size_t nel;
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dsort.c175 int nel; local
177 for ( nel = 0; vals[nel] != NULL; nel++ )
180 qsort( vals, nel, sizeof(char *), cmp );
/macosx-10.10.1/hfs-285/fsck_hfs/dfalib/
H A DHardLinkCheck.c103 find_id(struct HardLinkList *list, int nel, int id) argument
106 for (i = 0; i < nel; i++) {
114 tsort(struct HardLinkList *list, int nel) argument
121 tmp = calloc(sizeof(struct HardLinkList), nel);
133 qsort(list, nel, sizeof(list[0]), chain_compare);
135 for (cur_indx = 0; cur_indx < nel; cur_indx++) {
148 int j = find_id(list, nel, i);
163 memcpy(list, tmp, nel * sizeof(struct HardLinkList));
/macosx-10.10.1/copyfile-118.1.2/
H A Dcopyfile.c181 int nel; local
194 nel = 10; // Most files don't have many EAs
195 ptrs = (char**)calloc(nel, sizeof(char*));
213 if (indx == nel) {
214 nel += 10;
215 ptrs = realloc(ptrs, sizeof(char**) * nel);
223 for (nel = 0; nel < indx-1; nel++) {
224 printf("\tEA %d = `%s'\n", nel, ptr
[all...]
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dterminfo.vim60 \ mvpa mcuu1 nel porder oc op pad dch dl cud
/macosx-10.10.1/ncurses-44/ncurses/misc/
H A Dterminfo.src314 kcud1=^J, nel=^M^J, .kbs=^H,
527 kf2=\EOR, kf4=\EOS, khome=\E[H, nel=^M\ED, rc=\E8, ri=\EM,
577 kich1=\E[L, mc4=\E[4i, mc5=\E[5i, nel=\r\E[S,
679 nel=^M^J, op=\E[m, rc=\E8, rev=\E[7m, ri=\EM, rmir=\E[4l,
731 kspd=^Z, nel=^M^J, rc=\E8, rev=\E[7m, ri=\EM, rmam=\E[?7l,
890 kspd=^Z, nel=^M^J, op=\E[39;49m, rc=\E8, rev=\E[7m, ri=\E[T,
1003 knp=\E[U, kpp=\E[V, krmir=\E0, nel=\r\E[S, rc=\E8, rev=\E[7m,
1021 nel=^M^J, rev=\E[7m, rmso=\E[m, rmul=\E[m, sgr0=\E[m,
1164 ksav=\EOo, kslt=\ENI, kund=\EOs, nel=\EE, rev=\E[7m, ri=\EM,
1220 kspd=\E[217q, nel
[all...]
H A Demx.src78 nel=^M^J,
/macosx-10.10.1/SmartcardCCID-55008/libusb/libusb/libusb/os/
H A Dwindows_usb.c377 static int htab_create(struct libusb_context *ctx, unsigned long nel) argument
386 // Change nel to the first prime number not smaller as nel.
387 nel |= 1;
388 while(!isprime(nel))
389 nel += 2;
391 htab_size = nel;
392 usbi_dbg("using %d entries hash table", nel);
/macosx-10.10.1/vim-55/runtime/lang/
H A Dmenu_it_it.latin1.vim26 "NOTA: fa conflitto con 'cerca' nel menu 'modifica'
252 menut &Show\ filetypes\ in\ menu Mo&Stra\ tipi\ di\ file\ nel\ menu
/macosx-10.10.1/ruby-106/ruby/
H A Dutil.c305 ruby_qsort(void* base, const size_t nel, const size_t size, cmpfunc_t *cmp, void *d) argument
310 char *R = (char*)base + size*(nel-1); /* right end of current region */
318 if (nel <= 1) return; /* need not to sort */
362 if (chklim && nel >= chklim) { /* check if already ascending order */
379 if (chklim && nel >= chklim) { /* check if already ascending order */
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSPosix/
H A DmDNSPosix.c1358 mDNSexport void mDNSPlatformQsort(void *base, int nel, int width, int (*compar)(const void *, const void *)) argument
1360 return (qsort(base, nel, width, compar));
/macosx-10.10.1/ruby-106/ruby/test/rexml/
H A Dtest_core.rb643 nel = Document.new( out)
644 assert_equal( val, nel.root.attributes["x"] )
/macosx-10.10.1/dtrace-147/libdtrace/
H A Ddt_aggregate.c1705 dt_aggregate_qsort(dtrace_hdl_t *dtp, void *base, size_t nel, size_t width, argument
1728 qsort(base, nel, width, compar);
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSWindows/
H A DmDNSWin32.c651 mDNSexport void mDNSPlatformQsort(void *base, int nel, int width, int (*compar)(const void *, const void *)) argument
654 (void)nel;
/macosx-10.10.1/ncurses-44/ncurses/include/
H A DCaps.uwin395 newline nel str nw - - YB-G-* newline (behave like cr followed by lf)
H A DCaps427 newline nel str nw - - YB-G-* newline (behave like cr followed by lf)
H A DCaps.aix4427 newline nel str nw - - YB-G-* newline (behave like cr followed by lf)
H A DCaps.hpux11429 newline nel str nw - - YB-G-* newline (behave like cr followed by lf)
H A DCaps.keys429 newline nel str nw - - YB-G-* newline (behave like cr followed by lf)
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSCore/
H A DmDNSEmbeddedAPI.h3087 extern void mDNSPlatformQsort (void *base, int nel, int width, int (*compar)(const void *, const void *));
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSMacOSX/
H A DmDNSMacOSX.c10216 mDNSexport void mDNSPlatformQsort ( void *base, int nel, int width, int (*compar)(const void *, const void *)) argument
10218 return (qsort(base, nel, width, compar));

Completed in 267 milliseconds