HomeSort by relevance Sort by last modified time
    Searched defs:ByteNo (Results 1 - 3 of 3) sorted by null

  /external/libnfc-nxp/src/
phFriNfc_TopazMap.c 99 uint16_t ByteNo);
137 uint16_t ByteNo,
893 uint16_t ByteNo)
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 65 void BackpatchWord(unsigned ByteNo, unsigned NewWord) {
66 Out[ByteNo++] = (unsigned char)(NewWord >> 0);
67 Out[ByteNo++] = (unsigned char)(NewWord >> 8);
68 Out[ByteNo++] = (unsigned char)(NewWord >> 16);
69 Out[ByteNo ] = (unsigned char)(NewWord >> 24);
257 unsigned ByteNo = B.StartSizeWord*4;
260 BackpatchWord(ByteNo, SizeInWords);
BitstreamReader.h 274 uintptr_t ByteNo = uintptr_t(BitNo/8) & ~3;
276 assert(canSkipToPos(ByteNo) && "Invalid location");
279 NextChar = ByteNo;

Completed in 2522 milliseconds