HomeSort by relevance Sort by last modified time
    Searched refs:startbit (Results 1 - 5 of 5) sorted by null

  /external/selinux/libsepol/src/
ebitmap.c 34 if (n1 && n2 && n1->startbit == n2->startbit) {
35 new->startbit = n1->startbit;
39 } else if (!n2 || (n1 && n1->startbit < n2->startbit)) {
40 new->startbit = n1->startbit;
44 new->startbit = n2->startbit;
273 uint32_t startbit = bit & ~(MAPSIZE - 1); local
    [all...]
write.c 77 bit = cpu_to_le32(n->startbit);
    [all...]
  /external/selinux/libsepol/include/sepol/policydb/
ebitmap.h 32 uint32_t startbit; /* starting position in the total bitmap */ member in struct:ebitmap_node
43 #define ebitmap_startbit(e) ((e)->node ? (e)->node->startbit : 0)
61 if ((bit == ((*n)->startbit + MAPSIZE - 1)) && (*n)->next) {
63 return (*n)->startbit;
71 if (n->map & (MAPBIT << (bit - n->startbit)))
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.h 165 void BitstreamShowBuffer(BitstreamDecVideo *stream, int32 startbit, int32 endbit, uint8 *bitBfr);
  /external/pdfium/core/fxcodec/codec/
fx_codec_fax.cpp 405 int startbit = *bitpos; local
409 if (*bitpos - startbit <= 11)
410 *bitpos = startbit;

Completed in 211 milliseconds