Home
last modified time | relevance | path

Searched refs:AddToken (Results 1 – 7 of 7) sorted by relevance

/external/opencv3/3rdparty/libwebp/enc/
Dtoken.c83 static WEBP_INLINE int AddToken(VP8TBuffer* const b, in AddToken() function
109 if (!AddToken(tokens, last >= 0, base_id + 0)) { in VP8RecordCoeffTokens()
117 if (!AddToken(tokens, v != 0, base_id + 1)) { in VP8RecordCoeffTokens()
122 if (!AddToken(tokens, v > 1, base_id + 2)) { in VP8RecordCoeffTokens()
125 if (!AddToken(tokens, v > 4, base_id + 3)) { in VP8RecordCoeffTokens()
126 if (AddToken(tokens, v != 2, base_id + 4)) in VP8RecordCoeffTokens()
127 AddToken(tokens, v == 4, base_id + 5); in VP8RecordCoeffTokens()
128 } else if (!AddToken(tokens, v > 10, base_id + 6)) { in VP8RecordCoeffTokens()
129 if (!AddToken(tokens, v > 6, base_id + 7)) { in VP8RecordCoeffTokens()
139 AddToken(tokens, 0, base_id + 8); in VP8RecordCoeffTokens()
[all …]
/external/webp/src/enc/
Dtoken.c90 static WEBP_INLINE uint32_t AddToken(VP8TBuffer* const b, in AddToken() function
117 if (!AddToken(tokens, last >= 0, base_id + 0)) { in VP8RecordCoeffTokens()
125 if (!AddToken(tokens, v != 0, base_id + 1)) { in VP8RecordCoeffTokens()
129 if (!AddToken(tokens, v > 1, base_id + 2)) { in VP8RecordCoeffTokens()
132 if (!AddToken(tokens, v > 4, base_id + 3)) { in VP8RecordCoeffTokens()
133 if (AddToken(tokens, v != 2, base_id + 4)) in VP8RecordCoeffTokens()
134 AddToken(tokens, v == 4, base_id + 5); in VP8RecordCoeffTokens()
135 } else if (!AddToken(tokens, v > 10, base_id + 6)) { in VP8RecordCoeffTokens()
136 if (!AddToken(tokens, v > 6, base_id + 7)) { in VP8RecordCoeffTokens()
147 AddToken(tokens, 0, base_id + 8); in VP8RecordCoeffTokens()
[all …]
/external/clang/lib/Rewrite/
DTokenRewriter.cpp44 AddToken(RawTok, TokenList.end()); in TokenRewriter()
70 TokenRewriter::AddToken(const Token &T, TokenRefTy Where) { in AddToken() function in TokenRewriter
97 return AddToken(Tok, RemapIterator(I)); in AddTokenBefore()
/external/clang/include/clang/Rewrite/Core/
DTokenRewriter.h72 TokenRefTy AddToken(const Token &T, TokenRefTy Where);
/external/clang/include/clang/Serialization/
DASTWriter.h616 void AddToken(const Token &Tok, RecordDataImpl &Record);
/external/clang/lib/Serialization/
DASTWriter.cpp2209 AddToken(Tok, Record); in WritePreprocessor()
3869 AddToken(Tok, Record); in WriteLateParsedTemplates()
3935 void ASTWriter::AddToken(const Token &Tok, RecordDataImpl &Record) { in AddToken() function in ASTWriter
DASTWriterStmt.cpp267 Writer.AddToken(S->getAsmToks()[I], Record); in VisitMSAsmStmt()