HomeSort by relevance Sort by last modified time
    Searched defs:bits (Results 276 - 300 of 935) sorted by null

<<11121314151617181920>>

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
HardwareConfig.java 153 char[] bits = Integer.toBinaryString(ratBits).toCharArray(); local
157 rat = new BitSet(bits.length);
158 for (int i = 0 ; i < bits.length ; i++) {
159 rat.set(i, (bits[i] == '1' ? true : false));
  /hardware/intel/common/libva/va/
va_enc_jpeg.h 93 } bits; member in union:_VAEncPictureParameterBufferJPEG::__anon23981
97 /** \brief number of bits per sample. */
  /libcore/luni/src/main/java/java/util/
MiniEnumSet.java 31 private long bits; field in class:MiniEnumSet
48 * The bits yet to be returned for bits. As values from the current index are returned,
49 * their bits are zeroed out.
51 private long currentBits = bits;
103 bits = 0;
110 long oldBits = bits;
113 bits = newBits;
130 long oldBits = bits;
131 long newBits = oldBits | miniSet.bits;
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java 99 protected int next(int bits) {
101 return (int) (rnd >>> (48-bits));
139 int bits = next(2); local
141 long nextn = ((bits & 2) == 0) ? half : n - half;
142 if ((bits & 1) == 0)
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
fp_traits.hpp 118 single precision (32 bits), double precision (64 bits)
119 and extended double precision (80 - 128 bits, depending on the processor)
156 bits -- the target type when copying the leading bytes of a floating
165 bits in the leading bytes.
173 // ieee_tag version, float (32 bits) -----------------------------------------------
186 typedef uint32_t bits; typedef in struct:boost::math::detail::fp_traits_non_native
191 // ieee_tag version, double (64 bits) ----------------------------------------------
205 typedef uint32_t bits; typedef in struct:boost::math::detail::fp_traits_non_native
242 typedef uint64_t bits; typedef in struct:boost::math::detail::fp_traits_non_native
265 typedef uint32_t bits; typedef in struct:boost::math::detail::fp_traits_non_native
302 typedef uint64_t bits; typedef in struct:boost::math::detail::fp_traits_non_native
328 typedef uint32_t bits; typedef in struct:boost::math::detail::fp_traits_non_native
372 typedef uint32_t bits; typedef in struct:boost::math::detail::fp_traits_non_native
419 typedef uint32_t bits; typedef in struct:boost::math::detail::fp_traits_non_native
453 typedef uint32_t bits; typedef in struct:boost::math::detail::fp_traits_non_native
    [all...]
  /system/bt/bta/av/
bta_av_sbc.c 41 UINT16 bits; /* number of bits per pcm sample */ member in struct:__anon68583
58 ** bits: number of bits per pcm sample
64 void bta_av_sbc_init_up_sample (UINT32 src_sps, UINT32 dst_sps, UINT16 bits, UINT16 n_channels)
69 bta_av_sbc_ups_cb.bits = bits;
75 if(bits == 8)
89 if(bits == 8)
149 ** Function bta_av_sbc_up_sample_16s (16bits-stereo
    [all...]
  /system/bt/embdrv/sbc/decoder/srce/
bitalloc.c 27 The functions in this file relate to the allocation of available bits to
103 * lossless representation of the audio data. The preferred bitpool may be larger than the bits
104 * actually required but the only input we have are the scale factors. For example, it takes 2 bits
107 * This is not ideal because 0 requires 0 bits but we currently have no way of knowing this.
113 * @param preferredBitpool Returns the number of reserved bits
146 OI_INT bits = scale_factor[sb]; local
147 if (bits > maxBits) {
148 maxBits = bits;
150 if ((bitneeds[sb] = bits) > 1) {
151 bitcount += bits;
163 OI_INT bits = scale_factor[sb]; local
    [all...]
  /system/core/libpixelflinger/
fixed.cpp 110 // Compute a full precision square-root (24 bits accuracy)
270 if ((result >> 31) != 0) // result must fit in 31 bits
274 int bits = 31; local
284 } while (bits--);
  /external/guava/guava-tests/test/com/google/common/hash/
HashTestUtils.java 233 * (key) bits 'affects' a strictly smaller set of output bits. Funneling is bad because it can
241 * each input bit(i) and output bit(j), two pairs of keys must be found with all bits identical
248 int hashBits = function.bits();
252 int same = 0x0; // bitset for output bits with same values
253 int diff = 0x0; // bitset for output bits with different values
264 // test whether the hash values have same output bits
266 // test whether the hash values have different output bits
274 hashBits + " output bits; The unaffected bits are "
    [all...]
  /art/compiler/dex/quick/arm/
assemble_arm.cc 1102 uint32_t bits = encoder->skeleton; local
    [all...]
  /art/compiler/dex/quick/arm64/
assemble_arm64.cc 41 // Used for instructions which have a wide variant with the size bits set to either x0 or x1.
45 // Used for instructions which have a wide variant with the sf and n bits set to 1.
49 // Used for FP instructions which have a single and double precision variants, with he type bits set
703 uint32_t bits = opcode_is_wide ? encoder->xskeleton : encoder->wskeleton; local
    [all...]
  /art/compiler/dex/quick/mips/
assemble_mips.cc 792 uint32_t bits = encoder->skeleton; local
    [all...]
  /art/runtime/
art_field-inl.h 216 JValue bits; local
217 bits.SetI(Get32(object));
218 return bits.GetF();
224 JValue bits; local
225 bits.SetF(f);
226 Set32<kTransactionActive>(object, bits.GetI());
231 JValue bits; local
232 bits.SetJ(Get64(object));
233 return bits.GetD();
239 JValue bits; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
hdlcdrv.h 69 unsigned char bits; member in union:hdlcdrv_ioctl::__anon477
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
strtod.c 171 ULong bits[2]; local
192 copybits(bits, fpi.nbits, bb);
195 ULtod(((U*)&rv)->L, bits, exp, i);
297 ULong bits[2]; local
298 static FPI fpinan = /* only 52 explicit bits */
318 && hexnan(&s, &fpinan, bits)
320 word0(&rv) = 0x7ff00000 | bits[1];
321 word1(&rv) = bits[0];
534 /* scaled rv is denormal; zap j low bits */
1024 * trouble from bits lost to denormalization
    [all...]
  /bootable/recovery/minui/
graphics.cpp 291 unsigned char* bits = reinterpret_cast<unsigned char*>(malloc(font.width * font.height)); local
292 gr_font->texture->data = reinterpret_cast<unsigned char*>(bits);
297 memset(bits, (data & 0x80) ? 255 : 0, data & 0x7f);
298 bits += (data & 0x7f);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
InsnFormat.java 185 * Helper method to return a literal bits argument string.
207 * Helper method to return a literal bits comment string.
210 * @param width the width of the constant, in bits (used for displaying
211 * the uninterpreted bits; one of: {@code 4 8 16 32 64}
220 long bits; local
223 bits = ((CstLiteral64) value).getLongBits();
225 bits = value.getIntBits();
229 case 4: sb.append(Hex.uNibble((int) bits)); break;
230 case 8: sb.append(Hex.u1((int) bits)); break;
231 case 16: sb.append(Hex.u2((int) bits)); break
    [all...]
  /dalvik/dx/junit-tests/com/android/dx/util/
BitsTest.java 23 assertEquals(label(0), 0, Bits.makeBitSet(0).length);
26 assertEquals(label(i), 1, Bits.makeBitSet(i).length);
30 assertEquals(label(i), 2, Bits.makeBitSet(i).length);
38 assertEquals(label(i), expect, Bits.makeBitSet(i).length);
49 Bits.getMax(new int[expect]));
54 int[] bits = Bits.makeBitSet(100); local
57 assertFalse(label(i), Bits.get(bits, i));
62 int[] bits = Bits.makeBitSet(100) local
73 int[] bits = Bits.makeBitSet(100); local
86 int[] bits = Bits.makeBitSet(50); local
103 int[] bits = Bits.makeBitSet(100); local
131 int[] bits = Bits.makeBitSet(100); local
146 int[] bits = Bits.makeBitSet(100); local
171 int[] bits = Bits.makeBitSet(i); local
190 int[] bits = Bits.makeBitSet(i); local
213 int[] bits = new int[100]; local
221 int[] bits = new int[100]; local
229 int[] bits = new int[100]; local
237 int[] bits = new int[100]; local
248 int[] bits = new int[100]; local
259 int[] bits = new int[100]; local
270 int[] bits = new int[100]; local
278 int[] bits = new int[100]; local
289 int[] bits = new int[100]; local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 272 int bits = bytes.getInt(at + 1); local
273 cst = CstFloat.make(bits);
282 long bits = bytes.getLong(at + 1); local
283 cst = CstDouble.make(bits);
  /development/ndk/platforms/android-21/include/linux/
hdlcdrv.h 69 unsigned char bits; member in union:hdlcdrv_ioctl::__anon1547
  /development/ndk/platforms/android-9/arch-x86/include/asm/
io_apic_32.h 35 } __attribute__ ((packed)) bits; member in union:IO_APIC_reg_00
47 } __attribute__ ((packed)) bits; member in union:IO_APIC_reg_01
57 } __attribute__ ((packed)) bits; member in union:IO_APIC_reg_02
66 } __attribute__ ((packed)) bits; member in union:IO_APIC_reg_03
  /external/aac/libAACenc/src/
dyn_bits.cpp 118 /* count bits using all possible tables */
258 /* Side-Info bits will be calculated in Stage 1! */
299 /* we can merge. update tables, side info bits will be updated outside of this loop */
307 /* add side info info bits */
388 /* count bits used by the noiseless coder */
432 /* count bits in this group */
463 compress output, calculate total huff and side bits
485 /* sum up side info bits (section data bits) */
497 description : count bits used by scalefactors
674 int i, bits=0; local
    [all...]
  /external/aac/libFDK/include/
FDK_bitstream.h 150 * \param validBits Number of valid BitBuffer filled Bits.
199 * bits from the input bitstream.
202 * \param numberOfBits The number of bits to be retrieved.
203 * \return the requested bits, right aligned
215 UINT bits = hBitStream->CacheWord << missingBits; local
218 return ( bits | (hBitStream->CacheWord >> hBitStream->BitsInCache)) & BitMask[numberOfBits];
259 * bits from the input bitstream. It is the optimized version
260 of FDKreadBits() for readign 2 bits.
263 * \return the requested bits, right aligned
281 * \brief ReadBits Function (backward). This function returns a number of sequential bits
    [all...]
  /external/aac/libMpegTPEnc/src/
tpenc_latm.cpp 109 first two bits define the size of the value itself
342 UINT bits; local
348 bits = FDKgetValidBits( hBs );
356 bits = FDKgetValidBits( hBs ) - bits;
359 FDKpushBack(hBs, bits+2);
360 hAss->streamMuxConfigBits += transportEnc_LatmWriteValue( hBs, bits );
368 hAss->streamMuxConfigBits += bits; /* add asc length to smc summary */
760 int *bits)
762 /* Substract bits from possible previous subframe *
    [all...]
  /external/aac/libSBRenc/src/
bit_sbr.cpp 168 returns: number of bits written
215 returns: number of bits written
286 int bits; local
288 bits = encodeSbrHeaderData (&sbrEncoder->sbrElement[element_index]->sbrHeaderData, hBs);
303 returns: number of bits written
336 returns: number of bits written
396 returns: number of bits written
441 returns: number of bits written
455 payloadBits += FDKwriteBits (hBitStream, 0, SI_SBR_DATA_EXTRA_BITS); /* no reserved bits */
510 payloadBits += FDKwriteBits (hBitStream, 0, SI_SBR_DATA_EXTRA_BITS); /* no reserved bits */
    [all...]

Completed in 2042 milliseconds

<<11121314151617181920>>