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 169 void BackpatchWord(unsigned ByteNo, unsigned NewWord) {
170 Out[ByteNo++] = (unsigned char)(NewWord >> 0);
171 Out[ByteNo++] = (unsigned char)(NewWord >> 8);
172 Out[ByteNo++] = (unsigned char)(NewWord >> 16);
173 Out[ByteNo ] = (unsigned char)(NewWord >> 24);
243 unsigned ByteNo = B.StartSizeWord*4;
246 BackpatchWord(ByteNo, SizeInWords);
BitstreamReader.h 247 uintptr_t ByteNo = uintptr_t(BitNo/8) & ~3;
249 assert(ByteNo <= (uintptr_t)(BitStream->getLastChar()-
254 NextChar = BitStream->getFirstChar()+ByteNo;

Completed in 987 milliseconds