Home
last modified time | relevance | path

Searched refs:tagbuf (Results 1 – 6 of 6) sorted by relevance

/third_party/node/lib/internal/crypto/
Dcipher.js199 function setAuthTag(tagbuf) { argument
200 if (!isArrayBufferView(tagbuf)) {
203 tagbuf);
205 if (!this[kHandle].setAuthTag(tagbuf))
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Did3v2mux.c357 GstBuffer *tagbuf = NULL; in test_taglib_id3mux_with_tags() local
403 g_signal_connect (identity, "handoff", G_CALLBACK (identity_cb), &tagbuf); in test_taglib_id3mux_with_tags()
439 fail_unless (tagbuf != NULL); in test_taglib_id3mux_with_tags()
440 test_taglib_id3mux_check_tag_buffer (tagbuf, mask); in test_taglib_id3mux_with_tags()
441 gst_buffer_unref (tagbuf); in test_taglib_id3mux_with_tags()
/third_party/gstreamer/gstplugins_bad/tests/check/elements/
Did3mux.c402 GstBuffer *tagbuf = NULL; in test_taglib_id3mux_with_tags() local
449 g_signal_connect (identity, "handoff", G_CALLBACK (identity_cb), &tagbuf); in test_taglib_id3mux_with_tags()
485 fail_unless (tagbuf != NULL); in test_taglib_id3mux_with_tags()
486 test_taglib_id3mux_check_tag_buffer (tagbuf, mask, v2version); in test_taglib_id3mux_with_tags()
487 gst_buffer_unref (tagbuf); in test_taglib_id3mux_with_tags()
/third_party/ffmpeg/libavformat/
Dapngenc.c66 uint8_t tagbuf[4]; in apng_write_chunk() local
71 AV_WB32(tagbuf, tag); in apng_write_chunk()
72 crc = av_crc(crc_table, crc, tagbuf, 4); in apng_write_chunk()
/third_party/node/test/parallel/
Dtest-crypto-cipher-decipher.js233 const tagbuf = Buffer.from('auth_tag'); constant
237 assert.strictEqual(decipher.setAuthTag(tagbuf), decipher);
/third_party/ffmpeg/libavcodec/
Dpngenc.c229 uint8_t tagbuf[4]; in png_write_chunk() local
232 AV_WL32(tagbuf, tag); in png_write_chunk()
233 crc = av_crc(crc_table, crc, tagbuf, 4); in png_write_chunk()