/external/pdfium/core/src/fxcrt/ |
fx_basic_buffer.cpp | 357 int bit = (m_pData[m_BitPos / 8] & (1 << (7 - m_BitPos % 8))) ? 1 : 0; local 359 return bit;
|
/external/pdfium/xfa/src/fxbarcode/qrcode/ |
BC_QRCoderMatrixUtil.cpp | 139 int32_t bit = typeInfoBits.At(typeInfoBits.Size() - 1 - i, e);
local 143 matrix->Set(x1, y1, bit);
147 matrix->Set(x2, y2, bit);
151 matrix->Set(x2, y2, bit);
172 int32_t bit = versionInfoBits.At(bitIndex, e);
local 175 matrix->Set(i, matrix->GetHeight() - 11 + j, bit);
176 matrix->Set(matrix->GetHeight() - 11 + j, i, bit);
206 int32_t bit;
local 208 bit = dataBits->At(bitIndex, e);
212 bit = 0; 303 int32_t bit = (i + 1) % 2; local [all...] |
/external/ppp/pppd/ |
md4.c | 31 ** This implementation assumes that ints are 32-bit quantities. 72 ** operator will shift in zeros rather than extending the sign bit. 214 unsigned int i, tmp, bit, byte, mask; local 250 bit = count & 7; 255 /* Add padding '1' bit and low-order zeros in last byte */ 256 mask = 1 << (7 - bit); 258 /* If room for bit count, finish up with this block */
|
/external/skia/src/images/ |
bmpdecoderhelper.cpp | 305 int bit = w & 7; local 306 col = ((currVal >> (7 - bit)) & 1);
|
/external/skia/src/pathops/ |
SkIntersections.h | 51 int bit = 1 << index; local 52 fIsCoincident[0] &= ~bit; 53 fIsCoincident[1] &= ~bit; 305 uint16_t fIsCoincident[2]; // bit set for each curve's coincident T
|
/external/tremolo/Tremolo/ |
codebook.c | 100 /* 32 bit float (not IEEE; nonnormalized mantissa + 173 int bit=(entry>>(length-j-1))&1; local 180 if (chase < 0 || chase >= n || chase*2+bit > n*2+1) return 1; 181 if(!r[chase*2+bit]) 182 r[chase*2+bit]=top; 183 chase=r[chase*2+bit]; 187 int bit=(entry>>(length-j-1))&1; local 192 r[chase*2+bit]= decpack(i,count++,quantvals,b,opb,maptype) | 246 * This probably wastes a bit of space, but it shouldn't 503 /* this is the correct boundary here; we lose one bit t 684 int bit=(lok>>i)&1; local 714 int bit=(lok>>i)&1; local [all...] |
mdct.c | 251 int bit = 0; local 255 DATA_TYPE b = bitrev12(bit++);
|
/external/v8/src/regexp/ |
interpreter-irregexp.cc | 442 int bit = (current_char & (kBitsPerByte - 1)); local 443 if ((b & (1 << bit)) != 0) {
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_cavlc.c | 173 /* fixed 6 bit length VLC, nC <= 8 */ 741 coeffMap on bits [16,31] if successful, this is bit map 742 where each bit indicates if the corresponding 758 u32 levelSuffix, zerosLeft, bit; local 778 BUFFER_SHOW(bufferValue, bufferBits, bit, 16); 780 tmp = DecodeCoeffToken(bit, (u32)nc); 796 BUFFER_GET(bufferValue, bufferBits, bit, trailingOnes); 800 level[i] = bit & tmp ? -1 : 1; 813 BUFFER_SHOW(bufferValue, bufferBits, bit, 16); 814 levelPrefix = DecodeLevelPrefix(bit); [all...] |
/frameworks/rs/ |
rsCppUtils.h | 222 uint32_t bit = 0; local 224 bit++; 227 return bit;
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/ |
vc1parse_bitplane.c | 22 /* put one bit into a buffer 23 * used for bitplane decoding, each bit correspond to a MB 25 * input: value - bit value 35 int bit; local 38 bit = mby; 47 bit = x & 0x1f; /* compute remaining bits */ 48 *out |= 1 << bit; /* put bit */ 51 /* if b is the bit at location (x,y) 53 * used for bitplane decoding, each bit correspond to a M 64 int bit; local 94 int bit; local [all...] |
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/ |
vbp_h264_parser.c | 350 /* bit 5 indicates if reference picture is bottom field */ 1098 uint32 bit, byte; local [all...] |
vbp_vc1_parser.c | 425 /* Fix up bit/byte offsets. endianess?? */ 526 /* set bit plane size */ 532 /* see libva library va.h for nibble bit */ 570 ETRACE("Unexpected bit-plane type."); 609 ETRACE("Unexpected bit-plane type."); 648 ETRACE("Unexpected bit-plane type."); 931 uint32 bit; local 934 viddec_pm_get_au_pos(cxt, &bit, &byte, &is_emul); 951 slc_parms->macroblock_offset = bit;
|
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/common/src/ |
extra_data_handler.cpp | 84 OMX_U32 symbol, bit; local 86 bit = d_u(1); 88 }while (!bit); 145 DEBUG_PRINT_ERROR("\nERROR: In %s() Non-zero forbidden bit", __func__); 210 DEBUG_PRINT_ERROR("\nERROR: In %s() Marker Bit Error in SEI",
|
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/common/src/ |
extra_data_handler.cpp | 89 OMX_U32 symbol, bit; local 92 bit = d_u(1); 94 } while (!bit); 157 DEBUG_PRINT_ERROR("ERROR: In %s() Non-zero forbidden bit", __func__); 229 DEBUG_PRINT_ERROR("ERROR: In %s() Marker Bit Error in SEI",
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/common/src/ |
extra_data_handler.cpp | 89 OMX_U32 symbol, bit; local 92 bit = d_u(1); 94 } while (!bit); 157 DEBUG_PRINT_ERROR("ERROR: In %s() Non-zero forbidden bit", __func__); 229 DEBUG_PRINT_ERROR("ERROR: In %s() Marker Bit Error in SEI",
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
AddressSpace.hpp | 159 /// Read a ULEB128 into a 64-bit word. 164 int bit = 0; local 173 if (bit >= 64 || b << bit >> bit != b) { 176 result |= b << bit; 177 bit += 7; 184 /// Read a SLEB128 into a 64-bit word. 189 int bit = 0; local 195 result |= ((byte & 0x7f) << bit); [all...] |
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/ |
nat.go | 657 // x & -x leaves only the right-most bit set in the word. Let k be the 658 // index of that bit. Since only a single bit is set, the value is two 661 // such that all six bit, consecutive substrings are distinct. 663 // find by how many bits it was shifted by looking at which six bit 747 panic("set bit is not 0 or 1") 750 // bit returns the value of the i'th bit, with lsb == bit 0. 751 func (x nat) bit(i uint) uint func [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/big/ |
nat.go | 654 // x & -x leaves only the right-most bit set in the word. Let k be the 655 // index of that bit. Since only a single bit is set, the value is two 658 // such that all six bit, consecutive substrings are distinct. 660 // find by how many bits it was shifted by looking at which six bit 744 panic("set bit is not 0 or 1") 747 // bit returns the value of the i'th bit, with lsb == bit 0. 748 func (x nat) bit(i uint) uint func [all...] |
/prebuilts/go/darwin-x86/src/math/big/ |
nat.go | 654 // x & -x leaves only the right-most bit set in the word. Let k be the 655 // index of that bit. Since only a single bit is set, the value is two 658 // such that all six bit, consecutive substrings are distinct. 660 // find by how many bits it was shifted by looking at which six bit 744 panic("set bit is not 0 or 1") 747 // bit returns the value of the i'th bit, with lsb == bit 0. 748 func (x nat) bit(i uint) uint func [all...] |
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/ |
nat.go | 657 // x & -x leaves only the right-most bit set in the word. Let k be the 658 // index of that bit. Since only a single bit is set, the value is two 661 // such that all six bit, consecutive substrings are distinct. 663 // find by how many bits it was shifted by looking at which six bit 747 panic("set bit is not 0 or 1") 750 // bit returns the value of the i'th bit, with lsb == bit 0. 751 func (x nat) bit(i uint) uint func [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/big/ |
nat.go | 654 // x & -x leaves only the right-most bit set in the word. Let k be the 655 // index of that bit. Since only a single bit is set, the value is two 658 // such that all six bit, consecutive substrings are distinct. 660 // find by how many bits it was shifted by looking at which six bit 744 panic("set bit is not 0 or 1") 747 // bit returns the value of the i'th bit, with lsb == bit 0. 748 func (x nat) bit(i uint) uint func [all...] |
/prebuilts/go/linux-x86/src/math/big/ |
nat.go | 654 // x & -x leaves only the right-most bit set in the word. Let k be the 655 // index of that bit. Since only a single bit is set, the value is two 658 // such that all six bit, consecutive substrings are distinct. 660 // find by how many bits it was shifted by looking at which six bit 744 panic("set bit is not 0 or 1") 747 // bit returns the value of the i'th bit, with lsb == bit 0. 748 func (x nat) bit(i uint) uint func [all...] |
/system/media/audio_utils/ |
primitives.c | 347 uint32_t bit, ormask; \ 351 bit = ormask & -ormask; /* get lowest bit */ \ 352 ormask ^= bit; /* remove lowest bit */ \ 353 if (dmask & bit) { \ 354 *dst++ = smask & bit ? *src++ : zero; \ 470 uint32_t bit, ormask = src_mask | dst_mask; local 473 bit = ormask & -ormask; /* get lowest bit */ [all...] |
/toolchain/binutils/binutils-2.25/binutils/ |
sysdump.c | 202 int bit = *idx % 8; local 209 return (ptr[byte] >> (8 - bit - size)) & ((1 << size) - 1);
|