Searched refs:bins (Results 1 - 18 of 18) sorted by relevance

/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/examples/canvas/
H A Dcitygrid.tcl186 lappend bins(l$olx) $n
187 lappend bins(r$orx) $n
188 lappend bins(u$oux) $n
189 lappend bins(d$odx) $n
206 foreach t $bins(d0) { foreach n $bins(u0) { lappend neigh($t,d) $n } }
207 foreach t $bins(d1) { foreach n $bins(u1) { lappend neigh($t,d) $n } }
208 foreach t $bins(l0) { foreach n $bins(r
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tdom/tdom/generic/
H A Ddomalloc.c103 static domAllocBins bins; variable
123 for (i=0; i < MAX_BINS; i++) bins.bin[i] = NULL;
124 for (i=0; i < CACHE_SIZE; i++) bins.blockCache[i] = NULL;
125 for (i=0; i < BIN_HASH_SIZE; i++) bins.hashedBlocks[i] = NULL;
143 hashedBlock = bins.hashedBlocks[i];
157 block->hashNext1 = bins.hashedBlocks[i];
161 block->hashNext2 = bins.hashedBlocks[i];
168 bins.hashedBlocks[i] = block;
199 | Rewrite with TSD-based bins to avoid mutex
207 if (bins
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dstrhash.c80 strhash_entry_t **bins; member in struct:idn__strhash
106 hash->bins = NULL;
108 WARNING(("idn__strhash_create: malloc failed (bins)\n"));
122 assert(hash != NULL && hash->bins != NULL);
125 strhash_entry_t *bin = hash->bins[i];
136 free(hash->bins);
150 if ((entry = find_entry(hash->bins[h_index], key, h)) != NULL) {
159 entry->next = hash->bins[h_index];
160 hash->bins[h_index] = entry;
184 entry = find_entry(hash->bins[
[all...]
/macosx-10.9.5/CPANInternal-140/YAML-Syck/
H A Dsyck_st.c42 * bins
44 * DEFAULT_INIT_TABLE_SIZE is the default for the number of bins
171 tbl->bins = (st_table_entry **)Calloc(size, sizeof(st_table_entry*));
217 ptr = table->bins[i];
224 free(table->bins);
239 ptr = (table)->bins[bin_pos];\
283 entry->next = table->bins[bin_pos];\
284 table->bins[bin_pos] = entry;\
335 ptr = table->bins[i];
344 free(table->bins);
[all...]
H A Dsyck_st.h20 struct st_table_entry **bins; member in struct:st_table
/macosx-10.9.5/tcl-102/tcl_ext/quicktimetcl/
H A DMakefile33 $(_v) $(RMDIR) $(SRCROOT)/$(Project)/{bins,macos,pkgIndex.tcl}
/macosx-10.9.5/ruby-104/ruby/
H A Dst.c48 * bins
50 * DEFAULT_INIT_TABLE_SIZE is the default for the number of bins
96 #define st_free_bins(bins, size) free(bins)
98 st_realloc_bins(st_table_entry **bins, st_index_t newsize, st_index_t oldsize) argument
100 bins = (st_table_entry **)realloc(bins, newsize * sizeof(st_table_entry *));
101 MEMZERO(bins, st_table_entry*, newsize);
102 return bins;
106 #define bins a macro
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/INIT/
H A Dexecrate.sh24 bins='/bin /usr/bin /usr/sbin'
115 *) for d in $bins
/macosx-10.9.5/procmail-14/procmail/
H A DMakefile34 # bins Preinstalls only the binaries to ./new
142 bins mans install.bin install.man install recommend install-suid clean setid \
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dppd-cache.c95 num_bins, /* Number of bins in file */
293 if ((pc->bins = calloc(num_bins, sizeof(pwg_map_t))) == NULL)
295 DEBUG_printf(("_ppdCacheCreateWithFile: Unable to allocate %d bins.",
318 map = pc->bins + pc->num_bins;
1021 if ((pc->bins = calloc(output_bin->num_choices,
1032 map = pc->bins;
1474 if (pc->bins)
1476 for (i = pc->num_bins, map = pc->bins; i > 0; i --, map ++)
1482 free(pc->bins);
1569 if (!_cups_strcasecmp(output_bin, pc->bins[
[all...]
H A Dppd-private.h114 int num_bins; /* Number of output bins */
115 pwg_map_t *bins; /* Output bins */ member in struct:_ppd_cache_s
/macosx-10.9.5/ruby-104/ruby/include/ruby/
H A Dst.h96 struct st_table_entry **bins; member in struct:st_table::__anon12385::__anon12386
/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/
H A DpmCPU.c82 static inline void machine_classify_interval(uint64_t interval, uint64_t *bins, uint64_t *binvals, uint32_t nbins) { argument
86 bins[i]++;
/macosx-10.9.5/procmail-14/procmail/src/
H A Dautoconf1478 bins="/bin"
1486 for oldd in $bins
1490 test found != "$oldid" && bins="$bins $newd" && lpath="$lpath:$newd"
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Demerge.el3176 (let ((bins (vector 0 0 0 0 0))
3179 (aset bins (% i 5) (% (+ (* (aref bins (% i 5)) 35)
3188 bins "")))
H A Dspeedbar.el2200 (bins (make-vector 256 nil))
2221 ;; Sort the whole list into bins.
2227 (aset bins 0 (cons e (aref bins 0))))
2230 (aset bins (aref s diff-idx)
2231 (cons e (aref bins (aref s diff-idx)))))))
2233 ;; Go through all our bins Stick singles into our
2239 ;; The bins contents are currently in forward order.
2240 (let ((l (aref bins diff-idx)))
/macosx-10.9.5/cups-372.4/cups/scheduler/
H A Dprinters.c4186 val->string.text = _cupsStrAlloc(p->pc->bins[i].pwg);
4192 if (!strcmp(p->pc->bins[i].ppd, output_bin->defchoice))
4199 "output-bin-default", NULL, p->pc->bins[i].pwg);
4203 "output-bin-default", NULL, p->pc->bins[0].pwg);
/macosx-10.9.5/emacs-92/emacs/lisp/play/
H A Ddunnet.el1466 "You are in a mailroom. There are many bins where the mail is usually
2127 (bin . -4) (bins . -4)
2400 "All of the bins are empty. Looking closely you can see that there

Completed in 170 milliseconds