Searched refs:sizes (Results 51 - 75 of 111) sorted by relevance

12345

/macosx-10.10/cups-408/cups/ppdc/
H A Dppdpo.cxx176 for (m = (ppdcMediaSize *)d->sizes->first();
178 m = (ppdcMediaSize *)d->sizes->next())
H A Dppdc.h381 *sizes; // Fixed sizes member in class:ppdcDriver
384 int variable_paper_size; // Support variable sizes?
409 void add_size(ppdcMediaSize *m) { sizes->add(m); }
474 *sizes, // Predefined media sizes member in class:ppdcSource
H A Dppdc-source.cxx64 sizes = new ppdcArray();
114 sizes->release();
264 for (m = (ppdcMediaSize *)sizes->first(); m; m = (ppdcMediaSize *)sizes->next())
2624 sizes->add(m);
2782 d->sizes->add(m);
3120 d->sizes->add(dm);
3374 !d->sizes->count)
3736 // Output all of the media sizes...
3742 for (si = (ppdcMediaSize *)d->sizes
[all...]
/macosx-10.10/libpcap-48/libpcap/msdos/
H A Dpkt_rx1.s6 ; these sizes MUST be equal to the sizes in PKTDRVR.H
H A Dpkt_rx0.asm13 ; these sizes MUST be equal to the sizes in PKTDRVR.H
/macosx-10.10/system_cmds-643.1.1/vm_purgeable_stat.tproj/
H A Dvm_purgeable_stat.c35 char sizes[] = {'B', 'K', 'M', 'G', 'T'}; local
42 return sizes[index];
/macosx-10.10/apr-32/apr/apr/file_io/win32/
H A Dfilestat.c356 DWORD *sizes = &wininfo->nFileSizeHigh + byhandle; local
366 finfo->size = (apr_off_t)sizes[1]
367 | ((apr_off_t)sizes[0] << 32);
369 finfo->size = (apr_off_t)sizes[1];
370 if (finfo->size < 0 || sizes[0])
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DMethodWriter.java623 // updates current and max stack sizes
645 // updates current and max stack sizes only if opcode == NEWARRAY
663 // updates current and max stack sizes
710 // updates current and max stack sizes only if opcode == NEW
747 // updates current and max stack sizes
771 * computed. More precisely this intVal field stores the sizes of
775 // the above sizes have not been computed yet, so we compute
788 // updates current and max stack sizes
872 // resets the relative current and max stack sizes
891 // updates current and max stack sizes
1496 resizeInstructions( final int[] indexes, final int[] sizes, final int len) argument
1967 getNewOffset( final int[] indexes, final int[] sizes, final int begin, final int end) argument
2002 getNewOffset( final int[] indexes, final int[] sizes, final Label label) argument
[all...]
/macosx-10.10/groff-38/groff/src/libs/libgroff/
H A Dfont.cpp922 else if (strcmp("sizes", p) == 0) {
924 sizes = new int[n];
930 t.error("list of sizes must be terminated by `0'");
949 int *old_sizes = sizes;
950 sizes = new int[n*2];
951 memcpy(sizes, old_sizes, n*sizeof(int));
955 sizes[i++] = lower;
958 sizes[i++] = upper;
961 t.error("must have some sizes");
1024 if (sizes
[all...]
/macosx-10.10/cups-408/cups/cups/
H A Dppd-private.h116 int num_sizes; /* Number of media sizes */
117 pwg_size_t *sizes; /* Media sizes */ member in struct:_ppd_cache_s
H A Dppd-cache.c64 num_sizes, /* Number of sizes in file */
311 if ((pc->sizes = calloc((size_t)num_sizes, sizeof(pwg_size_t))) == NULL)
313 DEBUG_printf(("_ppdCacheCreateWithFile: Unable to allocate %d sizes.",
330 size = pc->sizes + pc->num_sizes;
565 DEBUG_printf(("_ppdCacheCreateWithFile: Not enough sizes (%d < %d).",
685 if ((pc->sizes = calloc((size_t)ppd->num_sizes, sizeof(pwg_size_t))) == NULL)
692 for (i = ppd->num_sizes, pwg_size = pc->sizes, ppd_size = ppd->sizes;
714 if (!strcmp(pc->sizes[j].map.pwg, pwg_media->pwg))
768 for (k = pc->num_sizes, similar = 0, old_size = pc->sizes, new_siz
[all...]
H A Dtestpwg.c54 num_media; /* Number of media sizes */
56 int dupmedia = 0; /* Duplicate media sizes? */
449 for (i = pc->num_sizes, size = pc->sizes, size2 = pc2->sizes;
H A Dmark.c816 * Handle custom page sizes...
994 ppd->sizes[j].marked = !_cups_strcasecmp(ppd->sizes[j].name,
/macosx-10.10/groff-38/groff/src/devices/xditview/
H A DDviP.h77 DviFontSizeList *sizes; member in struct:_dviFontList
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/tests/
H A Dnameref.sh433 nameref sizes=baz
434 typeset -A -i sizes
435 sizes[bar]=1
436 [[ ${sizes[*]} == 1 ]] || err_exit 'adding -Ai attribute to name referenced variable not working'
/macosx-10.10/BerkeleyDB-21/db/dist/
H A Dgen_rec.awk173 sizes[nvars] = sprintf("sizeof(u_int32_t)");
177 sizes[nvars] = sprintf("sizeof(*%s)", $2);
179 sizes[nvars] =\
440 printf("\n\t + %s", sizes[i]) >> CFILE
554 printf("\t\tmemset(bp, 0, %s);\n", sizes[i]) >> CFILE
555 printf("\tbp += %s;\n\n", sizes[i]) >> CFILE
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/report/
H A Dreport.tcl53 "sizes" \
872 # Sets or queries the sizes of all columns.
876 # sizes The new sizes, if not empty. Emptiness indicates that a
880 # None, or a list containing the sizes of all columns.
882 proc ::report::_sizes {name {sizes {}}} {
886 if {$sizes == {}} {
893 if {[llength $sizes] != $columns} {
894 return -code error "Wrong # number of column sizes"
896 foreach size $sizes {
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/
H A DWebProcess.cpp868 HashMap<String, uint64_t> sizes; local
869 sizes.set(imagesString, memoryCacheStatistics.images.size);
870 sizes.set(cssString, memoryCacheStatistics.cssStyleSheets.size);
871 sizes.set(xslString, memoryCacheStatistics.xslStyleSheets.size);
872 sizes.set(javaScriptString, memoryCacheStatistics.scripts.size);
873 result.append(sizes);
/macosx-10.10/cups-408/cups/filter/
H A Drastertohp.c340 10.0 * (ppd->sizes[0].length - ppd->sizes[0].top));
H A Drastertoepson.c223 t = (int)((ppd->sizes[1].length - ppd->sizes[1].top) * header->HWResolution[1] / 72.0);
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_client/
H A Dcspclient.h84 void getOutputSize(CSSM_QUERY_SIZE_DATA &sizes, uint32 count, bool encrypt = true);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Dcspclient.h84 void getOutputSize(CSSM_QUERY_SIZE_DATA &sizes, uint32 count, bool encrypt = true);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/tiff/
H A Dtiff.tcl192 for {set i $strips} {$i > 1} {incr i -1} { lappend sizes $stripSize }
193 lappend sizes $lastStripSize
196 set ifd(0111) [_unformat $byteOrder 0111 4 $sizes]
198 set ifd(0117) [_unformat $byteOrder 0117 4 $sizes]
295 # strips, free bytes, tiles, and their sizes
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/widget/
H A Druler.tcl17 # -sizes -default [list 4 8 12]
67 option -sizes -default [list 4 8 12] -configuremethod C-redraw \
193 foreach {sms meds lgs} $options(-sizes) { break }
230 foreach {sms meds lgs} $options(-sizes) { break }
/macosx-10.10/file_cmds-242/ls/
H A Dprint.c253 printxattr(DISPLAY *dp, int count, char *buf, int sizes[]) argument
259 printsize(dp->s_size, sizes[i]);

Completed in 583 milliseconds

12345