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

  /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/extras/libpagemap/include/pagemap/
pagemap.h 132 #define _BITS(x, offset, bits) (((x) >> offset) & ((1LL << (bits)) - 1))
134 #define PM_PAGEMAP_PRESENT(x) (_BITS(x, 63, 1))
135 #define PM_PAGEMAP_SWAPPED(x) (_BITS(x, 62, 1))
136 #define PM_PAGEMAP_SHIFT(x) (_BITS(x, 55, 6))
137 #define PM_PAGEMAP_PFN(x) (_BITS(x, 0, 55))
138 #define PM_PAGEMAP_SWAP_OFFSET(x) (_BITS(x, 5, 50))
139 #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/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/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/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 465 * SIGNED, or UNSIGNED followed by the _BITS where BITS is the
  /prebuilts/sdk/renderscript/include/
rs_types.rsh 465 * SIGNED, or UNSIGNED followed by the _BITS where BITS is the
  /frameworks/base/graphics/java/android/renderscript/
Element.java 109 * SIGNED, or UNSIGNED followed by the _BITS where BITS is the
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Element.java 117 * SIGNED, or UNSIGNED followed by the _BITS where BITS is the
    [all...]
  /external/aac/libAACenc/include/
aacenc_lib.h     [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
C.stg     [all...]
  /frameworks/base/docs/html/reference/renderscript/
rs__types_8rsh.html     [all...]

Completed in 352 milliseconds