Home
last modified time | relevance | path

Searched refs:ByteNo (Results 1 – 10 of 10) sorted by relevance

/external/libnfc-nxp/src/
DphFriNfc_TopazMap.c99 uint16_t ByteNo);
137 uint16_t ByteNo,
893 uint16_t ByteNo) in phFriNfc_Tpz_H_RdBytes() argument
1008 ByteNo); in phFriNfc_Tpz_H_RdBytes()
1029 ByteNo); in phFriNfc_Tpz_H_RdBytes()
1069 uint16_t ByteNo, in phFriNfc_Tpz_H_WrAByte() argument
1110 ByteNo); in phFriNfc_Tpz_H_WrAByte()
1133 ByteNo); in phFriNfc_Tpz_H_WrAByte()
1609 ByteNo = PH_FRINFC_TOPAZ_VAL0; in phFriNfc_Tpz_H_ProWrNMN() local
1624 ByteNo = (uint8_t)((NdefMap->TLVStruct.NdefTLVByte + PH_FRINFC_TOPAZ_VAL1) % in phFriNfc_Tpz_H_ProWrNMN()
[all …]
DphFriNfc_MifareULMap.c3156 ByteNo = PH_FRINFC_NDEFMAP_MFUL_VAL0; in phFriNfc_MfUL_H_UpdateWrLen() local
3171 ByteNo = (((NdefMap->TLVStruct.NdefTLVByte - in phFriNfc_MfUL_H_UpdateWrLen()
3215 ByteNo++; in phFriNfc_MfUL_H_UpdateWrLen()
3216 if ((ByteNo == 3) || (ByteNo == 2)) in phFriNfc_MfUL_H_UpdateWrLen()
3218 … NdefMap->SendRecvBuf[ByteNo]= (uint8_t) ((NdefMap->ApduBuffIndex & 0xFF00) >> 8); in phFriNfc_MfUL_H_UpdateWrLen()
3219 ByteNo++; in phFriNfc_MfUL_H_UpdateWrLen()
3220 NdefMap->SendRecvBuf[ByteNo] = (uint8_t) (NdefMap->ApduBuffIndex); in phFriNfc_MfUL_H_UpdateWrLen()
3221 ByteNo++; in phFriNfc_MfUL_H_UpdateWrLen()
3224 else if (ByteNo == 4) in phFriNfc_MfUL_H_UpdateWrLen()
3227 NdefMap->SendRecvBuf[ByteNo]= (uint8_t) ((NdefMap->ApduBuffIndex & 0xFF00) >> 8); in phFriNfc_MfUL_H_UpdateWrLen()
[all …]
/external/llvm/include/llvm/Bitcode/
DBitstreamWriter.h65 void BackpatchWord(unsigned ByteNo, unsigned NewWord) { in BackpatchWord() argument
66 Out[ByteNo++] = (unsigned char)(NewWord >> 0); in BackpatchWord()
67 Out[ByteNo++] = (unsigned char)(NewWord >> 8); in BackpatchWord()
68 Out[ByteNo++] = (unsigned char)(NewWord >> 16); in BackpatchWord()
69 Out[ByteNo ] = (unsigned char)(NewWord >> 24); in BackpatchWord()
240 unsigned ByteNo = B.StartSizeWord*4; in ExitBlock() local
243 BackpatchWord(ByteNo, SizeInWords); in ExitBlock()
DBitstreamReader.h301 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1); in JumpToBit() local
303 assert(canSkipToPos(ByteNo) && "Invalid location"); in JumpToBit()
306 NextChar = ByteNo; in JumpToBit()
/external/clang/lib/Lex/
DLiteralSupport.cpp1603 unsigned ByteNo) const { in getOffsetOfStringByte()
1636 return SpellingPtr - SpellingStart + ByteNo; in getOffsetOfStringByte()
1644 while (ByteNo) { in getOffsetOfStringByte()
1650 --ByteNo; in getOffsetOfStringByte()
1660 if (Len > ByteNo) { in getOffsetOfStringByte()
1665 ByteNo -= Len; in getOffsetOfStringByte()
1670 --ByteNo; in getOffsetOfStringByte()
/external/clang/include/clang/Lex/
DLiteralSupport.h229 unsigned getOffsetOfStringByte(const Token &TheTok, unsigned ByteNo) const;
/external/clang/lib/AST/
DExpr.cpp1006 getLocationOfByte(unsigned ByteNo, const SourceManager &SM, in getLocationOfByte() argument
1043 if (ByteNo < TokNumBytes || in getLocationOfByte()
1044 (ByteNo == TokNumBytes && TokNo == getNumConcatenated() - 1)) { in getLocationOfByte()
1045 unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo); in getLocationOfByte()
1054 ByteNo -= TokNumBytes; in getLocationOfByte()
/external/clang/include/clang/AST/
DExpr.h1597 SourceLocation getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
/external/clang/lib/Sema/
DSemaChecking.cpp45 unsigned ByteNo) const { in getLocationOfStringLiteralByte()
46 return SL->getLocationOfByte(ByteNo, getSourceManager(), LangOpts, in getLocationOfStringLiteralByte()
/external/clang/include/clang/Sema/
DSema.h8426 unsigned ByteNo) const;