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

<<21222324252627282930>>

  /cts/tests/tests/view/src/android/view/cts/util/
XmlUtils.java 143 long bits; local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/util/
XmlUtils.java 144 long bits; local
    [all...]
  /development/ndk/platforms/android-21/include/linux/
telephony.h 186 struct phone_except bits; member in union:telephony_exception
  /development/ndk/platforms/android-3/include/linux/
telephony.h 167 struct phone_except bits; member in union:telephony_exception
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java 265 long bits = Double.doubleToLongBits(x); local
266 long mantissa = bits & 0x000fffffffffffffL;
267 int exponent = (int) ((bits & 0x7ff0000000000000L) >> 52) - 1023;
304 if ((bits & 0x8000000000000000L) != 0) {
2374 long bits = mantissa | ((exponent + 1023L) << 52); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECFieldElement.java 401 int bits = getFieldSize(); local
402 int len = (bits + 31) >> 5;
403 int[] p = Nat.fromBigInteger(bits, q);
404 int[] n = Nat.fromBigInteger(bits, x);
524 * The <code>LongArray</code> holding the bits.
  /external/deqp/framework/platform/X11/
tcuX11GlxPlatform.cpp 435 deUint32 bits = surfaceTypeToDrawableBits(renderCfg.surfaceType); local
437 if ((visual.getAttrib(GLX_DRAWABLE_TYPE) & bits) == 0)
454 void add (size_t bits, deUint32 value);
455 void sub (size_t bits, deUint32 value);
463 void Rank::add (size_t bits, deUint32 value)
465 TCU_CHECK_INTERNAL(m_bitsLeft >= bits);
466 m_bitsLeft -= bits;
467 m_value = m_value << bits | de::min((1U << bits) - 1, value);
470 void Rank::sub (size_t bits, deUint32 value
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 108 const deUint32 aBits = tcu::Float32(a).bits();
109 const deUint32 bBits = tcu::Float32(b).bits();
151 const int bits[] = local
157 DE_STATIC_ASSERT(DE_LENGTH_OF_ARRAY(bits) == glu::PRECISION_LAST);
158 DE_ASSERT(de::inBounds<int>(precision, 0, DE_LENGTH_OF_ARRAY(bits)));
159 return bits[precision];
268 return str << v.value << " / " << tcu::toHex(tcu::Float32(v.value).bits());
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp 112 const deUint32 aBits = tcu::Float32(a).bits();
113 const deUint32 bBits = tcu::Float32(b).bits();
155 const int bits[] = local
161 DE_STATIC_ASSERT(DE_LENGTH_OF_ARRAY(bits) == glu::PRECISION_LAST);
162 DE_ASSERT(de::inBounds<int>(precision, 0, DE_LENGTH_OF_ARRAY(bits)));
163 return bits[precision];
225 // remove unrepresentable mantissa bits
341 return str << v.value << " / " << tcu::toHex(tcu::Float32(v.value).bits());
    [all...]
es31fShaderIntegerFunctionTests.cpp 66 return str << v.value << " / " << tcu::toHex(tcu::Float32(v.value).bits());
734 m_spec.inputs.push_back(Symbol("bits", glu::VarType(glu::TYPE_INT, precision)));
736 m_spec.source = "extracted = bitfieldExtract(value, offset, bits);";
752 const int bits = rnd.getInt(0, numBits); local
753 const int offset = rnd.getInt(0, numBits-bits);
756 inBits[valueNdx] = bits;
768 const int bits = *((const int*)inputs[2]); local
774 const deUint32 valMask = (bits == 32 ? ~0u : ((1u<<bits)-1u));
776 const deUint32 ref = baseVal | ((isSigned && (baseVal & (1<<(bits-1)))) ? ~valMask : 0u)
816 const int bits = rnd.getInt(0, numBits); local
835 const int bits = *((const int*)inputs[3]); local
    [all...]
  /external/fio/
verify.c 359 unsigned int bits; local
361 bits = hweight8(buf[i] ^ pattern[mod]);
362 log_err("fio: got pattern %x, wanted %x. Bad bits %d\n",
363 buf[i], pattern[mod], bits);
    [all...]
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifDecoder.java 529 int available, clear, codeMask, codeSize, endOfInformation, inCode, oldCode, bits, code, count, i, datum, local
561 datum = bits = count = first = top = pi = bi = 0;
563 // Load bytes until there are enough bits for a code.
574 datum += (((int) block[bi]) & 0xff) << bits;
575 bits += 8;
579 while (bits >= codeSize) {
583 bits -= codeSize;
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-internal.h 306 // For float, there are 8 exponent bits and 23 fraction bits.
308 // For double, there are 11 exponent bits and 52 fraction bits.
321 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
325 // # of bits in a number.
328 // # of fraction bits in a number.
332 // # of exponent bits in a number.
336 static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1)
386 const Bits &bits() const { return u_.bits_; } function in class:testing::internal::FloatingPoint
    [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h 221 // For float, there are 8 exponent bits and 23 fraction bits.
223 // For double, there are 11 exponent bits and 52 fraction bits.
236 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
240 // # of bits in a number.
243 // # of fraction bits in a number.
247 // # of exponent bits in a number.
251 static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1)
304 const Bits &bits() const { return u_.bits_; } function in class:testing::internal::FloatingPoint
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-common-private.hh 1133 unsigned int bits = (byte >> (16 - (((s & ((1 << (4 - f)) - 1)) + 1) << f))); local
    [all...]
  /external/icu/icu4c/source/common/
normalizer2impl.cpp 280 uint8_t bits=0; local
281 for(UChar c=0; c<0x180; bits>>=1) {
283 bits=smallFCD[c>>8]; // one byte per 0x100 code points
285 if(bits&1) {
765 * Bits 21..1 composite character
    [all...]
normalizer2impl.h 270 * @return The lccc(c) in bits 15..8 and tccc(c) in bits 7..0.
288 * @return The lccc(c) in bits 15..8 and tccc(c) in bits 7..0.
308 * @return The lccc(c) in bits 15..8 and tccc(c) in bits 7..0.
334 uint8_t bits=smallFCD[lead>>8]; local
335 if(bits==0) { return false; }
336 return (UBool)((bits>>((lead>>5)&7))&1);
608 // bits in canonIterDat
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/util/
GlobalizationPreferences.java 1197 BitSet bits = available_locales.get(loc); local
1218 BitSet bits; typedefs
    [all...]
  /external/iptables/iptables/
iptables.c 1017 uint32_t bits, hmask = ntohl(mask); local
1034 bits = 0xFFFFFFFEU;
1035 while (--i >= 0 && hmask != bits)
1036 bits <<= 1;
    [all...]
  /external/jpeg/
jdmarker.c 429 UINT8 bits[17]; local
443 bits[0] = 0;
446 INPUT_BYTE(cinfo, bits[i], return FALSE);
447 count += bits[i];
453 bits[1], bits[2], bits[3], bits[4],
454 bits[5], bits[6], bits[7], bits[8])
    [all...]
  /external/kernel-headers/original/uapi/linux/
telephony.h 204 * frame type is encoded in the least significant two bits of the first
207 * bits 1-0 Frame Type Data Rate Significant Words
211 * 11 3 Repeat last CNG 2 bits
229 * and f3 bits indicate that the filter has been triggered by detecting the
232 * The remaining bits should be set to zero. They will become defined over time
256 struct phone_except bits; member in union:telephony_exception
  /external/libopus/celt/
celt_decoder.c 659 opus_int32 bits; local
790 /* Pretend we've read all the remaining bits */
855 /* quanta is 6 bits, but no more than 1 bit/sample
881 bits = (((opus_int32)len*8)<<BITRES) - ec_tell_frac(dec) - 1;
882 anti_collapse_rsv = isTransient&&LM>=2&&bits>=((LM+2)<<BITRES) ? (1<<BITRES) : 0;
883 bits -= anti_collapse_rsv;
889 alloc_trim, &intensity, &dual_stereo, bits, &balance, pulses,
    [all...]
  /external/libvorbis/lib/
vorbisfile.c 1096 ogg_int64_t bits=0; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_bitstream.c 150 int bits = v >> (n - len); local
151 vp9_write_tree(w, vp9_coef_tree, p->context_tree, bits, len, i);
165 int n = l; /* number of bits in v, assumed nonzero */
    [all...]
  /external/linux-tools-perf/src/tools/perf/util/
evsel.c 1861 struct bit_names bits[] = { local
1876 struct bit_names bits[] = { local
    [all...]

Completed in 2597 milliseconds

<<21222324252627282930>>