Searched refs:bit (Results 26 - 50 of 852) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/vp8/encoder/
H A Dboolhuff.c65 int bit; local
67 for (bit = bits - 1; bit >= 0; bit--)
68 vp8_encode_bool(br, (1 & (data >> bit)), 0x80);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_read_bit_buffer.c24 const int bit = (rb->bit_buffer[p] & (1 << q)) >> q; local
26 return bit;
31 int value = 0, bit; local
32 for (bit = bits - 1; bit >= 0; bit--)
33 value |= vp9_rb_read_bit(rb) << bit;
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_read_bit_buffer.c24 const int bit = (rb->bit_buffer[p] & (1 << q)) >> q; local
26 return bit;
31 int value = 0, bit; local
32 for (bit = bits - 1; bit >= 0; bit--)
33 value |= vp9_rb_read_bit(rb) << bit;
/external/aac/libAACdec/src/
H A Daacdec_hcr_bit.cpp20 individually for the purpose of encoding or decoding bit streams in products that are compliant with
113 description: This function returns a bit from the bitstream according to read direction.
122 return: - bit from bitstream
129 UINT bit; local
138 bit = FDKreadBits(bs, 1);
149 bit = FDKreadBits(bs, 1);
159 bit = (bit == 0) ? 1 : 0;
163 return (bit);
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBitTree.cs28 UInt32 bit = (symbol >> bitIndex) & 1;
29 Models[m].Encode(rangeEncoder, bit);
30 m = (m << 1) | bit;
39 UInt32 bit = symbol & 1;
40 Models[m].Encode(rangeEncoder, bit);
41 m = (m << 1) | bit;
53 UInt32 bit = (symbol >> bitIndex) & 1;
54 price += Models[m].GetPrice(bit);
55 m = (m << 1) + bit;
66 UInt32 bit
[all...]
/external/chromium_org/v8/src/compiler/x64/
H A Dlinkage-x64.cc32 return rbx.bit() | rdi.bit() | rsi.bit() | r12.bit() | r13.bit() |
33 r14.bit() | r15.bit();
35 return rbx.bit() | r12.bit() | r13.bit() | r1
[all...]
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring_private.h41 #define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
44 #define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit))
/external/iptables/include/linux/netfilter/
H A Dxt_connlabel.h10 __u16 bit; member in struct:xt_connlabel_mtinfo
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_connlabel.h10 __u16 bit; member in struct:xt_connlabel_mtinfo
/external/llvm/autoconf/m4/
H A Dlinux_mixed_64_32.m42 # Some Linux machines run a 64-bit kernel with a 32-bit userspace. 'uname -m'
6 [AC_CACHE_CHECK(for 32-bit userspace on 64-bit system,llvm_cv_linux_mixed,
/external/jemalloc/include/jemalloc/internal/
H A Dbitmap.h4 /* Maximum bitmap bit count is 2^LG_BITMAP_MAXBITS. */
60 bool bitmap_get(bitmap_t *bitmap, const bitmap_info_t *binfo, size_t bit);
61 void bitmap_set(bitmap_t *bitmap, const bitmap_info_t *binfo, size_t bit);
63 void bitmap_unset(bitmap_t *bitmap, const bitmap_info_t *binfo, size_t bit);
77 bitmap_get(bitmap_t *bitmap, const bitmap_info_t *binfo, size_t bit) argument
82 assert(bit < binfo->nbits);
83 goff = bit >> LG_BITMAP_GROUP_NBITS;
85 return (!(g & (1LU << (bit & BITMAP_GROUP_NBITS_MASK))));
89 bitmap_set(bitmap_t *bitmap, const bitmap_info_t *binfo, size_t bit) argument
95 assert(bit < binf
125 size_t bit; local
145 bitmap_unset(bitmap_t *bitmap, const bitmap_info_t *binfo, size_t bit) argument
[all...]
/external/blktrace/
H A Dblkrawverify.c104 static void dump_trace(FILE *ofp, char *prefix, struct blk_io_trace *bit) argument
107 fprintf(ofp, " %8s: %08x\n", "magic", bit->magic);
108 fprintf(ofp, " %8s: %u\n", "sequence", bit->sequence);
109 fprintf(ofp, " %8s: %llu\n", "time", (unsigned long long) bit->time);
110 fprintf(ofp, " %8s: %llu\n", "sector", (unsigned long long) bit->sector);
111 fprintf(ofp, " %8s: %u\n", "bytes", bit->bytes);
112 fprintf(ofp, " %8s: %s\n", "action", act_to_str(bit->action));
113 fprintf(ofp, " %8s: %u\n", "bytes", bit->bytes);
114 fprintf(ofp, " %8s: %u\n", "cpu", bit->cpu);
115 fprintf(ofp, " %8s: %u\n", "error", bit
148 struct blk_io_trace *bit = malloc(sizeof(struct blk_io_trace)); local
[all...]
/external/valgrind/main/memcheck/tests/
H A Dvarinfo6.stdout.exp12 bit 0 -5 DATA_ERROR_MAGIC
13 bit 3 -5 DATA_ERROR_MAGIC
14 bit 6 -5 DATA_ERROR_MAGIC
15 bit 9 -5 DATA_ERROR_MAGIC
16 bit 12 -5 DATA_ERROR_MAGIC
17 bit 15 -5 DATA_ERROR_MAGIC
18 bit 18 -5 DATA_ERROR_MAGIC
19 bit 21 -5 DATA_ERROR_MAGIC
20 bit 24 0 OK really ok!
21 bit 2
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Ddboolhuff.h59 unsigned int bit = 0; local
82 bit = 1;
95 return bit;
101 int bit; local
103 for (bit = bits - 1; bit >= 0; bit--)
105 z |= (vp8dx_decode_bool(br, 0x80) << bit);
/external/qemu-pc-bios/bochs/bios/
H A Dnotes16 dl (bit 0) --> bit 4 # drive number
24 * drive sets the busy bit in Status Reg to 1
26 > drive sets the aborted-command bit in the Error register and
27 error bit in the Status register to 1.
28 > Drive also sets the busy bit in the Status register to 0.
34 transferred, the drive sets the data-request bit to 1, sets
35 the busy bit to 0, and generates an interrupt.
37 the data, the drive sets the data-request bit and the busy bit t
[all...]
/external/bison/lib/
H A Dldexpl.c43 int bit; local
60 for (bit = 1;;)
62 /* Invariant: Here bit = 2^i, factor = 2^-2^i or = 2^2^i,
63 and bit <= exp. */
64 if (exp & bit)
66 bit <<= 1;
67 if (bit > exp)
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_cost.h26 #define vp9_cost_bit(prob, bit) vp9_cost_zero((bit) ? vp9_complement(prob) \
40 const int bit = (bits >> --len) & 1; local
41 cost += vp9_cost_bit(probs[i >> 1], bit);
42 i = tree[i + bit];
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_cost.h26 #define vp9_cost_bit(prob, bit) vp9_cost_zero((bit) ? vp9_complement(prob) \
40 const int bit = (bits >> --len) & 1; local
41 cost += vp9_cost_bit(probs[i >> 1], bit);
42 i = tree[i + bit];
/external/bzip2/
H A Dunzcrash.c6 and then repeatedly decompress it, each time with a different bit of
7 the compressed data inverted, so as to test all possible one-bit errors.
64 void flip_bit ( int bit )
66 int byteno = bit / 8;
67 int bitno = bit % 8;
69 //fprintf ( stderr, "(byte %d bit %d mask %d)",
78 int bit; local
102 for (bit = 0; bit < nZ*8; bit
[all...]
/external/lldb/source/Plugins/Process/Utility/
H A DInstructionUtils.h13 // Common utilities for manipulating instruction bit fields.
17 // Return the bit field(s) from the most significant bit (msbit) to the
18 // least significant bit (lsbit) of a 64-bit unsigned value.
26 // Return the bit field(s) from the most significant bit (msbit) to the
27 // least significant bit (lsbit) of a 32-bit unsigned value.
35 // Return the bit valu
37 Bit32(const uint32_t bits, const uint32_t bit) argument
43 Bit64(const uint64_t bits, const uint32_t bit) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
H A DTables1kGCMExponentiator.java28 int bit = 0;
33 ensureAvailable(bit);
34 GCMUtil.multiply(y, (int[])lookupPowX2.elementAt(bit));
36 ++bit;
43 private void ensureAvailable(int bit) argument
46 if (count <= bit)
55 while (++count <= bit);
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dvp9_boolcoder_test.cc57 int bit = (bit_method == 0) ? 0 : (bit_method == 1) ? 1 : 0; local
60 bit = (i & 1);
62 bit = bit_rnd(2);
64 vp9_write(&bw, bit, static_cast<int>(probas[i]));
69 // First bit should be zero
77 bit = (i & 1);
79 bit = bit_rnd(2);
81 GTEST_ASSERT_EQ(vp9_read(&br, probas[i]), bit)
/external/chromium_org/v8/src/compiler/arm/
H A Dlinkage-arm.cc25 return r4.bit() | r5.bit() | r6.bit() | r7.bit() | r8.bit() | r9.bit() |
26 r10.bit();
/external/icu/icu4c/source/layoutex/
H A DLXUtilities.cpp14 // Finds the high bit by binary searching
23 le_int8 bit = 0; local
27 bit += 16;
32 bit += 8;
37 bit += 4;
42 bit += 2;
47 bit += 1;
50 return bit;
/external/libvpx/libvpx/test/
H A Dvp9_boolcoder_test.cc57 int bit = (bit_method == 0) ? 0 : (bit_method == 1) ? 1 : 0; local
60 bit = (i & 1);
62 bit = bit_rnd(2);
64 vp9_write(&bw, bit, static_cast<int>(probas[i]));
69 // First bit should be zero
77 bit = (i & 1);
79 bit = bit_rnd(2);
81 GTEST_ASSERT_EQ(vp9_read(&br, probas[i]), bit)

Completed in 4021 milliseconds

1234567891011>>