Searched refs:bit (Results 76 - 100 of 852) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/mips64/
H A Ddebug-mips64.cc119 // the other 64-bit arch's.
186 Generate_DebugBreakCallHelper(masm, a1.bit() | a3.bit(), 0);
193 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0);
202 masm, receiver.bit() | name.bit() | value.bit(), 0);
218 masm, receiver.bit() | name.bit() | valu
[all...]
/external/chromium_org/v8/src/x64/
H A Ddebug-x64.cc123 // Reconstruct the 64-bit value from two smis.
159 Generate_DebugBreakCallHelper(masm, rdx.bit() | rdi.bit(), 0, false);
167 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0, false);
177 masm, receiver.bit() | name.bit() | value.bit(), 0, false);
193 masm, receiver.bit() | name.bit() | valu
[all...]
/external/chromium_org/v8/src/x87/
H A Ddebug-x87.cc176 Generate_DebugBreakCallHelper(masm, edx.bit() | edi.bit(),
185 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0, false);
195 masm, receiver.bit() | name.bit() | value.bit(), 0, false);
211 masm, receiver.bit() | name.bit() | value.bit(),
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_bitmask.c163 unsigned bit; local
170 bit = bm->filled % UTIL_BITMASK_BITS_PER_WORD;
171 mask = 1 << bit;
173 while(bit < UTIL_BITMASK_BITS_PER_WORD) {
177 ++bit;
181 bit = 0;
202 unsigned bit; local
212 bit = index % UTIL_BITMASK_BITS_PER_WORD;
213 mask = 1 << bit;
228 unsigned bit; local
251 unsigned bit = index % UTIL_BITMASK_BITS_PER_WORD; local
278 unsigned bit = index % UTIL_BITMASK_BITS_PER_WORD; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_treewriter.h35 const int bit = (bits >> --len) & 1; local
36 vp9_write(w, bit, probs[i >> 1]);
37 i = tree[i + bit];
H A Dvp9_write_bit_buffer.h27 void vp9_wb_write_bit(struct vp9_write_bit_buffer *wb, int bit);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_tcl.h46 extern void r200TclFallback( struct gl_context *ctx, GLuint bit, GLboolean mode );
62 #define TCL_FALLBACK( ctx, bit, mode ) r200TclFallback( ctx, bit, mode )
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_tcl.h47 extern void radeonTclFallback( struct gl_context *ctx, GLuint bit, GLboolean mode );
62 #define TCL_FALLBACK( ctx, bit, mode ) radeonTclFallback( ctx, bit, mode )
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_treewriter.h35 const int bit = (bits >> --len) & 1; local
36 vp9_write(w, bit, probs[i >> 1]);
37 i = tree[i + bit];
H A Dvp9_write_bit_buffer.h29 void vp9_wb_write_bit(struct vp9_write_bit_buffer *wb, int bit);
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_tcl.h46 extern void r200TclFallback( struct gl_context *ctx, GLuint bit, GLboolean mode );
62 #define TCL_FALLBACK( ctx, bit, mode ) r200TclFallback( ctx, bit, mode )
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_tcl.h47 extern void radeonTclFallback( struct gl_context *ctx, GLuint bit, GLboolean mode );
62 #define TCL_FALLBACK( ctx, bit, mode ) radeonTclFallback( ctx, bit, mode )
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring_digital.c32 uint8_t bit = digitalPinToBitMask(pin); local
44 *reg &= ~bit;
49 *reg |= bit;
127 uint8_t bit = digitalPinToBitMask(pin); local
142 *out &= ~bit;
147 *out |= bit;
155 uint8_t bit = digitalPinToBitMask(pin); local
164 if (*portInputRegister(port) & bit) return HIGH;
/external/libedit/
H A DREADME.android12 Currently for linux x86 (32-bit) host only.
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/linux/
H A Dbitops.h23 #define for_each_set_bit(bit, addr, size) \
24 for ((bit) = find_first_bit((addr), (size)); \
25 (bit) < (size); \
26 (bit) = find_next_bit((addr), (size), (bit) + 1))
28 /* same as for_each_set_bit() but use bit as value to start with */
29 #define for_each_set_bit_from(bit, addr, size) \
30 for ((bit) = find_next_bit((addr), (size), (bit)); \
31 (bit) < (siz
[all...]
/external/chromium_org/third_party/libwebp/enc/
H A Dtoken.c12 // A 'token' is a bit value associated with a probability, either fixed
33 typedef uint16_t token_t; // bit#15: bit
34 // bit #14: constant proba or idx
91 int bit, uint32_t proba_idx) {
93 assert(bit == 0 || bit == 1);
96 b->tokens_[slot] = (bit << 15) | proba_idx;
98 return bit;
102 int bit, in
90 AddToken(VP8TBuffer* const b, int bit, uint32_t proba_idx) argument
101 AddConstantToken(VP8TBuffer* const b, int bit, int proba) argument
236 const int bit = (token >> 15) & 1; local
262 const int bit = token & (1 << 15); local
[all...]
/external/webp/src/enc/
H A Dtoken.c12 // A 'token' is a bit value associated with a probability, either fixed
33 typedef uint16_t token_t; // bit#15: bit
34 // bit #14: constant proba or idx
91 int bit, uint32_t proba_idx) {
93 assert(bit == 0 || bit == 1);
96 b->tokens_[slot] = (bit << 15) | proba_idx;
98 return bit;
102 int bit, in
90 AddToken(VP8TBuffer* const b, int bit, uint32_t proba_idx) argument
101 AddConstantToken(VP8TBuffer* const b, int bit, int proba) argument
236 const int bit = (token >> 15) & 1; local
262 const int bit = token & (1 << 15); local
[all...]
/external/valgrind/main/exp-bbv/tests/x86/
H A Drep_prefix.S19 # test 16-bit load
39 # test 8-bit store
45 # test 8-bit load
54 # test 16-bit store
62 # test 16-bit load
71 # test 32-bit store
79 # test 32-bit load
92 # test 8-bit move
99 # test 16-bit move
106 # test 32-bit mov
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dext2_types.h32 ?==error: undefined 16 bit type
46 ?==error: undefined 16 bit type
64 ?== error: undefined 32 bit type
82 ?== error: undefined 32 bit type
/external/libpng/contrib/tools/
H A Dintgamma.sh12 # Shell script to generate png.c 8-bit and 16-bit log tables (see the code in
15 # This script uses the "bc" arbitrary precision calculator to calculate 32-bit
16 # fixed point values of logarithms appropriate to finding the log of an 8-bit
51 /* 8-bit log table: png_8bit_l2[128]
53 * 255, so it's the base 2 logarithm of a normalized 8-bit floating point
54 * mantissa. The numbers are 32-bit fractions.
70 /* The 'exp()' case must invert the above, taking a 20-bit fixed point
71 * logarithmic value and returning a 16 or 8-bit number as appropriate. In
75 * The worst case is the 16-bit distinctio
[all...]
/external/lldb/include/lldb/Core/
H A DFlags.h31 /// The value type for flags is a 32 bit unsigned integer type.
36 /// Construct with initial flag bit values.
168 /// Test a single flag bit.
171 /// \b true if \a bit is set, \b false otherwise.
174 Test (ValueType bit) const
176 return (m_flags & bit) != 0;
199 /// Test a single flag bit to see if it is clear (zero).
202 /// \b true if \a bit is 0, \b false otherwise.
205 IsClear (ValueType bit) const
207 return (m_flags & bit)
[all...]
/external/stlport/test/unit/
H A Dbinsert_test.cpp34 back_insert_iterator<vector<const char*> > bit(names);
35 bit = copy(array, array + 3, bit);
41 copy(array, array + 3, bit);
/external/valgrind/main/none/tests/s390x/
H A Ddfp-1.stdout.exp2 64-bit ADD
6 64-bit SUBTRACT
10 64-bit MULTIPLY
14 64-bit DIVIDE
18 128-bit ADD
22 128-bit SUBTRACT
26 128-bit MULTIPLY
30 128-bit DIVIDE
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dvp8_boolcoder_test.cc84 int bit = (bit_method == 0) ? 0 : (bit_method == 1) ? 1 : 0; local
87 bit = (i & 1);
89 bit = bit_rnd(2);
91 vp8_encode_bool(&bw, bit, static_cast<int>(probas[i]));
104 bit = (i & 1);
106 bit = bit_rnd(2);
108 GTEST_ASSERT_EQ(vp8dx_decode_bool(&br, probas[i]), bit)
/external/libvpx/libvpx/test/
H A Dvp8_boolcoder_test.cc84 int bit = (bit_method == 0) ? 0 : (bit_method == 1) ? 1 : 0; local
87 bit = (i & 1);
89 bit = bit_rnd(2);
91 vp8_encode_bool(&bw, bit, static_cast<int>(probas[i]));
108 bit = (i & 1);
110 bit = bit_rnd(2);
112 GTEST_ASSERT_EQ(vp8dx_decode_bool(&br, probas[i]), bit)

Completed in 753 milliseconds

1234567891011>>