HomeSort by relevance Sort by last modified time
    Searched full:bits (Results 351 - 375 of 22655) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/native/
cbigint.h 28 single: 31 = sign bit, 30..23 = exponent (8 bits), 22..0 = significand (23 bits)
29 double: 63 = sign bit, 62..52 = exponent (11 bits), 51..0 = significand (52 bits)
30 inf == (all exponent bits set) and (all mantissa bits clear)
31 nan == (all exponent bits set) and (at least one mantissa bit set)
33 zero == (all exponent bits clear) and (all mantissa bits clear)
34 denormal == (all exponent bits clear) and (at least one mantissa bit set
    [all...]
  /external/libavc/encoder/
ih264e_intra_modes_eval.h 112 * bits in the bit-stream.
120 * input block and the reconstructed block and rate is the number of bits taken
122 * exactly point to the total number of bits it takes, rather it points to header
123 * bits necessary for encoding the macroblock. Assuming the deltaQP, cbp bits
124 * and residual bits fall in to texture bits the number of bits taken to encoding
150 * bits in the bit-stream.
157 * input block and the reconstructed block and rate is the number of bits take
    [all...]
  /external/vulkan-validation-layers/libs/glm/detail/
func_integer.hpp 34 /// The notation [a, b] means the set of bits from bit-number a through bit-number
77 /// result. The 32 least-significant bits are returned in lsb.
78 /// The 32 most-significant bits are returned in msb.
92 /// result. The 32 least-significant bits are returned in lsb.
93 /// The 32 most-significant bits are returned in msb.
106 /// Extracts bits [offset, offset + bits - 1] from value,
107 /// returning them in the least significant bits of the result.
108 /// For unsigned data types, the most significant bits of the
110 /// most significant bits will be set to the value of bit offset + base - 1
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrFormats.td 17 class Format<bits<7> val> {
18 bits<7> Value = val;
62 class ImmType<bits<4> val> {
63 bits<4> Value = val;
77 class FPFormat<bits<3> val> {
78 bits<3> Value = val;
91 class Domain<bits<2> val> {
92 bits<2> Value = val;
101 class CD8VForm<bits<3> val> {
102 bits<3> Value = val
    [all...]
  /external/autotest/client/site_tests/audio_Microphone/
audio_Microphone.py 21 self, filesize, duration, channels, rate, bits=16):
22 expected = duration * channels * (bits / 8) * rate
27 def verify_alsa_capture(self, channels, rate, bits=16):
31 bits=bits, rate=rate)
34 DURATION, channels, rate, bits)