Searched refs:bits (Results 826 - 850 of 1594) sorted by relevance

<<31323334353637383940>>

/external/pixman/pixman/
H A Dpixman-private.h180 uint32_t * bits; member in struct:bits_image
192 /* Used for indirect access to the bits */
201 bits_image_t bits; member in union:pixman_image
254 uint8_t * bits; member in struct:pixman_iter_t
284 uint32_t * bits,
309 __bits__ = image->bits.bits; \
310 __stride__ = image->bits.rowstride; \
449 uint32_t * bits,
536 uint32_t * bits,
[all...]
/external/skia/src/core/
H A DSkBlitter.cpp85 const uint8_t bits[],
92 unsigned b = *bits++ & left_mask;
130 const uint8_t* bits = mask.getAddr1(cx, cy); local
134 bits_to_runs(this, cx, cy, bits, 0xFF, mask_rowBytes, 0xFF);
135 bits += mask_rowBytes;
165 bits_to_runs(this, cx, cy, bits, left_mask, 1, rite_mask);
166 bits += mask_rowBytes;
171 bits_to_runs(this, cx, cy, bits, left_mask, full_runs + 2, rite_mask);
172 bits += mask_rowBytes;
84 bits_to_runs(SkBlitter* blitter, int x, int y, const uint8_t bits[], U8CPU left_mask, int rowBytes, U8CPU right_mask) argument
/external/tinyalsa/
H A Dpcm.c160 m->bits[0] = 0;
161 m->bits[1] = 0;
162 m->bits[bit >> 5] |= (1 << (bit & 31));
228 m->bits[0] = ~0;
229 m->bits[1] = ~0;
743 if (element >= ARRAY_SIZE(m->bits))
745 return (m->bits[element] >> (index & bitmask)) & 1;
758 STRLOG(string, offset, size, "%12s:\t%#08x\n", mask_name, m->bits[0]);
762 mask_name, i, m->bits[i]);
798 STRLOG(string, offset, size, " Sample bits
[all...]
/external/chromium_org/sandbox/linux/bpf_dsl/
H A Dbpf_dsl_more_unittest.cc1368 static ResultExpr HasAllBits32(uint32_t bits);
1369 static ResultExpr HasAllBits64(uint64_t bits);
1374 ResultExpr AllBitTestPolicy::HasAllBits32(uint32_t bits) {
1375 if (bits == 0) {
1379 return If((arg & bits) == bits, Error(1)).Else(Error(0));
1382 ResultExpr AllBitTestPolicy::HasAllBits64(uint64_t bits) {
1383 if (bits == 0) {
1387 return If((arg & bits) == bits, Erro
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vs_emit.c438 struct brw_reg tmp = brw_writemask(get_tmp(c), dst.dw1.bits.writemask);
464 struct brw_reg tmp = brw_writemask(get_tmp(c), dst.dw1.bits.writemask);
493 struct brw_reg tmp = brw_writemask(get_tmp(c), dst.dw1.bits.writemask);
664 dst.dw1.bits.writemask != 0xf)
747 dst.dw1.bits.writemask != 0xf)
824 if (dst.dw1.bits.writemask & WRITEMASK_X) {
847 if (dst.dw1.bits.writemask & WRITEMASK_Y) {
852 if (dst.dw1.bits.writemask & WRITEMASK_Z) {
867 if (dst.dw1.bits.writemask & WRITEMASK_W) {
882 bool need_tmp = (dst.dw1.bits
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vs_emit.c438 struct brw_reg tmp = brw_writemask(get_tmp(c), dst.dw1.bits.writemask);
464 struct brw_reg tmp = brw_writemask(get_tmp(c), dst.dw1.bits.writemask);
493 struct brw_reg tmp = brw_writemask(get_tmp(c), dst.dw1.bits.writemask);
664 dst.dw1.bits.writemask != 0xf)
747 dst.dw1.bits.writemask != 0xf)
824 if (dst.dw1.bits.writemask & WRITEMASK_X) {
847 if (dst.dw1.bits.writemask & WRITEMASK_Y) {
852 if (dst.dw1.bits.writemask & WRITEMASK_Z) {
867 if (dst.dw1.bits.writemask & WRITEMASK_W) {
882 bool need_tmp = (dst.dw1.bits
[all...]
/external/openssl/crypto/aes/
H A Daes_core.c628 int private_AES_set_encrypt_key(const unsigned char *userKey, const int bits, argument
637 if (bits != 128 && bits != 192 && bits != 256)
642 if (bits==128)
644 else if (bits==192)
653 if (bits == 128) {
673 if (bits == 192) {
695 if (bits == 256) {
729 int private_AES_set_decrypt_key(const unsigned char *userKey, const int bits, argument
1204 private_AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
1304 private_AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dconfigure.sh6 ## utility functions and other common bits that aren't strictly libvpx
1042 bits=${tgt_isa##ppc}
1056 add_cflags ${darwin_arch} -m${bits} -fasm-blocks
1058 add_ldflags ${darwin_arch} -m${bits}
1126 bits=32
1127 enabled x86_64 && bits=64
1128 check_cpp <<EOF && bits=x32
1135 add_cflags -m${bits}
1136 add_ldflags -m${bits}
1175 add_asflags -f elf${bits}
[all...]
/external/chromium_org/v8/src/
H A Dtypes.h577 static TypeImpl* New(bitset bits) { argument
578 DCHECK(bits == kNone || IsInhabited(bits));
579 return Config::from_bitset(bits);
581 static TypeHandle New(bitset bits, Region* region) { argument
582 DCHECK(bits == kNone || IsInhabited(bits));
583 return Config::from_bitset(bits, region);
588 static bool IsInhabited(bitset bits) { argument
589 return bits
616 bitset bits; member in struct:v8::internal::TypeImpl::BitsetType::BitsetMin
[all...]
/external/llvm/lib/Support/
H A DAPInt.cpp103 // Make sure unused high bits are cleared
457 // 0^0==1 so clear the high bits in case they got set.
489 // Get some facts about the number of bits used in the two operands.
493 // If the number of bits isn't the same, they aren't equal
497 // If the number of bits fits in a word, we only need to compare the low word.
628 // For radixes of power-of-two values, the bits required is accurately and
643 // Compute a sufficient number of bits that is always large enough but might
646 // bits in that case.
654 // Compute how many bits are required. If the log is infinite, assume we need
671 /// HiBits - This function returns the high "numBits" bits o
[all...]
/external/aac/libMpegTPDec/src/
H A Dtpdec_lib.cpp321 needs a number 2^x. So we assume the maximum of 48 channels with 6144 bits per channel
398 /* For ELD and other payloads there is an unknown amount of padding, so ignore unread bits, but
399 throw an error only if too many bits where read. */
451 * \param bitsAvail the amount of available bits at the end of the first frame to be decoded.
561 /* Reset CRC because the next bits are the beginning of a raw_data_block() */
656 /* How many bits to advance for synchronization search. */
677 INT syncLength; /* Length of sync word in bits */
711 INT checkLengthBits; /* Helper to check remaining bits and buffer boundaries */
795 int bits; local
801 bits
1126 INT bits; local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBitSet.cs50 private const int BITS = 64; // number of bits / long
62 /** <summary>The actual data bits</summary> */
65 /** <summary>Construct a bitset of size one word (64 bits)</summary> */
71 public BitSet(ulong[] bits) { argument
72 _bits = bits;
83 * <param name="nbits">The size of the bitset in bits</param>
138 /** <summary>Grows the set to a larger number of bits.</summary>
204 // for any bits in common, compare
211 // make sure any extra bits are off
261 return _bits.Length << LOG_BITS; // num words * bits pe
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBitSet.cs52 private const int BITS = 64; // number of bits / long
64 /** <summary>The actual data bits</summary> */
67 /** <summary>Construct a bitset of size one word (64 bits)</summary> */
75 public BitSet( ulong[] bits )
77 _bits = bits;
89 * <param name="nbits">The size of the bitset in bits</param>
153 /** <summary>Grows the set to a larger number of bits.</summary>
235 // for any bits in common, compare
244 // make sure any extra bits are off
309 return _bits.Length << LOG_BITS; // num words * bits pe
[all...]
/external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
H A Doi_codec_sbc_private.h147 OI_INT bits,
214 INLINE OI_INT32 OI_SBC_Dequant(OI_UINT32 raw, OI_UINT scale_factor, OI_UINT bits);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
H A DGIFImageReader.h94 , bits(0)
117 int bits; // Number of unread bits in "datum". member in class:GIFLZWContext
/external/chromium_org/third_party/boringssl/src/crypto/modes/
H A Dcfb.c154 it corrupts any extra bits in the last byte of out */
197 void CRYPTO_cfb128_1_encrypt(const uint8_t *in, uint8_t *out, size_t bits, argument
206 for (n = 0; n < bits; ++n) {
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Drsa.h92 * |bits| and the public exponent is |e|. If unsure, |RSA_F4| is a good value
99 OPENSSL_EXPORT int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e,
412 int (*keygen)(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
/external/chromium_org/third_party/libwebp/dsp/
H A Dlossless.h101 void VP8LResidualImage(int width, int height, int bits,
105 void VP8LColorSpaceTransform(int width, int height, int bits, int quality,
118 // Computes sampled size of 'size' when sampling using 'sampling bits'.
182 // extra bits. The prefixes are encoded with an entropy code
183 // while the extra bits are stored just as normal bits.
/external/chromium_org/third_party/opus/src/celt/
H A Darch.h149 #define QCONST16(x,bits) (x)
150 #define QCONST32(x,bits) (x)
/external/chromium_org/third_party/smhasher/src/
H A DDifferentialTest.h3 // see what happens to the hash value when we flip a few bits of the key.
106 const int bits = sizeof(keytype)*8; local
108 for(int i = start; i < bits; i++)
/external/chromium_org/third_party/speex/libspeex/
H A Darch.h158 #define QCONST16(x,bits) (x)
159 #define QCONST32(x,bits) (x)
/external/chromium_org/third_party/tlslite/tlslite/
H A Dmathtls.py89 def makeVerifier(username, password, bits):
90 bitsIndex = {1024:0, 1536:1, 2048:2, 3072:3, 4096:4, 6144:5, 8192:6}[bits]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Daes.asm0 [bits 64]
H A Dimm64.asm0 bits 64
1 bits 64 label
H A Dsse5-cc.asm0 [bits 16]

Completed in 1746 milliseconds

<<31323334353637383940>>