Home
last modified time | relevance | path

Searched refs:highbit (Results 1 – 9 of 9) sorted by relevance

/linux-6.15/security/selinux/ss/
H A Debitmap.c32 if (e1->highbit != e2->highbit) in ebitmap_equal()
74 dst->highbit = src->highbit; in ebitmap_cpy()
224 if (e1->highbit < e2->highbit) in ebitmap_contains()
264 if (e->highbit < bit) in ebitmap_get_bit()
306 e->highbit = 0; in ebitmap_set_bit()
359 e->highbit = 0; in ebitmap_destroy()
380 e->highbit = le32_to_cpu(buf[1]); in ebitmap_read()
391 e->highbit += EBITMAP_SIZE - 1; in ebitmap_read()
392 e->highbit -= (e->highbit % EBITMAP_SIZE); in ebitmap_read()
394 if (!e->highbit) { in ebitmap_read()
[all …]
H A Debitmap.h44 u32 highbit; /* highest position in the total bitmap */ member
47 #define ebitmap_length(e) ((e)->highbit)
/linux-6.15/arch/powerpc/crypto/
H A Dpoly1305-p10le_64.S922 # unsigned int poly1305_test_64s(unisgned char *state, const byte *src, size_t len, highbit)
923 # - no highbit if final leftover block (highbit = 0)
970 mr 24, 6 # highbit
H A Dpoly1305-p10-glue.c22 asmlinkage void poly1305_64s(void *h, const u8 *m, u32 mlen, int highbit);
/linux-6.15/include/linux/
H A Dsvga.h16 u8 highbit; member
/linux-6.15/drivers/ata/
H A Dlibata-core.c914 int highbit = fls(xfer_mask) - 1; in ata_xfer_mask2mode() local
918 if (highbit >= ent->shift && highbit < ent->shift + ent->bits) in ata_xfer_mask2mode()
1009 int highbit; in ata_mode_string() local
1011 highbit = fls(xfer_mask) - 1; in ata_mode_string()
1012 if (highbit >= 0 && highbit < ARRAY_SIZE(xfer_mode_str)) in ata_mode_string()
1013 return xfer_mode_str[highbit]; in ata_mode_string()
3299 int quiet, highbit; in ata_down_xfermask_limit() local
3311 highbit = fls(pio_mask) - 1; in ata_down_xfermask_limit()
3312 pio_mask &= ~(1 << highbit); in ata_down_xfermask_limit()
3317 highbit = fls(udma_mask) - 1; in ata_down_xfermask_limit()
[all …]
/linux-6.15/drivers/video/fbdev/core/
H A Dsvgalib.c31 while (bitnum <= regset->highbit) { in svga_wcrt_multi()
51 while (bitnum <= regset->highbit) { in svga_wseq_multi()
68 count += regset->highbit - regset->lowbit + 1; in svga_regset_size()
/linux-6.15/drivers/media/pci/bt8xx/
H A Dbttv-cards.c3250 u32 highbit; in td3116_muxsel() local
3252 highbit = (input & 0x8) >> 3 ; in td3116_muxsel()
3256 value |= ((input & 0x7) << 1) << (4 * highbit); in td3116_muxsel()
3261 value |= ((highbit ^ 0x1) << 4) | highbit; in td3116_muxsel()
/linux-6.15/mm/
H A Dpercpu.c231 int highbit = fls(size); /* size is in bytes */ in __pcpu_size_to_slot() local
232 return max(highbit - PCPU_SLOT_BASE_SHIFT + 2, 1); in __pcpu_size_to_slot()