Searched defs:need (Results 1 - 4 of 4) sorted by relevance

/vbox/src/libs/zlib-1.2.6/contrib/puff/
H A Dpuff.c115 * Return need bits from the input stream. This always leaves less than
116 * eight bits in the buffer. bits() works properly for need == 0.
125 local int bits(struct state *s, int need) argument
129 /* load at least need bits into val */
131 while (s->bitcnt < need) {
138 /* drop need bits and update buffer, always zero to seven bits left */
139 s->bitbuf = (int)(val >> need);
140 s->bitcnt -= need;
142 /* return need bits, zeroing the bits above that */
143 return (int)(val & ((1L << need)
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Dgentest.py107 # Some functions really need to be skipped for the tests.
786 need = 0 variable
789 if need:
792 need = 1 variable
802 need = 0; variable
805 if need:
808 need = 1 variable
/vbox/src/libs/zlib-1.2.6/contrib/blast/
H A Dblast.c56 * Return need bits from the input stream. This always leaves less than
57 * eight bits in the buffer. bits() works properly for need == 0.
66 local int bits(struct state *s, int need) argument
70 /* load at least need bits into val */
72 while (s->bitcnt < need) {
82 /* drop need bits and update buffer, always zero to seven bits left */
83 s->bitbuf = val >> need;
84 s->bitcnt -= need;
86 /* return need bits, zeroing the bits above that */
87 return val & ((1 << need)
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Dsaaj-impl.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...

Completed in 40 milliseconds