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

  /external/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;
251 uint32_t startbit = bit & ~(MAPSIZE - 1); local
    [all...]
write.c 75 bit = cpu_to_le32(n->startbit);
    [all...]
  /external/libsepol/include/sepol/policydb/
ebitmap.h 29 uint32_t startbit; /* starting position in the total bitmap */ member in struct:ebitmap_node
40 #define ebitmap_startbit(e) ((e)->node ? (e)->node->startbit : 0)
58 if ((bit == ((*n)->startbit + MAPSIZE - 1)) && (*n)->next) {
60 return (*n)->startbit;
68 if (n->map & (MAPBIT << (bit - n->startbit)))
  /external/ppp/pppd/
pppcrypt.c 38 Get7Bits(input, startBit)
40 int startBit;
44 word = (unsigned)input[startBit / 8] << 8;
45 word |= (unsigned)input[startBit / 8 + 1];
47 word >>= 15 - (startBit % 8 + 7);
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 223 unsigned StartBit; // the starting bit position
257 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
403 bool fieldFromInsn(uint64_t &Field, insn_t &Insn, unsigned StartBit,
464 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed);
468 void reportRegion(bitAttr_t RA, unsigned StartBit, unsigned BitIndex,
495 : Owner(f.Owner), StartBit(f.StartBit), NumBits(f.NumBits), Mixed(f.Mixed),
502 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits,
504 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed)
    [all...]
  /external/libppp/src/
chap_ms.c 80 Get7Bits(u_char *input, int startBit)
84 word = (unsigned)input[startBit / 8] << 8;
85 word |= (unsigned)input[startBit / 8 + 1];
87 word >>= 15 - (startBit % 8 + 7);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.h 165 void BitstreamShowBuffer(BitstreamDecVideo *stream, int32 startbit, int32 endbit, uint8 *bitBfr);
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditorAudioDecoder.cpp 267 M4OSA_UInt32 startBit = 0;
285 startBit = (*pOffset) % 8;
293 ui32Mask >>= startBit;
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]

Completed in 269 milliseconds