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

<<21222324252627282930>>

  /external/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp 1824 unsigned bits = (F >> HexagonII::ExtentBitsPos) local
1838 unsigned bits = (F >> HexagonII::ExtentBitsPos) local
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 335 // For float, there are 8 exponent bits and 23 fraction bits.
337 // For double, there are 11 exponent bits and 52 fraction bits.
350 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
354 // # of bits in a number.
357 // # of fraction bits in a number.
361 // # of exponent bits in a number.
365 static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1)
415 const Bits &bits() const { return u_.bits_; } function in class:testing::internal::FloatingPoint
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_ppc.c 289 uint32_t bits; member in union:vx_inst
309 emit_instruction(p, inst.bits);
321 uint32_t bits; member in union:vxr_inst
343 emit_instruction(p, inst.bits);
352 uint32_t bits; member in union:va_inst
374 emit_instruction(p, inst.bits);
383 uint32_t bits; member in union:i_inst
400 emit_instruction(p, inst.bits);
405 uint32_t bits; member in union:xl_inst
429 emit_instruction(p, inst.bits);
450 uint32_t bits; member in union:x_inst
481 uint32_t bits; member in union:d_inst
513 uint32_t bits; member in union:a_inst
546 uint32_t bits; member in union:xo_inst
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_fs.c 105 * Expand the relevant bits of mask_input to a n*4-dword mask for the
123 LLVMValueRef bits[16]; local
131 assert(fs_type.length <= Elements(bits));
171 bits[4*i + 0] = LLVMConstInt(i32t, 1 << (j + 0), 0);
172 bits[4*i + 1] = LLVMConstInt(i32t, 1 << (j + 1), 0);
173 bits[4*i + 2] = LLVMConstInt(i32t, 1 << (j + 4), 0);
174 bits[4*i + 3] = LLVMConstInt(i32t, 1 << (j + 5), 0);
176 mask = LLVMBuildAnd(builder, mask, LLVMConstVector(bits, fs_type.length), "");
    [all...]
  /external/mesa3d/src/gallium/include/pipe/
p_video_state.h 163 } bits; member in union:pipe_mpeg12_macroblock::__anon16708
  /external/mesa3d/src/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/openfst/src/include/fst/extensions/ngram/
ngram-fst.h 441 // pseudo-root bits
526 uint64 bits; local
530 offset += BitmapIndex::StorageSize(context_bits) * sizeof(bits);
532 offset += BitmapIndex::StorageSize(future_bits) * sizeof(bits);
534 offset += BitmapIndex::StorageSize(num_states_) * sizeof(bits);
  /external/openssh/
ssh-agent.c 433 u_int bits; local
443 if ((r = sshbuf_get_u32(e->request, &bits)) != 0 ||
448 if (bits != sshkey_size(key))
451 sshkey_size(key), bits);
    [all...]
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jdmarker.c 457 UINT8 bits[17]; local
471 bits[0] = 0;
474 INPUT_BYTE(cinfo, bits[i], return FALSE);
475 count += bits[i];
481 bits[1], bits[2], bits[3], bits[4],
482 bits[5], bits[6], bits[7], bits[8])
    [all...]
  /external/v8/src/
types.h 577 static TypeImpl* New(bitset bits) {
578 DCHECK(bits == kNone || IsInhabited(bits));
579 return Config::from_bitset(bits);
581 static TypeHandle New(bitset bits, Region* region) {
582 DCHECK(bits == kNone || IsInhabited(bits));
583 return Config::from_bitset(bits, region);
588 static bool IsInhabited(bitset bits) {
589 return bits & kSemantic
616 bitset bits; member in struct:v8::internal::TypeImpl::BitsetType::BitsetMin
    [all...]
utils.h 15 #include "src/base/bits.h"
38 DCHECK(base::bits::IsPowerOfTwo32(x));
39 int bits = 0; local
44 bits += 16;
48 bits += 8;
52 bits += 4;
57 case 8: bits++; // Fall through.
58 case 4: bits++; // Fall through.
59 case 2: bits++; // Fall through.
62 DCHECK_EQ(1 << bits, original_x)
    [all...]
  /external/vixl/src/vixl/a64/
simulator-a64.h 178 // encodable as a float, but rounding based on the low-order mantissa bits
190 // These bits fit into the result.
198 // For subnormal outputs, the range of representable bits is smaller and
237 // If all bits in the exponent are set, the value is infinite or NaN.
327 // If any bits at position halfbit or below are set, onebit (ie. the
356 uint64_t bits = (uint64_t)address; local
357 return (T)(bits & ~kAddressTagMask);
402 // 0 represents the least significant bits.
541 // When setting a result in a register of size less than Q, the top bits of
683 // The default constructor represents a register which has no writable bits
    [all...]
  /external/webp/src/demux/
demux.c 303 int bits; local
315 bits = ReadByte(mem);
317 (bits & 1) ? WEBP_MUX_DISPOSE_BACKGROUND : WEBP_MUX_DISPOSE_NONE;
318 frame->blend_method_ = (bits & 2) ? WEBP_MUX_NO_BLEND : WEBP_MUX_BLEND;
    [all...]
  /external/wpa_supplicant_8/src/ap/
hostapd.c 489 unsigned int i = iface->conf->num_bss, bits = 0, j; local
497 /* Determine the bits necessary to cover the number of BSSIDs. */
499 bits++;
501 /* Determine the bits necessary to any configured BSSIDs,
532 if (bits < j)
533 bits = j;
535 if (bits > 40) {
536 wpa_printf(MSG_ERROR, "Too many bits in the BSSID mask (%u)",
537 bits);
542 j = bits / 8
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
motion_est.cpp 77 int bits, imax, imin, i; local
101 for (bits = 3; bits <= max_mv_bits; bits += 2)
103 imax = 1 << (bits >> 1);
106 for (i = imin; i < imax; i++) mvbits[-i] = mvbits[i] = bits;
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
XmlUtils.java 147 long bits; local
    [all...]
  /frameworks/native/include/input/
Input.h 204 uint64_t bits __attribute__((aligned(8))); member in struct:android::PointerCoords
207 // for each axis that is present in the structure according to 'bits'.
211 BitSet64::clear(bits);
215 return BitSet64::isEmpty(bits);
  /frameworks/native/libs/gui/
GLConsumer.cpp 59 char const* bits; member in struct:android::__anon23055
328 uint32_t* bits; local
329 buffer->lock(GraphicBuffer::USAGE_SW_WRITE_RARELY, reinterpret_cast<void**>(&bits));
332 memset(bits, 0, stride * height * 4);
335 bits[x] = (kDebugData.bits[y + kDebugData.width + x] == 'X') ?
338 bits += stride;
    [all...]
  /hardware/intel/common/libva/va/
va_dec_hevc.h 174 } bits; member in union:_VADecPictureParameterBufferHEVC::__anon23950
240 } bits; member in union:_VADecPictureParameterBufferHEVC::__anon23952
255 * \brief number of bits that structure
va_enc_h264.h 196 } bits; member in union:_VAEncSequenceParameterBufferH264::__anon23969
247 } bits; member in union:_VAEncSequenceParameterBufferH264::__anon23971
369 } bits; member in union:_VAEncPictureParameterBufferH264::__anon23973
511 * @name Macroblock neighbour availability bits
514 * Definitions for macroblock neighbour availability bits used in
556 * availability bits from VME stage.
559 * availability bits from the VME stage are overriden
573 } bits; member in struct:_VAEncMacroblockParameterBufferH264::__anon23975::__anon23976
582 } bits; member in struct:_VAEncMacroblockParameterBufferH264::__anon23975::__anon23978
757 * @return the number of bits written, or a negative value to indicate an erro
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_bitstream.c 152 int bits = v >> (n - len); local
153 vp9_write_tree(w, vp9_coef_tree, p->context_tree, bits, len, i);
167 int n = l; /* number of bits in v, assumed nonzero */
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h 220 // For float, there are 8 exponent bits and 23 fraction bits.
222 // For double, there are 11 exponent bits and 52 fraction bits.
235 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
239 // # of bits in a number.
242 // # of fraction bits in a number.
246 // # of exponent bits in a number.
250 static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1)
300 const Bits &bits() const { return u_.bits_; } function in class:testing::internal::FloatingPoint
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/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
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
telephony.h 167 struct phone_except bits; member in union:telephony_exception

Completed in 2520 milliseconds

<<21222324252627282930>>