Searched defs:bits (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/
H A Dsvg-profile.h22 implementation of that is a bitfield, a data type that has bits
28 a nice C++ friendly class, where the actual bits aren't required
93 /** \brief A quick way identify the number of bits in an integer. */
99 unsigned int bits[ARRAY_SIZE]; member in class:Inkscape::SvgProfile::BitField
102 /** \brief Constructor for the bitfield, it clears the \c bits
106 bits[i] = 0;
111 describing how the bits should look. The function
112 just copies the array into \c bits. */
115 bits[i] = in_bits[i];
120 This function checks to see if there are bits tha
[all...]
/inkscape/src/util/
H A Dziptool.cpp219 static const int MAXBITS = 15; // max bits in a code
492 static const int lext[29] = { // Extra bits for length codes 257..285
499 static const int dext[30] = { // Extra bits for distance codes 0..29
568 // clear bits from current byte
1071 //add bits to position 7. shift right
1148 unsigned int bits; member in struct:__anon503
1188 unsigned int bits; member in struct:__anon504
1247 putBits(length, lenBases[i].bits);
1277 putBits(distance, distBases[i].bits);
/inkscape/src/extension/internal/pdfinput/
H A Dpdf-parser.cpp2576 int bits; local
2588 bits = 0;
2590 str->getImageParams(&bits, &csMode);
2656 if (bits == 0) {
2663 bits = obj1.getInt();
2665 bits = 1;
2675 if (bits != 1) {
2741 GfxImageColorMap *colorMap = new GfxImageColorMap(bits, &obj1, colorSpace);

Completed in 30 milliseconds