Home
last modified time | relevance | path

Searched refs:taglen (Results 1 – 4 of 4) sorted by relevance

/external/tremolo/Tremolo/
Dtreminfo.c77 int taglen = strlen(tag)+1; /* +1 for the = we append */ in vorbis_comment_query() local
78 char *fulltag = (char *)alloca(taglen+ 1); in vorbis_comment_query()
84 if(!tagcompare(vc->user_comments[i], fulltag, taglen)){ in vorbis_comment_query()
87 return vc->user_comments[i] + taglen; in vorbis_comment_query()
97 int taglen = strlen(tag)+1; /* +1 for the = we append */ in vorbis_comment_query_count() local
98 char *fulltag = (char *)alloca(taglen+1); in vorbis_comment_query_count()
103 if(!tagcompare(vc->user_comments[i], fulltag, taglen)) in vorbis_comment_query_count()
/external/libvorbis/lib/
Dinfo.c100 int taglen = strlen(tag)+1; /* +1 for the = we append */ in vorbis_comment_query() local
101 char *fulltag = alloca(taglen+ 1); in vorbis_comment_query()
107 if(!tagcompare(vc->user_comments[i], fulltag, taglen)){ in vorbis_comment_query()
110 return vc->user_comments[i] + taglen; in vorbis_comment_query()
120 int taglen = strlen(tag)+1; /* +1 for the = we append */ in vorbis_comment_query_count() local
121 char *fulltag = alloca(taglen+1); in vorbis_comment_query_count()
126 if(!tagcompare(vc->user_comments[i], fulltag, taglen)) in vorbis_comment_query_count()
/external/boringssl/src/crypto/cipher/
De_aes.c92 int taglen; member
532 gctx->taglen = -1; in aes_gcm_ctrl()
559 gctx->taglen = arg; in aes_gcm_ctrl()
563 if (arg <= 0 || arg > 16 || !c->encrypt || gctx->taglen < 0) { in aes_gcm_ctrl()
712 if (gctx->taglen < 0 || in aes_gcm_cipher()
713 !CRYPTO_gcm128_finish(&gctx->gcm, ctx->buf, gctx->taglen)) { in aes_gcm_cipher()
720 gctx->taglen = 16; in aes_gcm_cipher()
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_parser.cpp2542 const FX_DWORD taglen = tag.GetLength(); in IsWholeWord() local
2544 bool bCheckRight = !PDFCharIsDelimiter(tag[taglen - 1]) && in IsWholeWord()
2545 !PDFCharIsWhitespace(tag[taglen - 1]); in IsWholeWord()
2547 if (bCheckRight && startpos + (int32_t)taglen <= limit && in IsWholeWord()
2548 GetCharAt(startpos + (int32_t)taglen, ch)) { in IsWholeWord()
2568 int32_t taglen = tag.GetLength(); in SearchWord() local
2569 if (taglen == 0) { in SearchWord()
2575 offset = taglen - 1; in SearchWord()
2602 if (offset < taglen) { in SearchWord()
2613 FX_FILESIZE startpos = bForward ? pos - taglen + 1 : pos; in SearchWord()
[all …]