HomeSort by relevance Sort by last modified time
    Searched refs:bit_pos (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/media/base/
bit_reader_unittest.cc 11 static void SetBit(uint8* buf, size_t size, size_t bit_pos) {
12 size_t byte_pos = bit_pos / 8;
13 bit_pos -= byte_pos * 8;
15 buf[byte_pos] |= (1 << (7 - bit_pos));
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress_rgtc_tmp.h 39 const char bit_pos = ((j&3) * 4 + (i&3)) * 3; local
40 const TYPE acodelow = blksrc[2 + bit_pos / 8];
41 const TYPE acodehigh = (3 + bit_pos / 8) < 8 ? blksrc[3 + bit_pos / 8] : 0;
42 const TYPE code = (acodelow >> (bit_pos & 0x7) |
43 (acodehigh << (8 - (bit_pos & 0x7)))) & 0x7;
  /external/mesa3d/src/mesa/main/
texcompress_rgtc_tmp.h 39 const char bit_pos = ((j&3) * 4 + (i&3)) * 3; local
40 const TYPE acodelow = blksrc[2 + bit_pos / 8];
41 const TYPE acodehigh = (3 + bit_pos / 8) < 8 ? blksrc[3 + bit_pos / 8] : 0;
42 const TYPE code = (acodelow >> (bit_pos & 0x7) |
43 (acodehigh << (8 - (bit_pos & 0x7)))) & 0x7;
  /external/libhevc/decoder/
ihevcd_process_slice.c 117 WORD32 bit_pos = proc_type; local
118 WORD32 bit_mask = (1 << bit_pos);
199 WORD32 bit_pos = proc_type; local
200 WORD32 bit_mask = (1 << bit_pos);
1041 WORD32 bit_pos = ((ps_proc->i4_ctb_y << (log2_ctb_size - 3)) - 1) * loop_filter_strd + (ps_proc->i4_ctb_x << (log2_ctb_size - 3)) - 1; local
    [all...]
  /external/lldb/include/lldb/Core/
Scalar.h 58 SignExtend (uint32_t bit_pos);
  /external/chromium_org/v8/src/arm64/
assembler-arm64-inl.h 1041 Instr Assembler::ImmTestBranchBit(unsigned bit_pos) {
1042 DCHECK(is_uint6(bit_pos));
1043 // Subtract five from the shift offset, as we need bit 5 from bit_pos.
1044 unsigned b5 = bit_pos << (ImmTestBranchBit5_offset - 5);
1045 unsigned b40 = bit_pos << ImmTestBranchBit40_offset;
    [all...]
assembler-arm64.h     [all...]
assembler-arm64.cc     [all...]
macro-assembler-arm64.cc 771 void MacroAssembler::Tbnz(const Register& rt, unsigned bit_pos, Label* label) {
779 tbz(rt, bit_pos, &done);
782 tbnz(rt, bit_pos, label);
788 void MacroAssembler::Tbz(const Register& rt, unsigned bit_pos, Label* label) {
796 tbnz(rt, bit_pos, &done);
799 tbz(rt, bit_pos, label);
    [all...]
macro-assembler-arm64.h 498 void Tbnz(const Register& rt, unsigned bit_pos, Label* label);
499 void Tbz(const Register& rt, unsigned bit_pos, Label* label);
    [all...]
simulator-arm64.cc 1334 unsigned bit_pos = (instr->ImmTestBranchBit5() << 5) | local
    [all...]
  /external/chromium_org/third_party/freetype/src/pshinter/
pshrec.c 315 FT_UInt bit_pos,
335 FT_Byte* read = (FT_Byte*)source + ( bit_pos >> 3 );
336 FT_Int rmask = 0x80 >> ( bit_pos & 7 );
  /external/freetype/src/pshinter/
pshrec.c 315 FT_UInt bit_pos,
335 FT_Byte* read = (FT_Byte*)source + ( bit_pos >> 3 );
336 FT_Int rmask = 0x80 >> ( bit_pos & 7 );

Completed in 202 milliseconds