HomeSort by relevance Sort by last modified time
    Searched refs:bit (Results 126 - 150 of 1259) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libvpx/libvpx/vp9/encoder/
vp9_treewriter.h 35 const int bit = (bits >> --len) & 1; local
36 vp9_write(w, bit, probs[i >> 1]);
37 i = tree[i + bit];
vp9_write_bit_buffer.h 29 void vp9_wb_write_bit(struct vp9_write_bit_buffer *wb, int bit);
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_tcl.h 46 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/
radeon_tcl.h 47 extern void radeonTclFallback( struct gl_context *ctx, GLuint bit, GLboolean mode );
62 #define TCL_FALLBACK( ctx, bit, mode ) radeonTclFallback( ctx, bit, mode )
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_treewriter.h 35 const int bit = (bits >> --len) & 1; local
36 vp9_write(w, bit, probs[i >> 1]);
37 i = tree[i + bit];
vp9_write_bit_buffer.h 29 void vp9_wb_write_bit(struct vp9_write_bit_buffer *wb, int bit);
  /build/core/
package.mk 3 # To build it for TARGET_2ND_ARCH in a 64bit product, use "LOCAL_MULTILIB := 32".
12 # only 64-bit apps supported
14 # if my_module_multilib was 64, both, first, or unset, build for 64-bit
21 # only 32-bit apps supported
23 # if my_module_multilib was 32, both, or unset, build for 32-bit
27 # if my_module_multilib was first and this is a 32-bit build, build for
28 # 32-bit
31 # if my_module_multilib was first and this is a 64-bit build, don't build
43 # if TARGET_PREFER_32_BIT_APPS is set, try to build 32-bit first
  /external/arduino/hardware/arduino/cores/arduino/
wiring_digital.c 32 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/
README.android 12 Currently for linux x86 (32-bit) host only.
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/linux/
bitops.h 23 #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) < (size);
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
token.c 12 // 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, int proba)
236 const int bit = (token >> 15) & 1; local
262 const int bit = token & (1 << 15); local
    [all...]
  /external/webp/src/enc/
token.c 12 // 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, int proba)
236 const int bit = (token >> 15) & 1; local
262 const int bit = token & (1 << 15); local
    [all...]
  /external/valgrind/main/exp-bbv/tests/x86/
rep_prefix.S 19 # 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/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_write_bit_buffer.h 27 void vp9_wb_write_bit(struct vp9_write_bit_buffer *wb, int bit);
  /external/e2fsprogs/lib/ext2fs/
ext2_types.h 32 ?==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/
intgamma.sh 12 # 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 distinction between 65535 and 65534; thi
    [all...]
  /external/lldb/include/lldb/Core/
Flags.h 31 /// 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) == 0
    [all...]
  /external/stlport/test/unit/
binsert_test.cpp 34 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/
dfp-1.stdout.exp 2 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
  /ndk/tests/device/test-gnustl-full/unit/
binsert_test.cpp 34 back_insert_iterator<vector<const char*> > bit(names);
35 bit = copy(array, array + 3, bit);
41 copy(array, array + 3, bit);
  /ndk/tests/device/test-stlport/unit/
binsert_test.cpp 34 back_insert_iterator<vector<const char*> > bit(names);
35 bit = copy(array, array + 3, bit);
41 copy(array, array + 3, bit);
  /prebuilts/misc/common/swig/include/2.0.11/allegrocl/
longlongs.i 17 %typemap(lout) long long, unsigned long long " #+64bit (cl::setq ACL_ffresult $body)";
40 #-64bit
45 #-64bit
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
vp8_boolcoder_test.cc 84 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/
vp8_boolcoder_test.cc 84 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)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
vp8_boolcoder_test.cc 84 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 1402 milliseconds

1 2 3 4 56 7 8 91011>>