Searched refs:bits (Results 251 - 275 of 751) sorted by relevance

<<11121314151617181920>>

/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dmd5-internal.c91 ctx->bits[0] = 0;
92 ctx->bits[1] = 0;
105 t = ctx->bits[0];
106 if ((ctx->bits[0] = t + ((u32) len << 3)) < t)
107 ctx->bits[1]++; /* Carry from low to high */
108 ctx->bits[1] += len >> 29;
145 * 1 0* (64-bit count of bits processed, MSB-first)
153 count = (ctx->bits[0] >> 3) & 0x3F;
178 /* Append length in bits and transform */
179 ((u32 *) ctx->in)[14] = ctx->bits[
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dmd5-internal.c91 ctx->bits[0] = 0;
92 ctx->bits[1] = 0;
105 t = ctx->bits[0];
106 if ((ctx->bits[0] = t + ((u32) len << 3)) < t)
107 ctx->bits[1]++; /* Carry from low to high */
108 ctx->bits[1] += len >> 29;
145 * 1 0* (64-bit count of bits processed, MSB-first)
153 count = (ctx->bits[0] >> 3) & 0x3F;
178 /* Append length in bits and transform */
179 ((u32 *) ctx->in)[14] = ctx->bits[
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dmd5-internal.c91 ctx->bits[0] = 0;
92 ctx->bits[1] = 0;
105 t = ctx->bits[0];
106 if ((ctx->bits[0] = t + ((u32) len << 3)) < t)
107 ctx->bits[1]++; /* Carry from low to high */
108 ctx->bits[1] += len >> 29;
145 * 1 0* (64-bit count of bits processed, MSB-first)
153 count = (ctx->bits[0] >> 3) & 0x3F;
178 /* Append length in bits and transform */
179 ((u32 *) ctx->in)[14] = ctx->bits[
[all...]
/external/zlib/src/examples/
H A Dgun.c116 the gzip trailer is stored modulo 2^32, so it's ok if a long is 32 bits and
167 /* throw out what's left in the current bits byte buffer (this is a vestigial
204 int left; /* bits left in rem */
205 unsigned rem; /* unused bits from input */
206 int bits; /* current bits per code */ local
208 unsigned mask; /* mask for current bits codes */
209 int max; /* maximum bits per code for this stream */
234 strm->msg = (char *)"lzw bits out of range";
242 bits
[all...]
/external/webp/src/utils/
H A Dbit_reader.c32 br->missing_ = 8; // to load the very first 8bits
72 // Only read 8bits at a time
84 uint32_t VP8GetValue(VP8BitReader* const br, int bits) { argument
86 while (bits-- > 0) {
87 v |= VP8GetBit(br, 0x80) << bits;
92 int32_t VP8GetSignedValue(VP8BitReader* const br, int bits) { argument
93 const int value = VP8GetValue(br, bits);
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DWalkingIterator.java83 * Get the analysis bits for this walker, as defined in the WalkerFactory.
88 int bits = 0;
96 bits |= bit;
100 return bits;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERBitString.java21 * return the correct number of pad bits for a bit string defined in
58 int bits = 1;
62 bits++;
65 return 8 - bits;
145 * @param padBits the number of extra bits at the end of the string.
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm35c.java103 BitSet bits = new BitSet(sz);
113 bits.set(i, unsignedFitsInNibble(reg.getReg() +
117 return bits;
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashCodesTest.java75 byte[] bb = new byte[hash.bits() / 8];
100 assertTrue(hashCode.bits() >= 32); // sanity
102 int totalBytes = hashCode.bits() / 8;
H A DAbstractNonStreamingHashFunctionTest.java46 public int bits() { method in class:AbstractNonStreamingHashFunctionTest.StreamingVersion
78 public int bits() { method in class:AbstractNonStreamingHashFunctionTest.NonStreamingVersion
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestbitmap.c18 SDL_Surface *LoadXBM(SDL_Surface *screen, int w, int h, Uint8 *bits) argument
35 memcpy(line, bits, w);
36 /* X11 Bitmap images have the bits reversed */
48 bits += w;
/external/skia/include/core/
H A DSk64.h20 int32_t fHi; //!< the high 32 bits of the number (including sign)
21 uint32_t fLo; //!< the low 32 bits of the number
40 /** Return the number >> 16. Asserts that this does not loose any significant high bits.
54 significant high bits.
88 /** Returns the number of bits needed to shift the Sk64 to the right
105 /** extract 32bits after shifting right by bitCount.
107 Asserts that no significant high bits were lost.
111 /** Shift the number left by the specified number of bits.
112 @param bits How far to shift left, must be [0..63]
114 void shiftLeft(unsigned bits);
[all...]
H A DSkFloatingPoint.h72 int32_t bits = SkFloat2Bits(x); local
73 return (bits << 1) == (0xFF << 24);
/external/srtp/test/
H A Dlfsr.c293 int bits = 8; local
295 for (y=0; y < (1 << bits); y++) {
297 u32_bit_string(y,bits), weight(y), period(y));
/external/tremolo/Tremolo/
H A Dogg.h173 extern long oggpack_look(oggpack_buffer *b,int bits);
174 extern void oggpack_adv(oggpack_buffer *b,int bits);
175 extern long oggpack_read(oggpack_buffer *b,int bits);
/external/webkit/Source/JavaScriptCore/wtf/
H A DSHA1.cpp162 uint64_t bits = m_totalBytes * 8;
164 m_buffer[56 + (7 - i)] = bits & 0xFF;
165 bits >>= 8;
/external/webkit/Source/WebCore/platform/win/
H A DDragImageCGWin.cpp50 LPVOID bits; local
51 HBITMAP hbmp = CreateDIBSection(dc, &bmpInfo, DIB_RGB_COLORS, &bits, 0, 0);
56 CGContextRef bitmapContext = CGBitmapContextCreate(bits, bmpInfo.bmiHeader.biWidth, bmpInfo.bmiHeader.biHeight, 8,
H A DDragImageCairoWin.cpp49 LPVOID bits; local
50 HBITMAP hbmp = CreateDIBSection(dc, &bmpInfo, DIB_RGB_COLORS, &bits, 0, 0);
58 cairo_surface_t* bitmapContext = cairo_image_surface_create_for_data((unsigned char*)bits,
/external/webp/src/enc/
H A Dcost.c339 int bits = VP8LevelCodes[level - 1][1]; local
344 cost += VP8BitCost(bits & 1, probas[i]);
346 bits >>= 1;
/external/bluetooth/bluedroid/bta/av/
H A Dbta_av_sbc.c40 UINT16 bits; /* number of bits per pcm sample */ member in struct:__anon411
57 ** bits: number of bits per pcm sample
63 void bta_av_sbc_init_up_sample (UINT32 src_sps, UINT32 dst_sps, UINT16 bits, UINT16 n_channels) argument
68 bta_av_sbc_ups_cb.bits = bits;
74 if(bits == 8)
88 if(bits == 8)
148 ** Function bta_av_sbc_up_sample_16s (16bits
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DIntArray.java143 int bits = (last << 5) + 1;
150 bits += 24;
155 bits += 16;
161 bits += 8;
167 ++bits;
171 return bits;
273 throw new IllegalArgumentException("shiftLeft() for max 31 bits "
343 // Lenght of c is 2m bits rounded up to the next int (32 bit)
371 // // Lenght of c is 2m bits rounded up to the next int (32 bit)
/external/v8/test/cctest/
H A Dtest-double.cc32 // The 52 mantissa bits, plus the implicit 1 in bit 52 as a UINT64.
72 uint64_t bits = V8_2PART_UINT64_C(0x000FFFFF, FFFFFFFF); local
73 CHECK(Double(bits).IsDenormal());
74 bits = V8_2PART_UINT64_C(0x00100000, 00000000);
75 CHECK(!Double(bits).IsDenormal());
83 uint64_t bits = V8_2PART_UINT64_C(0xFFF12345, 00000000); local
84 CHECK(Double(bits).IsSpecial());
/external/kernel-headers/original/asm-mips/
H A Djazz.h32 * to the control bits as follows:
75 static __inline__ void pica_set_led(unsigned int bits) argument
79 *led_register = bits;
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DIsoTypeReader.java132 int bits = readUInt16(bb);
135 int c = (bits >> (2 - i) * 5) & 0x1f;
/external/skia/tests/
H A DScalarTest.cpp17 uint32_t bits = SkFloat2Bits(x); // need unsigned for our shifts local
18 int exponent = bits << 1 >> 24;

Completed in 460 milliseconds

<<11121314151617181920>>