Searched refs:mask (Results 1 – 8 of 8) sorted by relevance
15 uint32_t mask; in make_crc_table() local29 mask = i << 24; in make_crc_table()31 if (mask & 0x80000000) in make_crc_table()32 mask = (mask << 1) ^ poly; in make_crc_table()34 mask <<= 1; in make_crc_table()36 crc_table[i] = mask; in make_crc_table()
30 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument
95 mask = (1 << bit_width) - 1102 out_enum(field, 'mask', mask)
116 uint64_t mask = 0xffffffffULL; /* would be different on 32-bit */ in supported_rela() local117 uint32_t type = rela->r_info & mask; in supported_rela()519 uint32_t mask = 0xffULL; /* would be different on 32-bit */ in supported_rela32() local520 *type = rela->r_info & mask; in supported_rela32()
35 #define __ALIGN_MASK_IMX(x, mask, mask2) (((x) + (mask)) / (mask2) * (mask2)) argument
39 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument
405 ULONGEST mask = 1; in remote_address_masked() local406 mask = (mask << remote_address_size) - 1; in remote_address_masked()407 addr &= mask; in remote_address_masked()
188 mask = align - 1189 pos = (pos + mask) & ~mask
Completed in 14 milliseconds