Searched refs:startbit (Results 1 - 8 of 8) sorted by relevance

/linux-master/security/selinux/ss/
H A Debitmap.c37 while (n1 && n2 && (n1->startbit == n2->startbit) &&
63 new->startbit = n->startbit;
127 offset = e_iter->startbit;
181 offset >= e_iter->startbit + EBITMAP_SIZE) {
187 e_iter->startbit = offset - (offset % EBITMAP_SIZE);
192 ebmap->highbit = e_iter->startbit + EBITMAP_SIZE;
229 while (n1 && n2 && (n1->startbit <= n2->startbit)) {
365 u32 mapunit, count, startbit, index; local
[all...]
H A Debitmap.h39 u32 startbit; member in struct:ebitmap_node
57 return (*n)->startbit + ofs;
73 ofs = find_next_bit((*n)->maps, EBITMAP_SIZE, bit - (*n)->startbit + 1);
75 return ofs + (*n)->startbit;
80 return ofs + (*n)->startbit;
86 (((bit) - (node)->startbit) / EBITMAP_UNIT_SIZE)
88 (((bit) - (node)->startbit) % EBITMAP_UNIT_SIZE)
/linux-master/include/linux/
H A Dpacking.h28 * @startbit: The index (in logical notation, compensated for quirks) where
33 * to, startbit.
35 * into pbuf, between startbit and endbit.
37 * value between startbit and endbit will be copied (unpacked) to uval.
46 int packing(void *pbuf, u64 *uval, int startbit, int endbit, size_t pbuflen,
/linux-master/lib/
H A Dpacking.c58 * @startbit: The index (in logical notation, compensated for quirks) where
63 * to, startbit.
66 * into pbuf, between startbit and endbit.
68 * value between startbit and endbit will be copied (unpacked) to uval.
77 int packing(void *pbuf, u64 *uval, int startbit, int endbit, size_t pbuflen, argument
89 /* startbit is expected to be larger than endbit */
90 if (startbit < endbit)
94 value_width = startbit - endbit + 1;
117 plogical_first_u8 = startbit / 8;
130 * input arguments startbit an
[all...]
/linux-master/net/netlabel/
H A Dnetlabel_kapi.c564 if (offset < iter->startbit)
566 while (iter && offset >= (iter->startbit + NETLBL_CATMAP_SIZE)) {
570 if (iter == NULL || offset < iter->startbit)
585 iter->startbit = offset & ~(NETLBL_CATMAP_SIZE - 1);
618 if (offset > iter->startbit) {
619 offset -= iter->startbit;
634 return iter->startbit +
675 if (offset > iter->startbit) {
676 offset -= iter->startbit;
693 return prev->startbit
[all...]
/linux-master/drivers/infiniband/hw/hfi1/
H A Dsdma.h844 * @startbit
852 u8 startbit,
856 ((startbit & SDMA_AHG_FIELD_START_MASK) <<
849 sdma_build_ahg_descriptor( u16 data, u8 dwindex, u8 startbit, u8 bits) argument
/linux-master/drivers/dma/
H A Dapple-admac.c412 u32 startbit = 1 << (adchan->no / 2); local
421 writel_relaxed(startbit, ad->base + REG_TX_START);
424 writel_relaxed(startbit, ad->base + REG_RX_START);
/linux-master/include/net/
H A Dnetlabel.h132 * @startbit: the value of the lowest order bit in the bitmap
154 u32 startbit; member in struct:netlbl_lsm_catmap

Completed in 162 milliseconds