HomeSort by relevance Sort by last modified time
    Searched defs:bit (Results 176 - 200 of 294) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 288 const int bit = vp9_read(r, fc->comp_ref_prob[ctx]); local
290 ++counts->comp_ref[ctx][bit];
292 ref_frame[!idx] = cm->comp_var_ref[bit];
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.cpp 214 // Encoded as a small-endian 32-bit word in the stream.
604 // Sign-extend 19-bit immediate.
1526 uint64_t bit = fieldFromInstruction(insn, 31, 1) << 5; local
    [all...]
  /external/ltrace/
lens_default.c 734 int bit = !!(m & d); local
736 if (bit) {
742 } else if (!bit) {
  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 78 int bit = rangeDecoder.DecodeBit(m_Decoders, ((1 + matchBit) << 8) + symbol); local
79 symbol = (symbol << 1) | bit;
80 if (matchBit != bit)
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_lowering_nv50.cpp 30 // nv50 doesn't support 32 bit integer multiplication
223 // remove pseudo operations and non-fixed no-ops, split 64 bit operations
318 i->getDef(0)->reg.size = 2; // $aX are only 16 bit
628 // The lanes of a quad are grouped by the bit in the condition register they
653 Value *bit = bld.getSSA(); local
657 bld.mkMov(bit, imm)->setPredicate(CC_EQ, pred);
658 cond->setSrc(l, bit);
995 int id = i->getSrc(0)->reg.data.offset / 4; // in 32 bit reg units
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_fp.c 162 int bit = ffs( ~c->fp_temp ); local
164 if (!bit) {
169 c->fp_temp |= 1<<(bit-1);
170 return dst_reg(PROGRAM_TEMPORARY, FIRST_INTERNAL_TEMP+(bit-1));
  /external/mesa3d/src/mesa/state_tracker/
st_mesa_to_tgsi.c 448 unsigned bit = 1 << i; local
450 if (dst.WriteMask & bit) {
451 if (positive_one_mask & bit) {
456 else if (negative_one_mask & bit) {
461 else if (zero_mask & bit) {
470 if (negate_mask & bit) {
    [all...]
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_fax.cpp 46 int _FindBit(const FX_BYTE* data_buf, int max_pos, int start_pos, int bit)
51 FX_LPCBYTE leading_pos = bit ? OneLeadPos : ZeroLeadPos;
54 if (bit) {
64 FX_BYTE skip = bit ? 0x00 : 0xff;
137 #define ADDBIT(code, bit) code = code << 1; if (bit) code ++;
412 FX_BOOL bit = NEXTBIT; local
414 if (bit) {
465 bit = NEXTBIT;
466 if (bit) {
529 int bit = NEXTBIT; local
552 int bit = NEXTBIT; local
669 int bit = m_pSrcBuf[bitpos0 \/ 8] & (1 << (7 - bitpos0 % 8)); local
    [all...]
  /external/selinux/libselinux/src/
avc.c 650 access_vector_t bit = 1; local
660 if (av & bit) {
661 permstr = security_av_perm_to_string(tclass, bit);
665 av &= ~bit;
667 bit <<= 1;
  /external/zopfli/src/zopfli/
deflate.c 35 is not simply bytesize * 8 + bp because even representing one bit requires a
38 static void AddBit(int bit,
41 (*out)[*outsize - 1] |= bit << *bp;
50 unsigned bit = (symbol >> i) & 1; local
52 (*out)[*outsize - 1] |= bit << *bp;
67 unsigned bit = (symbol >> (length - i - 1)) & 1; local
69 (*out)[*outsize - 1] |= bit << *bp;
468 Calculates the bit lengths for the symbols for dynamic blocks. Chooses bit
471 bit lengths
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng_util.cpp 326 unsigned long bit = (tree1d[n] >> (bitlen[n] - i - 1)) & 1; local
328 if(tree2d[2 * treepos + bit] == 32767) //not yet filled in
332 //last bit
333 tree2d[2 * treepos + bit] = n;
339 tree2d[2 * treepos + bit] = ++nodefilled + numcodes;
343 else treepos = tree2d[2 * treepos + bit] - numcodes; //subtract numcodes from address to get address value
347 int decode(bool& decoded, unsigned long& result, size_t& treepos, unsigned long bit) const
351 result = tree2d[2 * treepos + bit];
362 size_t bp = 0, pos = 0; //bit pointer and byte pointer
369 if(bp >> 3 >= in.size()) { error = 52; return; } //error, bit pointer will jump past memor
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decodemv.c 289 const int bit = vp9_read(r, fc->comp_ref_prob[ctx]); local
291 ++counts->comp_ref[ctx][bit];
293 ref_frame[!idx] = cm->comp_var_ref[bit];
  /art/runtime/
dex_file_verifier.cc 330 uint32_t bit = MapTypeToBitMask(item->type_); local
332 if (UNLIKELY(bit == 0)) {
337 if (UNLIKELY((used_bits & bit) != 0)) {
342 used_bits |= bit;
856 // Special case of bit pattern 0xxx.
870 // No extra checks necessary for bit pattern 0xxx.
877 // Illegal bit patterns 10xx or 1111.
883 // Bit pattern 110x has an additional byte.
897 // Bit pattern 1110 has 2 additional bytes.
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_coverage_libcdep.cc 59 // 128M counters "ought to be enough for anybody" (4M on 32-bit).
448 // Map every 8bit counter to a 8-bit bitset and clear the counter.
478 u64 bit = 0; local
479 /**/ if (x >= 128) bit = 128;
480 else if (x >= 32) bit = 64;
481 else if (x >= 16) bit = 32;
482 else if (x >= 8) bit = 16;
483 else if (x >= 4) bit = 8;
484 else if (x >= 3) bit = 4
    [all...]
sanitizer_linux.cc 95 // Are we using 32-bit or 64-bit Linux syscalls?
97 // but it still needs to use 64-bit syscalls.
498 // 32-bit syscall here.
629 const uptr bit = signum % (sizeof(k_set->sig[0]) * 8); local
630 k_set->sig[idx] &= ~(1 << bit);
  /external/deqp/modules/gles3/functional/
es3fFboRenderTest.cpp 95 deUint32 buffers; //!< Buffer bit mask (GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT|...)
295 deUint32 bit = ndx ? GL_STENCIL_BUFFER_BIT : GL_DEPTH_BUFFER_BIT; local
298 if ((m_config.buffers & bit) == 0)
891 deUint32 bit = ndx ? GL_STENCIL_BUFFER_BIT : GL_DEPTH_BUFFER_BIT; local
894 if ((m_config.buffers & bit) == 0)
1332 deUint32 bit = ndx == 0 ? GL_COLOR_BUFFER_BIT local
1370 deUint32 bit = ndx == 0 ? GL_COLOR_BUFFER_BIT : local
    [all...]
  /external/fio/
client.c 1169 char bit[16]; local
1179 sprintf(bit, "%d-bit", probe->bpp * 8);
1183 probe->hostname, probe->bigendian, bit, os, arch,
    [all...]
  /external/linux-tools-perf/src/tools/perf/
builtin-trace.c 121 P_MMAP_FLAG(32BIT);
613 u8 mask = 0, bit = 1; local
616 field = field->next, ++i, bit <<= 1) {
617 if (mask & bit)
    [all...]
  /external/linux-tools-perf/src/tools/perf/util/
evsel.c 128 enum perf_event_sample_format bit)
130 if (!(evsel->attr.sample_type & bit)) {
131 evsel->attr.sample_type |= bit;
138 enum perf_event_sample_format bit)
140 if (evsel->attr.sample_type & bit) {
141 evsel->attr.sample_type &= ~bit;
1838 int bit; member in struct:bit_names
    [all...]
  /external/lzma/C/
LzmaDec.c 184 unsigned bit; local
187 bit = (matchByte & offs);
188 probLit = prob + offs + bit + symbol;
189 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
528 unsigned bit; local
531 bit = (matchByte & offs);
532 probLit = prob + offs + bit + symbol;
533 GET_BIT2_CHECK(probLit, symbol, offs &= ~bit, offs &= bit)
    [all...]
  /external/lzma/xz-embedded/
xz_dec_lzma2.c 149 * LZMA properties or related bit masks (number of literal
158 /* If 1, it's a match. Otherwise it's a single 8-bit literal. */
487 * Decode one bit. In some versions, this function has been splitted in three
500 int bit; local
507 bit = 0;
512 bit = 1;
515 return bit;
518 /* Decode a bittree starting from the most significant bit. */
534 /* Decode a bittree starting from the least significant bit. */
580 /* Decode a literal (one 8-bit byte) *
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_vbuf.c 55 uint32_t incompatible_elem_mask; /* each bit describes a corresp. attrib */
120 uint32_t user_vb_mask; /* each bit describes a corresp. buffer */
122 uint32_t incompatible_vb_mask; /* each bit describes a corresp. buffer */
124 uint32_t nonzero_stride_vb_mask; /* each bit describes a corresp. buffer */
386 /* Set the bit for each buffer which is incompatible, or isn't set. */
482 unsigned bit, vb_index = mgr->ve->ve[i].vertex_buffer_index; local
483 bit = 1 << vb_index;
487 (!unroll_indices || !(mask[VB_VERTEX] & bit))) {
494 if (mask[type] & bit) {
    [all...]
  /external/selinux/libsepol/src/
write.c 58 uint32_t buf[32], bit, count; local
75 bit = cpu_to_le32(n->startbit);
76 items = put_entry(&bit, sizeof(uint32_t), 1, fp);
    [all...]
  /external/tcpdump/
print-802_11.c 2215 enum ieee80211_radiotap_type bit; local
    [all...]
  /external/toybox/lib/
lib.c 743 mode_t bit = 0; local
750 // suid/sticky bit.
752 if ((dowhat & 8) && (dowho&(8|(1<<i)))) bit++;
753 } else if (dowhat & 16) bit++;
756 if (dowhat&(1<<j)) bit++;
759 // When selection active, modify bit
761 if (dohow == '=' || (bit && dohow == '-')) mode &= ~where;
762 if (bit && dohow != '-') mode |= where;
778 int i, bit; local
782 bit = mode & (1<<i)
    [all...]

Completed in 556 milliseconds

1 2 3 4 5 6 78 91011>>