HomeSort by relevance Sort by last modified time
    Searched defs:bit (Results 1 - 25 of 337) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
sigaddset.cpp 32 int bit = signum - 1; // Signal numbers start at 1, but bit positions start at 0. local
34 if (set == NULL || bit < 0 || bit >= (int) (8*sizeof(sigset_t))) {
38 local_set[bit / LONG_BIT] |= 1UL << (bit % LONG_BIT);
sigdelset.cpp 32 int bit = signum - 1; // Signal numbers start at 1, but bit positions start at 0. local
34 if (set == NULL || bit < 0 || bit >= (int) (8*sizeof(sigset_t))) {
38 local_set[bit / LONG_BIT] &= ~(1UL << (bit % LONG_BIT));
sigismember.cpp 32 int bit = signum - 1; // Signal numbers start at 1, but bit positions start at 0. local
34 if (set == NULL || bit < 0 || bit >= (int) (8*sizeof(sigset_t))) {
38 return (int) ((local_set[bit / LONG_BIT] >> (bit % LONG_BIT)) & 1);
  /external/aac/libAACdec/src/
rvlcbit.cpp 20 individually for the purpose of encoding or decoding bit streams in products that are compliant with
96 description: This function returns a bit from the bitstream according to read direction.
103 return: - bit from bitstream
110 UINT bit; local
118 bit = FDKreadBits(bs, 1);
123 bit = FDKreadBits(bs, 1);
129 return (bit);
aacdec_hcr_bit.cpp 20 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/aac/libSBRdec/src/
huff_dec.cpp 20 individually for the purpose of encoding or decoding bit streams in products that are compliant with
109 int value, bit; local
112 bit = FDKreadBits (hBs, 1);
113 index = h[index][bit];
  /external/bison/lib/
ldexpl.c 43 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/libpcap/Win32/Src/
ffs.c 47 register int bit; local
51 for (bit = 1; !(mask & 1); bit++)
53 return(bit);
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_connlabel.h 27 __u16 bit; member in struct:xt_connlabel_mtinfo
  /development/ndk/platforms/android-L/include/linux/netfilter/
xt_connlabel.h 27 __u16 bit; member in struct:xt_connlabel_mtinfo
  /external/arduino/hardware/arduino/cores/arduino/
wiring_pulse.c 34 // cache the port and bit of the pin in order to speed up the
37 uint8_t bit = digitalPinToBitMask(pin); local
39 uint8_t stateMask = (state ? bit : 0);
48 while ((*portInputRegister(port) & bit) == stateMask)
53 while ((*portInputRegister(port) & bit) != stateMask)
58 while ((*portInputRegister(port) & bit) == stateMask) {
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/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
ptw32_getprocessors.c 71 DWORD_PTR bit; local
74 for (bit = 1; bit != 0; bit <<= 1)
76 if (vProcessCPUs & bit)
  /external/chromium_org/third_party/libvpx/source/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.c 17 void vp9_wb_write_bit(struct vp9_write_bit_buffer *wb, int bit) {
22 wb->bit_buffer[p] = bit << q;
25 wb->bit_buffer[p] |= bit << q;
31 int bit; local
32 for (bit = bits - 1; bit >= 0; bit--)
33 vp9_wb_write_bit(wb, (data >> bit) & 1);
  /external/iptables/include/linux/netfilter/
xt_connlabel.h 10 __u16 bit; member in struct:xt_connlabel_mtinfo
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_connlabel.h 10 __u16 bit; member in struct:xt_connlabel_mtinfo
  /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.c 17 void vp9_wb_write_bit(struct vp9_write_bit_buffer *wb, int bit) {
22 wb->bit_buffer[p] = bit << q;
25 wb->bit_buffer[p] |= bit << q;
31 int bit; local
32 for (bit = bits - 1; bit >= 0; bit--)
33 vp9_wb_write_bit(wb, (data >> bit) & 1);
  /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.c 17 void vp9_wb_write_bit(struct vp9_write_bit_buffer *wb, int bit) {
22 wb->bit_buffer[p] = bit << q;
25 wb->bit_buffer[p] |= bit << q;
31 int bit; local
32 for (bit = bits - 1; bit >= 0; bit--)
33 vp9_wb_write_bit(wb, (data >> bit) & 1);
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/netfilter/
xt_connlabel.h 27 __u16 bit; member in struct:xt_connlabel_mtinfo
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/netfilter/
xt_connlabel.h 27 __u16 bit; member in struct:xt_connlabel_mtinfo
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/netfilter/
xt_connlabel.h 27 __u16 bit; member in struct:xt_connlabel_mtinfo
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
boolhuff.c 65 int bit; local
67 for (bit = bits - 1; bit >= 0; bit--)
68 vp8_encode_bool(br, (1 & (data >> bit)), 0x80);

Completed in 1603 milliseconds

1 2 3 4 5 6 7 8 91011>>