search for: xbits

Displaying 5 results from an estimated 5 matches for "xbits".

Did you mean: bits
2007 Feb 13
0
9 commits - libswfdec/js libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_codec_screen.c libswfdec/swfdec_image.c libswfdec/swfdec_script.c test/Makefile.am test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c
...SwfdecRect *rect) +swfdec_out_put_rect (SwfdecOut *out, const SwfdecRect *rect) { int x0, x1, y0, y1; guint req, tmp; @@ -236,6 +259,98 @@ swfdec_out_put_rect (SwfdecOut *out, Swf } void +swfdec_out_put_matrix (SwfdecOut *out, const cairo_matrix_t *matrix) +{ + int x, y; + unsigned int xbits, ybits; + + if (matrix->xx != 1.0 || matrix->yy != 1.0) { + swfdec_out_put_bit (out, 1); + x = SWFDEC_DOUBLE_TO_FIXED (matrix->xx); + y = SWFDEC_DOUBLE_TO_FIXED (matrix->yy); + xbits = swfdec_out_sbits_required (x); + ybits = swfdec_out_sbits_required (y); + xbits = M...
2008 Jan 07
0
12 commits - configure.ac doc/swfdec.types Makefile.am test/crashfinder.c test/dump.c test/Makefile.am test/swfdec-extract.c test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c test/swfedit_file.h test/swfedit_list.c test/swfedit_list.h
...swfdec_out_put_sbits (out, x0, req); - swfdec_out_put_sbits (out, x1, req); - swfdec_out_put_sbits (out, y0, req); - swfdec_out_put_sbits (out, y1, req); - swfdec_out_syncbits (out); -} - -void -swfdec_out_put_matrix (SwfdecOut *out, const cairo_matrix_t *matrix) -{ - int x, y; - unsigned int xbits, ybits; - - if (matrix->xx != 1.0 || matrix->yy != 1.0) { - swfdec_out_put_bit (out, 1); - x = SWFDEC_DOUBLE_TO_FIXED (matrix->xx); - y = SWFDEC_DOUBLE_TO_FIXED (matrix->yy); - xbits = swfdec_out_sbits_required (x); - ybits = swfdec_out_sbits_required (y); - xbits = M...
2009 Oct 03
1
Filter file: selected directories only
Hi! I'm trying to create a filter file for rsync what saying which dirs to copy. For example i need only /lib and /var/lib dirs from remote server. I say: rsync -f ". /tmp/rsync_dirs" --dry-run --verbose "remote:/" "/local_dir/". File /tmp/rsync_dirs looks like: + /lib/ + /var/ -! /var/lib/* - /* This doesnt work: it copies all /var/ dir except contents of
2020 Jul 21
11
[RFC PATCH 0/4] PAM module for ssh-agent user authentication
Hi, The main (and probably the only) use case of this PAM module is to let sudo authenticate users via their ssh-agent, therefore without having to type any password and without being tempted to use the NOPASSWD sudo option for such convenience. The principle is originally implemented by an existing module [0][1] and many pages that explain how to use it for such purpose can be found online.
2012 Jan 18
4
R-Help
I am trying to create a frequency distribution and I am a bit confused. Here are the commands I have entered: > data <- read.csv(file="40609_sortedfinal.csv",head=TRUE,sep=",") > NumberOfActionsByStatus = data$STATUS > NumberOfActionsByUser = data$ETS_LOGIN > NumberOfBidOffer = data$BID_OFFER > NumberOfActionsByUser.freq = table(NumberOfActionsByUser) >