HomeSort by relevance Sort by last modified time
    Searched full:_bits (Results 1 - 25 of 36) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 63 ulong[] _bits; field in class:Antlr.Runtime.BitSet
72 _bits = bits;
86 _bits = new ulong[((nbits - 1) >> LOG_BITS) + 1];
132 if (n >= _bits.Length) {
135 _bits[n] |= BitMask(el);
142 int newSize = Math.Max(_bits.Length << 1, NumWordsToHold(bit));
151 if (a._bits.Length > _bits.Length) {
152 SetSize(a._bits.Length);
154 int min = Math.Min(_bits.Length, a._bits.Length)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 65 ulong[] _bits; field in class:Antlr.Runtime.BitSet
77 _bits = bits;
93 _bits = new ulong[( ( nbits - 1 ) >> LOG_BITS ) + 1];
146 if ( n >= _bits.Length )
150 _bits[n] |= BitMask( el );
158 int newSize = Math.Max( _bits.Length << 1, NumWordsToHold( bit ) );
169 if ( a._bits.Length > _bits.Length )
171 SetSize( a._bits.Length );
173 int min = Math.Min( _bits.Length, a._bits.Length )
    [all...]
  /system/core/libbacktrace/
GetPss.cpp 28 #define _BITS(x, offset, bits) (((x) >> offset) & ((1LL << (bits)) - 1))
30 #define PAGEMAP_PRESENT(x) (_BITS(x, 63, 1))
31 #define PAGEMAP_SWAPPED(x) (_BITS(x, 62, 1))
32 #define PAGEMAP_SHIFT(x) (_BITS(x, 55, 6))
33 #define PAGEMAP_PFN(x) (_BITS(x, 0, 55))
34 #define PAGEMAP_SWAP_OFFSET(x) (_BITS(x, 5, 50))
35 #define PAGEMAP_SWAP_TYPE(x) (_BITS(x, 0, 5))
  /system/extras/libpagemap/include/pagemap/
pagemap.h 159 #define _BITS(x, offset, bits) (((x) >> offset) & ((1LL << (bits)) - 1))
161 #define PM_PAGEMAP_PRESENT(x) (_BITS(x, 63, 1))
162 #define PM_PAGEMAP_SWAPPED(x) (_BITS(x, 62, 1))
163 #define PM_PAGEMAP_SHIFT(x) (_BITS(x, 55, 6))
164 #define PM_PAGEMAP_PFN(x) (_BITS(x, 0, 55))
165 #define PM_PAGEMAP_SWAP_OFFSET(x) (_BITS(x, 5, 50))
166 #define PM_PAGEMAP_SWAP_TYPE(x) (_BITS(x, 0, 5))
  /dalvik/dx/tests/029-unit-Bits/
run 17 dx --junit com.android.dx.util._tests._Bits > unit-out.txt
  /external/chromium_org/third_party/opus/src/celt/
entdec.c 146 unsigned ec_decode_bin(ec_dec *_this,unsigned _bits){
148 _this->ext=_this->rng>>_bits;
150 return (1U<<_bits)-EC_MINI(s+1U,1U<<_bits);
225 opus_uint32 ec_dec_bits(ec_dec *_this,unsigned _bits){
231 if((unsigned)available<_bits){
238 ret=(opus_uint32)window&(((opus_uint32)1<<_bits)-1U);
239 window>>=_bits; local
240 available-=_bits;
243 _this->nbits_total+=_bits;
    [all...]
entenc.c 139 void ec_encode_bin(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _bits){
141 r=_this->rng>>_bits;
143 _this->val+=_this->rng-IMUL32(r,((1U<<_bits)-_fl));
146 else _this->rng-=IMUL32(r,((1U<<_bits)-_fh));
193 void ec_enc_bits(ec_enc *_this,opus_uint32 _fl,unsigned _bits){
198 celt_assert(_bits>0);
199 if(used+_bits>EC_WINDOW_SIZE){
208 used+=_bits;
211 _this->nbits_total+=_bits;
entdec.h 53 /*Equivalent to ec_decode() with _ft==1<<_bits.*/
54 unsigned ec_decode_bin(ec_dec *_this,unsigned _bits);
entenc.h 52 /*Equivalent to ec_encode() with _ft==1<<_bits.*/
53 void ec_encode_bin(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _bits);
cwrs.c 431 void get_required_bits(opus_int16 *_bits,int _n,int _maxk,int _frac){
435 _bits[0]=0;
436 for(k=1;k<=_maxk;k++)_bits[k]=log2_frac(CELT_PVQ_V(_n,k),_frac);
654 void get_required_bits(opus_int16 *_bits,int _n,int _maxk,int _frac){
658 _bits[0]=0;
662 _bits[k] = 1<<_frac;
670 _bits[k]=log2_frac(u[k]+u[k+1],_frac);
  /external/libopus/celt/
entdec.c 146 unsigned ec_decode_bin(ec_dec *_this,unsigned _bits){
148 _this->ext=_this->rng>>_bits;
150 return (1U<<_bits)-EC_MINI(s+1U,1U<<_bits);
225 opus_uint32 ec_dec_bits(ec_dec *_this,unsigned _bits){
231 if((unsigned)available<_bits){
238 ret=(opus_uint32)window&(((opus_uint32)1<<_bits)-1U);
239 window>>=_bits; local
240 available-=_bits;
243 _this->nbits_total+=_bits;
    [all...]
entenc.c 139 void ec_encode_bin(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _bits){
141 r=_this->rng>>_bits;
143 _this->val+=_this->rng-IMUL32(r,((1U<<_bits)-_fl));
146 else _this->rng-=IMUL32(r,((1U<<_bits)-_fh));
193 void ec_enc_bits(ec_enc *_this,opus_uint32 _fl,unsigned _bits){
198 celt_assert(_bits>0);
199 if(used+_bits>EC_WINDOW_SIZE){
208 used+=_bits;
211 _this->nbits_total+=_bits;
entdec.h 53 /*Equivalent to ec_decode() with _ft==1<<_bits.*/
54 unsigned ec_decode_bin(ec_dec *_this,unsigned _bits);
entenc.h 52 /*Equivalent to ec_encode() with _ft==1<<_bits.*/
53 void ec_encode_bin(ec_enc *_this,unsigned _fl,unsigned _fh,unsigned _bits);
cwrs.c 431 void get_required_bits(opus_int16 *_bits,int _n,int _maxk,int _frac){
435 _bits[0]=0;
436 for(k=1;k<=_maxk;k++)_bits[k]=log2_frac(CELT_PVQ_V(_n,k),_frac);
654 void get_required_bits(opus_int16 *_bits,int _n,int _maxk,int _frac){
658 _bits[0]=0;
662 _bits[k] = 1<<_frac;
670 _bits[k]=log2_frac(u[k]+u[k+1],_frac);
  /external/safe-iop/include/
safe_iop.h 476 #define MAKE_UADD(_prefix, _bits, _type, _max) \
478 int safe_add##_prefix##_bits (_type *result, _type value, _type a) { \
482 #define MAKE_SADD(_prefix, _bits, _type, _max) \
484 int safe_add##_prefix##_bits(_type *result, _type value, _type a) { \
488 #define MAKE_USUB(_prefix, _bits, _type) \
490 int safe_sub##_prefix##_bits(_type *result, _type value, _type a) { \
494 #define MAKE_SSUB(_prefix, _bits, _type, _min, _max) \
496 int safe_sub##_prefix##_bits(_type *result, _type value, _type a) { \
500 #define MAKE_UMUL(_prefix, _bits, _type, _max) \
502 int safe_mul##_prefix##_bits(_type *result, _type value, _type a) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
shaders_cache.h 55 ((id) & (((1 << _SHADERS_ ## stage ## _BITS) - 1) << SHADERS_ ## stage ## _SHIFT))
  /external/mesa3d/src/gallium/state_trackers/vega/
shaders_cache.h 55 ((id) & (((1 << _SHADERS_ ## stage ## _BITS) - 1) << SHADERS_ ## stage ## _SHIFT))
  /external/chromium_org/third_party/smhasher/src/
Types.h 191 template < int _bits >
368 uint8_t bytes[(_bits+7)/8];
  /external/libvorbis/doc/
06-floor0.tex 175 \exp \left( .11512925 \left(\frac{\mathtt{amplitude} \cdot \mathtt{floor0\_amplitute\_offset}}{(2^{\mathtt{floor0\_amplitude\_bits}}-1)\sqrt{p+q}}
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c 93 char inname[50], outname[50], bottleneck_file[50], bitfilename[60], bitending[10]="_bits.pcm";
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c 93 char inname[50], outname[50], bottleneck_file[50], bitfilename[60], bitending[10]="_bits.pcm";
  /frameworks/rs/scriptc/
rs_types.rsh 486 * SIGNED, or UNSIGNED followed by the _BITS where BITS is the
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/scriptc/
rs_types.rsh 465 * SIGNED, or UNSIGNED followed by the _BITS where BITS is the
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/scriptc/
rs_types.rsh 465 * SIGNED, or UNSIGNED followed by the _BITS where BITS is the

Completed in 930 milliseconds

1 2