Searched refs:width (Results 1 - 25 of 2232) sorted by relevance

1234567891011>>

/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/scripts/
H A Dcenter9 width=${COLUMNS:-80}
20 printf "%*s\n" $(( (width+${#REPLY})/2 )) "$REPLY"
/macosx-10.10.1/OpenSSL098-52/src/util/
H A Dtab_num.pl4 $width=40;
12 $n=$width-$i;
/macosx-10.10.1/ruby-106/ruby/test/rss/
H A Dtest_accessor.rb42 image_item.width = nil
43 assert_nil(image_item.width)
45 width = 10
46 image_item.width = width
47 assert_equal(width, image_item.width)
49 width = 10.0
50 image_item.width = width
[all...]
/macosx-10.10.1/apr-32/apr/apr/misc/netware/
H A Drand.c26 static int NXSeedRandomInternal( size_t width, void *seed ) argument
37 if (width > 3)
43 while ((width -= 4) > 3);
46 if (width > 0)
52 while (width > 0)
53 *p++ = u.y[width--];
/macosx-10.10.1/CommonCrypto-60061/libcn/
H A Dreverse_poly.c29 reverse_poly(uint64_t poly, size_t width) argument
31 uint64_t retval = reflect(poly, width);
/macosx-10.10.1/tcl-105/tk84/tk/xlib/
H A Dximage.c40 XCreateBitmapFromData(display, d, data, width, height)
44 unsigned int width;
51 pix = Tk_GetPixmap(display, d, (int) width, (int) height, 1);
56 ximage = XCreateImage(display, NULL, 1, XYBitmap, 0, (char*) data, width,
57 height, 8, (width + 7) / 8);
60 TkPutImage(NULL, 0, display, pix, gc, ximage, 0, 0, 0, 0, width, height);
/macosx-10.10.1/dtrace-147/test/tst/common/aggs/
H A Dtst.aggpackbanner.ksh16 let width=8
20 banner $3 | awk -v line=$1 -v pos=$2 -v width=$width '{ \
25 line, NR, i + (pos * width));
/macosx-10.10.1/ruby-106/ruby/ext/curses/
H A Dhello.rb7 width = message.length + 6
8 win = Window.new(5, width,
9 (lines - 5) / 2, (cols - width) / 2)
/macosx-10.10.1/Chess-310.6/Sources/
H A DMBCStretchyTextCell.mm55 cellFrame.size.width += 100;
58 cellFrame.size.width += 6;
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/efl/
H A DSnapshotImageGL.cpp38 PassRefPtr<cairo_surface_t> getImageSurfaceFromFrameBuffer(int x, int y, int width, int height) argument
40 RefPtr<cairo_surface_t> newSurface = adoptRef(cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height));
49 glReadPixels(x, y, width, height, format, GL_UNSIGNED_BYTE, data);
53 int totalBytes = width * height * 4;
63 for (int j = 0; j < width; ++j) {
64 unsigned tmp = buf[i * width + j];
65 buf[i * width + j] = buf[(height - i - 1) * width + j];
66 buf[(height - i - 1) * width + j] = tmp;
H A DSnapshotImageGL.h31 PassRefPtr<cairo_surface_t> getImageSurfaceFromFrameBuffer(int x, int y, int width, int height);
/macosx-10.10.1/groff-38/groff/src/include/
H A Dpaper.h24 double width; // in PS points member in struct:paper
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A DMinWave.tcl7 pack [canvas .c -width 400 -height 100]
11 .c create waveform 0 0 -sound s -width 400
/macosx-10.10.1/Libc-1044.1.2/stdlib/FreeBSD/
H A Dlsearch.c22 void *lsearch(const void *key, void *base, size_t *nelp, size_t width, argument
26 return (lwork(key, base, nelp, width, compar, 1));
29 void *lfind(const void *key, const void *base, size_t *nelp, size_t width, argument
33 return (lwork(key, base, nelp, width, compar, 0));
37 lwork(const void *key, const void *base, size_t *nelp, size_t width, argument
47 for (endp = (uint8_t *)(ep + width * *nelp); ep < endp; ep += width) {
60 memcpy(endp, key, width);
/macosx-10.10.1/groff-38/groff/src/libs/libgroff/
H A Dpaper.cpp27 // length and width in mm
32 int width = start_width; local
42 papersizes[offset + i].width = (double)width / 25.4;
46 length = width;
47 width = tmp / 2;
51 // length and width in inch
53 double length, double width )
59 papersizes[idx].width = width;
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dspinint.rb7 Tk::Iwidgets::Spinint.new(:labeltext=>'Temperature', :labelpos=>:w, :width=>5,
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/demos/python/
H A DMinSpeg.py11 c = SnackCanvas(height=200, width=400)
13 c.create_spectrogram(0, 0, sound=s, height=200, width=400)
H A DMinWave.py11 c = SnackCanvas(height=100, width=400)
13 c.create_waveform(0, 0, sound=s, width=400)
/macosx-10.10.1/tcl-105/tk/tk/xlib/
H A Dximage.c43 unsigned int width,
50 pix = Tk_GetPixmap(display, d, (int) width, (int) height, 1);
55 ximage = XCreateImage(display, NULL, 1, XYBitmap, 0, (char*) data, width,
56 height, 8, (width + 7) / 8);
59 TkPutImage(NULL, 0, display, pix, gc, ximage, 0, 0, 0, 0, width, height);
38 XCreateBitmapFromData( Display *display, Drawable d, _Xconst char *data, unsigned int width, unsigned int height) argument
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dvbuf_print.c17 /* f and g format types, the l modifier, field width and precision,
86 * conversion that has no explicit width or precision specifiers. With
123 int width; /* width and numerical precision */ local
167 if (*cp == '*') { /* dynamic field width */
168 width = va_arg(ap, int);
169 VSTRING_ADDNUM(fmt, width);
171 } else { /* hard-coded field width */
172 for (width = 0; ch = *cp, ISDIGIT(ch); cp++) {
173 width
[all...]
/macosx-10.10.1/ruby-106/ruby/benchmark/
H A Dbm_so_fasta.rb47 width = 60
51 puts(s.scan(/.{1,#{width}}/).join("\n"))
57 width = 60
58 chunk = 1 * width
61 for i in 1..(n/width)
62 puts((1..width).collect{
67 if n%width != 0
68 puts((1..(n%width)).collect{
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dhscale.rb41 def setWidth(w, width)
42 width = width + 21
43 x2 = width - 30
47 w.coords 'poly',20,15,20,35,x2,35,x2,45,width,25,x2,5,x2,15,20,15
48 w.coords 'line',20,15,20,35,x2,35,x2,45,width,25,x2,5,x2,15,20,15
53 width 50
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dhscale.rb44 def setWidth(w, width)
45 width = width + 21
46 x2 = width - 30
50 w.coords 'poly',20,15,20,35,x2,35,x2,45,width,25,x2,5,x2,15,20,15
51 w.coords 'line',20,15,20,35,x2,35,x2,45,width,25,x2,5,x2,15,20,15
56 width 50
/macosx-10.10.1/vim-55/runtime/indent/
H A Dobjc.vim29 let width = 0
33 let width = width + 1
35 let width = width + &ts - (width % &ts)
39 return width
44 let width = 0
52 let width = width
[all...]
/macosx-10.10.1/xnu-2782.1.97/libsyscall/mach/
H A Dstring.c59 int width = _mach_strlen(cp); local
60 while (width > 0 && length > 0) {
63 width--;
71 int width, max = length; local
92 width = _mach_strlen(cp);
93 while (width > 0 && length > 0) {
95 width--;

Completed in 328 milliseconds

1234567891011>>