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

<<21222324252627282930>>

  /external/crcalc/src/com/hp/creals/
CR.java 183 * Indicates that the number of bits of precision requested by
184 * a computation on constructive reals required more than 28 bits,
250 // bits should be identical. Thus high is either 0 or -1.
292 long bits = Double.doubleToLongBits(Math.abs(n)); local
293 long mantissa = (bits & 0xfffffffffffffL);
294 int biased_exp = (int)(bits >> 52);
455 * @param r Relative tolerance in bits
456 * @param a Absolute tolerance in bits
477 * @param a Absolute tolerance in bits
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 929 // \note glReadPixels() allows only 8 bits to be read. This means that RGB10_A2 will loose some
930 // bits in the process and it must be taken into account when computing threshold.
931 const IVec4 bits = min(IVec4(8), tcu::getTextureFormatBitDepth(format)); local
932 const Vec4 baseThreshold = 1.0f / ((IVec4(1) << bits)-1).asFloat();
    [all...]
  /external/flac/libFLAC/
stream_decoder.c 143 /* for use when the signal is <= 16 bits-per-sample, or <= 15 bits-per-sample on a side channel (which requires 1 extra bit): */
163 FLAC__byte header_warmup[2]; /* contains the sync code and reserved bits */
1587 unsigned bits, used_bits = 0; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
intltest.cpp 116 // IEEE floating point has 52 bits of mantissa, plus one assumed bit
1312 int32_t bits = voidSize * 8; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundleReader.java 51 * Two bits in indexes[URES_INDEX_ATTRIBUTES] indicate whether a resource bundle
91 * which contains the item type number in its upper 4 bits (31..28) and either
92 * an offset or a direct value in its lower 28 bits (27..0).
114 * To get byte offsets, the offset is multiplied by 4 (or shifted left by 2 bits).
223 * formatVersion==1: all bits contain the length of indexes[]
226 * only bits 7..0 contain the length of indexes[],
227 * bits 31..8 are reserved and set to 0 */
1019 int bits = levelBitsList & 0xf; local
1020 assert bits != 0; local
    [all...]
  /external/ipsec-tools/src/racoon/
ipsec_doi.c 4179 u_int bits = prefixlen; local
    [all...]
  /external/iptables/libxtables/
xtables.c 1221 uint32_t maskaddr, bits; local
1230 bits = 0xFFFFFFFEL;
1231 while (--i >= 0 && maskaddr != bits)
1232 bits <<= 1;
1376 unsigned int bits; local
1568 unsigned int bits = 0; local
1692 unsigned int bits; local
    [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
LwjglGL1Renderer.java 142 int bits = 0; local
149 bits = GL_COLOR_BUFFER_BIT;
161 bits |= GL_DEPTH_BUFFER_BIT;
164 bits |= GL_STENCIL_BUFFER_BIT;
166 if (bits != 0) {
167 glClear(bits);
    [all...]
  /external/kernel-headers/original/uapi/asm-x86/asm/
kvm.h 87 __u64 bits; member in union:kvm_ioapic_state::__anon10898
  /external/libopus/celt/
celt_encoder.c 987 /* For CBR and non-transient CVBR frames, limit dynalloc to 1/4 of the bits */
1251 opus_int32 bits; local
    [all...]
  /external/libxml2/
encoding.c 495 int bits; local
538 if (c < 0x80) { *out++= c; bits= -6; }
539 else if (c < 0x800) { *out++= ((c >> 6) & 0x1F) | 0xC0; bits= 0; }
540 else if (c < 0x10000) { *out++= ((c >> 12) & 0x0F) | 0xE0; bits= 6; }
541 else { *out++= ((c >> 18) & 0x07) | 0xF0; bits= 12; }
543 for ( ; bits >= 0; bits-= 6) {
546 *out++= ((c >> bits) & 0x3F) | 0x80;
733 int bits; local
780 if (c < 0x80) { *out++= c; bits= -6;
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_ra.cpp 88 BitSet bits[LAST_REGISTER_FILE + 1]; member in class:nv50_ir::RegisterSet
101 bits[f].fill(0);
115 bits[rf].allocate(last[rf] + 1, true);
130 bits[f].periodicMask32(lock, unlock);
136 bits[f] |= set->bits[f];
143 bits[FILE_GPR].print();
150 reg = bits[f].findFreeRange(size);
166 bits[f].setMask(reg & ~31, static_cast<uint32_t>(mask) << (reg % 32));
172 if (bits[f].testRange(reg, size)
    [all...]
  /external/mesa3d/src/mesa/main/
format_pack.c 2620 GLuint bits = _mesa_get_format_max_bits(format); \/* bits per chan *\/ local
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 275 unsigned char bits[17]; local
280 bits[0] = 0;
285 bits[i] = dht[pos++];
286 count += bits[i];
313 memcpy ((*hufftbl)->bits, bits, sizeof (*hufftbl)->bits);
    [all...]
  /external/openssh/
ssh-keygen.c 61 /* Number of bits in the RSA/DSA key. This value can be set on the command line. */
65 u_int32_t bits = 0; variable
212 fprintf(stderr, "key bits exceeds maximum %d\n", maxbits);
216 fatal("DSA keys must be 1024 bits");
218 fatal("Key must at least be 768 bits");
221 "256, 384 or 521 bits");
986 bits = 0;
987 type_bits_valid(type, NULL, &bits);
988 if ((r = sshkey_generate(type, bits, &private)) != 0) {
    [all...]
sshkey.c 382 sshkey_ecdsa_bits_to_nid(int bits)
384 switch (bits) {
1264 u_long bits; local
1272 /* Get number of bits. */
1273 bits = strtoul(cp, &ep, 10);
1275 bits == 0 || bits > SSHBUF_MAX_BIGNUM * 8)
1283 /* validate the claimed number of bits */
1284 if (BN_num_bits(ret->rsa->n) != (int)bits)
1418 u_int bits = 0; local
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssSchema.java 48 final int bits; field in class:CssSchema.Property
57 int bits, ImmutableSet<String> literals,
59 this.bits = bits;
    [all...]
  /external/skia/src/core/
SkDraw.cpp 1142 unsigned bits = 0; \/\/ TODO: find a way to allow the caller to tell us to local
    [all...]
  /external/skia/src/ports/
SkFontHost_win.cpp 1239 const void* bits = fOffscreen.draw(glyph, isBW, &srcRB); local
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64-inl.h 16 #include "src/base/bits.h"
34 // Assumes that Smis are shifted by 32 bits and little endianness.
1245 // 24-bits immediates or values of 'space' that can be encoded in one
1645 int bits = reg.SizeInBits(); local
1659 int bits = reg.SizeInBits(); local
    [all...]
  /external/v8/src/
assembler.cc 234 // The first byte of a relocation record has a tag in its low 2 bits:
279 // 00 [6 bits pc delta]
283 // [7 bits data] 0
285 // [7 bits data] 1
286 // (Bits 6..31 of pc delta, with leading zeroes
332 // Return if the pc_delta can fit in kSmallPCDeltaBits bits.
333 // Otherwise write a variable length PC jump for the bits that do
334 // not fit in the kSmallPCDeltaBits bits.
545 // Read the 32-kSmallPCDeltaBits most significant bits of the
554 // The least significant kSmallPCDeltaBits bits will be adde
927 uint64_t bits = bit_cast<uint64_t, double>(value); local
    [all...]
  /external/v8/test/cctest/
test-types.cc 471 bitset bits = this->AsBitset(type1) & this->AsBitset(type2); local
473 (Rep::BitsetType::IsInhabited(bits) ? bits : 0) ==
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readelf.c 685 /* PPC64 LE ABI uses three bits in the st_other field to indicate the number
1847 Bool bits = !(a_shdr.sh_type == SHT_NOBITS); local
    [all...]
  /external/vixl/src/vixl/a64/
instructions-a64.h 177 uint32_t Bits(int msb, int lsb) const {
182 int32_t bits = *(reinterpret_cast<const int32_t*>(this)); local
183 return signed_bitextract_32(msb, lsb, bits);
492 uint8_t bits[kNEONFormatMaxBits]; member in struct:vixl::NEONFormatMap
494 // Mapping from concatenated bits to format.
591 // The integer format map uses three bits (Q, size<1:0>) to encode the
601 // The long integer format map uses two bits (size<1:0>) to encode the
611 // The FP format map uses two bits (Q, size<0>) to encode the NEON FP vector
614 // The FP format map assumes two bits (Q, size<0>) are used to encode the
622 // The load/store format map uses three bits (Q, 11, 10) to encode th
    [all...]
  /external/vixl/test/
test-simulator-a64.cc 135 static float rawbits_to_fp(uint32_t bits) {
136 return rawbits_to_float(bits);
139 static double rawbits_to_fp(uint64_t bits) {
140 return rawbits_to_double(bits);
364 const unsigned bits = sizeof(T) * 8; local
367 reinterpret_cast<uintptr_t>(results), bits);
371 printf("const uint%u_t kExpected_%s[] = {\n", bits, name);
374 bits / 4, static_cast<uint64_t>(results[d]));
390 bits / 4, static_cast<uint64_t>(inputs[n]),
391 bits / 4, static_cast<uint64_t>(inputs[m])
494 const unsigned bits = sizeof(T) * 8; local
621 const unsigned bits = sizeof(T) * 8; local
740 const unsigned bits = sizeof(T) * 8; local
    [all...]

Completed in 1841 milliseconds

<<21222324252627282930>>