Searched refs:bit_mask (Results 1 - 8 of 8) sorted by relevance
/external/autotest/client/common_lib/ |
H A D | smogcheck_pca9555.py | 120 bit_mask = 0 124 bit_mask = bit_value 126 bit_mask |= 0x20 128 bit_mask |= 0x10 130 return bit_mask 194 bit_mask = self._computeLEDmask(bit_value, failure, warning) 195 write_byte = reset_low6 ^ bit_mask 197 'bit_mask = 0x%x, write_byte = 0x%x', 198 byte_read, reset_low6, bit_mask, write_byte)
|
/external/e2fsprogs/ext2ed/ |
H A D | blockbitmap_com.c | 176 unsigned char bit_mask=1; local 182 bit_mask*=2; /* Generate the or mask - 1 at the right place */ 183 type_data.u.buffer [byte_offset] |= bit_mask; /* And apply it */ 191 unsigned char bit_mask=1; local 196 bit_mask*=2; 197 bit_mask^=0xff; 199 type_data.u.buffer [byte_offset] &= bit_mask;
|
H A D | inodebitmap_com.c | 136 unsigned char bit_mask=1; local 141 bit_mask*=2; 142 type_data.u.buffer [byte_offset] |= bit_mask; 148 unsigned char bit_mask=1; local 153 bit_mask*=2; 154 bit_mask^=0xff; 156 type_data.u.buffer [byte_offset] &= bit_mask;
|
/external/v8/src/heap/ |
H A D | slot-set.h | 56 uint32_t bit_mask = 1u << bit_index; local 57 if (cell & bit_mask) { 58 bucket[bucket_index][cell_index] ^= bit_mask; 149 uint32_t bit_mask = 1u << bit_offset; local 154 new_cell ^= bit_mask; 156 cell ^= bit_mask;
|
/external/libhevc/decoder/ |
H A D | ihevcd_process_slice.c | 118 WORD32 bit_mask = (1 << bit_pos); local 145 status = *pu1_buf & bit_mask; 160 status = *pu1_buf & bit_mask; 169 status = *pu1_buf & bit_mask; 201 WORD32 bit_mask = (1 << bit_pos); local 214 *pu1_buf = *pu1_buf | bit_mask;
|
/external/webp/src/dsp/ |
H A D | lossless.c | 337 const uint32_t bit_mask = (1 << bits_per_pixel) - 1; \ 347 *dst++ = GET_VALUE(color_map[packed_pixels & bit_mask]); \
|
/external/v8/src/compiler/ |
H A D | int64-lowering.cc | 636 Node* bit_mask = local 672 graph()->NewNode(machine()->Word32And(), rotate_low, bit_mask), 677 graph()->NewNode(machine()->Word32And(), rotate_high, bit_mask),
|
/external/valgrind/perf/ |
H A D | tinycc.c | 13971 unsigned long long bit_mask; 14006 bit_mask = -1LL; 14010 bit_mask = (1LL << bit_size) - 1; 14022 *(char *)ptr |= (vtop->c.i & bit_mask) << bit_pos; 14025 *(short *)ptr |= (vtop->c.i & bit_mask) << bit_pos; 14034 *(long long *)ptr |= (vtop->c.ll & bit_mask) << bit_pos; 14040 *(int *)ptr |= (vtop->c.i & bit_mask) << bit_pos; 13969 unsigned long long bit_mask; local
|
Completed in 3098 milliseconds