Home
last modified time | relevance | path

Searched refs:mask (Results 1 – 8 of 8) sorted by relevance

/tools/
A Dpbl_crc32.c15 uint32_t mask; in make_crc_table() local
29 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()
A Dimagetool.h30 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument
A Drkmux.py95 mask = (1 << bit_width) - 1
102 out_enum(field, 'mask', mask)
A Drelocate-rela.c116 uint64_t mask = 0xffffffffULL; /* would be different on 32-bit */ in supported_rela() local
117 uint32_t type = rela->r_info & mask; in supported_rela()
519 uint32_t mask = 0xffULL; /* would be different on 32-bit */ in supported_rela32() local
520 *type = rela->r_info & mask; in supported_rela32()
A Dimx8mimage.c35 #define __ALIGN_MASK_IMX(x, mask, mask2) (((x) + (mask)) / (mask2) * (mask2)) argument
A Dproftool.c39 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument
/tools/gdb/
A Dremote.c405 ULONGEST mask = 1; in remote_address_masked() local
406 mask = (mask << remote_address_size) - 1; in remote_address_masked()
407 addr &= mask; in remote_address_masked()
/tools/u_boot_pylib/
A Dtools.py188 mask = align - 1
189 pos = (pos + mask) & ~mask

Completed in 14 milliseconds