Searched refs:bit (Results 176 - 200 of 852) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libwebp/utils/
H A Dbit_reader_inl.h108 // Read a bit with proba 'prob'. Speed-critical function!
122 const int bit = ((int)(split - value) >> 31) & 1; local
130 int bit; // Don't use 'const int bit = (value > split);", it's slower. local
134 bit = 1;
137 bit = 0;
146 return bit;
H A Dbit_writer.h46 int VP8PutBit(VP8BitWriter* const bw, int bit, int prob);
47 int VP8PutBitUniform(VP8BitWriter* const bw, int bit);
72 #if defined(__x86_64__) || defined(_M_X64) // 64bit
83 vp8l_atype_t bits_; // bit accumulator
91 // failure has happened during bit writing. A value of 0 indicates successful
108 // and within a byte least-significant-bit first.
/external/chromium_org/third_party/opus/src/silk/
H A Dencode_pulses.c68 opus_int i, k, j, iter, bit, nLS, scale_down, RateLevelIndex = 0; local
192 bit = silk_RSHIFT( abs_q, j ) & 1;
193 ec_enc_icdf( psRangeEnc, bit, silk_lsb_iCDF, 8 );
195 bit = abs_q & 1;
196 ec_enc_icdf( psRangeEnc, bit, silk_lsb_iCDF, 8 );
/external/libopus/silk/
H A Dencode_pulses.c68 opus_int i, k, j, iter, bit, nLS, scale_down, RateLevelIndex = 0; local
192 bit = silk_RSHIFT( abs_q, j ) & 1;
193 ec_enc_icdf( psRangeEnc, bit, silk_lsb_iCDF, 8 );
195 bit = abs_q & 1;
196 ec_enc_icdf( psRangeEnc, bit, silk_lsb_iCDF, 8 );
/external/webp/src/utils/
H A Dbit_reader_inl.h107 // Read a bit with proba 'prob'. Speed-critical function!
121 const int bit = ((int)(split - value) >> 31) & 1; local
129 int bit; // Don't use 'const int bit = (value > split);", it's slower. local
133 bit = 1;
136 bit = 0;
145 return bit;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
H A Dvp9_error_sse2.asm33 ; individual errors are max. 15bit+sign, so squares are 30bit, and
34 ; thus the sum of 2 should fit in a 31bit integer (+ unused sign bit)
39 ; accumulate in 64bit
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_error_sse2.asm33 ; individual errors are max. 15bit+sign, so squares are 30bit, and
34 ; thus the sum of 2 should fit in a 31bit integer (+ unused sign bit)
39 ; accumulate in 64bit
/external/libsepol/src/
H A Debitmap.c227 int ebitmap_get_bit(const ebitmap_t * e, unsigned int bit) argument
231 if (e->highbit < bit)
235 while (n && (n->startbit <= bit)) {
236 if ((n->startbit + MAPSIZE) > bit) {
237 if (n->map & (MAPBIT << (bit - n->startbit)))
248 int ebitmap_set_bit(ebitmap_t * e, unsigned int bit, int value) argument
251 uint32_t startbit = bit & ~(MAPSIZE - 1);
255 ERR(NULL, "bitmap overflow, bit 0x%x", bit);
261 while (n && n->startbit <= bit) {
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ppc/
H A Drecon_altivec.asm19 vmrghb v2, v0, v1 ;# v2 = 16-bit p0..p7
22 vmrglb v1, v0, v1 ;# v1 = 16-bit p8..p15
26 vpkshus v2, v2, v3 ;# v2 = 8-bit r0..r15
58 vmrghb v2, v0, v1 ;# v2 = 16-bit p0..p7
61 vmrglb v1, v0, v1 ;# v1 = 16-bit p8..p15
64 vpkshus v2, v2, v3 ;# v3 = 8-bit r0..r15
150 vmrghb v2, v0, v1; ;# v2 = 16-bit p0..p7
157 vmrglb v1, v0, v1; ;# v1 = 16-bit p8..p15
160 vpkshus v2, v2, v3; ;# v2 = 8-bit r0..r15
/external/libvpx/libvpx/vp8/common/ppc/
H A Drecon_altivec.asm19 vmrghb v2, v0, v1 ;# v2 = 16-bit p0..p7
22 vmrglb v1, v0, v1 ;# v1 = 16-bit p8..p15
26 vpkshus v2, v2, v3 ;# v2 = 8-bit r0..r15
58 vmrghb v2, v0, v1 ;# v2 = 16-bit p0..p7
61 vmrglb v1, v0, v1 ;# v1 = 16-bit p8..p15
64 vpkshus v2, v2, v3 ;# v3 = 8-bit r0..r15
150 vmrghb v2, v0, v1; ;# v2 = 16-bit p0..p7
157 vmrglb v1, v0, v1; ;# v1 = 16-bit p8..p15
160 vpkshus v2, v2, v3; ;# v2 = 8-bit r0..r15
/external/lldb/source/Core/
H A DRegisterValue.cpp1127 RegisterValue::ClearBit (uint32_t bit) argument
1135 if (bit < 8)
1137 m_data.uint8 &= ~(1u << bit);
1143 if (bit < 16)
1145 m_data.uint16 &= ~(1u << bit);
1151 if (bit < 32)
1153 m_data.uint32 &= ~(1u << bit);
1159 if (bit < 64)
1161 m_data.uint64 &= ~(1ull << (uint64_t)bit);
1167 if (bit < 6
1201 SetBit(uint32_t bit) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexgen.c106 GLbitfield bit = 0x0; local
111 bit = TEXGEN_OBJ_LINEAR;
114 bit = TEXGEN_EYE_LINEAR;
118 bit = TEXGEN_SPHERE_MAP;
122 bit = TEXGEN_REFLECTION_MAP_NV;
126 bit = TEXGEN_NORMAL_MAP_NV;
131 if (!bit) {
136 && (bit & (TEXGEN_REFLECTION_MAP_NV | TEXGEN_NORMAL_MAP_NV)) == 0) {
143 texgen->_ModeBit = bit;
H A Dtexcompress_etc_tmp.h120 int modifier, bit, idx, blk; local
123 bit = y + x * 4;
124 idx = ((block->pixel_indices >> (15 + bit)) & 0x2) |
125 ((block->pixel_indices >> (bit)) & 0x1);
/external/mesa3d/src/mesa/main/
H A Dtexgen.c106 GLbitfield bit = 0x0; local
111 bit = TEXGEN_OBJ_LINEAR;
114 bit = TEXGEN_EYE_LINEAR;
118 bit = TEXGEN_SPHERE_MAP;
122 bit = TEXGEN_REFLECTION_MAP_NV;
126 bit = TEXGEN_NORMAL_MAP_NV;
131 if (!bit) {
136 && (bit & (TEXGEN_REFLECTION_MAP_NV | TEXGEN_NORMAL_MAP_NV)) == 0) {
143 texgen->_ModeBit = bit;
H A Dtexcompress_etc_tmp.h120 int modifier, bit, idx, blk; local
123 bit = y + x * 4;
124 idx = ((block->pixel_indices >> (15 + bit)) & 0x2) |
125 ((block->pixel_indices >> (bit)) & 0x1);
/external/aac/libSBRenc/src/
H A Denv_bit.cpp20 individually for the purpose of encoding or decoding bit streams in products that are compliant with
148 /* reset bit buffer */
213 sbrLoad += 4; /* Do byte Align with 4 bit offset. ISO/IEC 14496-3:2005(E) page 39. */
235 INT bit; local
236 bit = FDKreadBits(&tmpCRCBuf,1);
237 crcAdvance(SBR_CRC_POLY,SBR_CRC_MASK,&crcReg,bit,1);
/external/chromium_org/third_party/libsrtp/srtp/crypto/include/
H A Ddatatypes.h4 * data types for bit vectors and finite fields
250 /* bit 0 is first 32-bit word, low order bit. in little-endian, that's
251 the first byte of the first 32-bit word. In big-endian, that's
252 the 3rd byte of the first 32-bit word */
253 /* The get/set bit code is used by the replay code ONLY, and it doesn't
254 really care which bit is which. AES does care which bit is which, but
255 doesn't use the 128-bit ge
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilters_neon.S10 @ Reference code in filters.c. Output is bit-exact.
53 @ vclz cannot deal with a 64-bit, so we have to do vclz on both the upper and
54 @ lower 32-bit words. Note that we don't care about the value of the upper
57 @ Check the case of 1 bit overflow. If it occurs store the results for
65 @ For the case of more than 1 bit overflow. If it occurs overwrite the
67 vclz.s32 d5, d16 @ Leading zeros of the two 32 bit words.
/external/srtp/crypto/include/
H A Ddatatypes.h4 * data types for bit vectors and finite fields
243 /* bit 0 is first 32-bit word, low order bit. in little-endian, that's
244 the first byte of the first 32-bit word. In big-endian, that's
245 the 3rd byte of the first 32-bit word */
246 /* The get/set bit code is used by the replay code ONLY, and it doesn't
247 really care which bit is which. AES does care which bit is which, but
248 doesn't use the 128-bit ge
[all...]
/external/chromium_org/third_party/smhasher/src/
H A DPMurHash.h42 #error Unable to determine type name for unsigned 32-bit int
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
H A Drdftest1.asm16 mov ax,localdata ; [2] (16 bit) => 66 b8 0000
17 mov eax,localdata2 ; [2] (32 bit) => b8 0000000a
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRBitSet.h35 // A simple wrapper around CoreFoundation bit vectors to shield the rest of the implementation
71 - (void) add:(NSUInteger) bit;
72 - (void) remove:(NSUInteger) bit;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRBitSet.h35 // A simple wrapper around CoreFoundation bit vectors to shield the rest of the implementation
71 - (void) add:(NSUInteger) bit;
72 - (void) remove:(NSUInteger) bit;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRBitSet.h35 // A simple wrapper around CoreFoundation bit vectors to shield the rest of the implementation
71 - (void) add:(NSUInteger) bit;
72 - (void) remove:(NSUInteger) bit;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRBitSet.h36 // A simple wrapper around CoreFoundation bit vectors to shield the rest of the implementation
72 - (void) add:(NSUInteger) bit;
73 - (void) remove:(NSUInteger) bit;

Completed in 1293 milliseconds

1234567891011>>