Home
last modified time | relevance | path

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

/third_party/openssl/crypto/rand/
Drand_egd.c65 unsigned char tempbuf[255];
67 if (bytes > (int)sizeof(tempbuf))
112 tempbuf[0] = 1;
113 tempbuf[1] = bytes;
114 if (fwrite(tempbuf, sizeof(char), 2, fp) != 2 || fflush(fp) == EOF)
116 if (fread(tempbuf, sizeof(char), 1, fp) != 1 || tempbuf[0] == 0)
118 numbytes = tempbuf[0];
123 buf = tempbuf;
131 RAND_add(tempbuf, i, i);
/third_party/f2fs-tools/tools/
Df2fscrypt.c457 unsigned char tempbuf[SHA512_LENGTH] = {0}; in pbkdf2_sha512() local
464 __u32 *temp_u32 = (__u32 *)tempbuf; in pbkdf2_sha512()
485 f2fs_sha512(saltbuf, actual_saltbuf_len, tempbuf); in pbkdf2_sha512()
490 memcpy(buf, tempbuf, SHA512_LENGTH); in pbkdf2_sha512()
491 f2fs_sha512(buf, actual_buf_len, tempbuf); in pbkdf2_sha512()
/third_party/e2fsprogs/misc/
De4crypt.c412 unsigned char tempbuf[SHA512_LENGTH] = {0}; in pbkdf2_sha512() local
419 __u32 *temp_u32 = (__u32 *)tempbuf; in pbkdf2_sha512()
440 ext2fs_sha512(saltbuf, actual_saltbuf_len, tempbuf); in pbkdf2_sha512()
445 memcpy(buf, tempbuf, SHA512_LENGTH); in pbkdf2_sha512()
446 ext2fs_sha512(buf, actual_buf_len, tempbuf); in pbkdf2_sha512()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/pbutils/
Dgstaudiovisualizer.c120 GstBuffer *tempbuf; member
676 if (scope->priv->tempbuf) { in gst_audio_visualizer_dispose()
678 gst_buffer_unref (scope->priv->tempbuf); in gst_audio_visualizer_dispose()
679 scope->priv->tempbuf = NULL; in gst_audio_visualizer_dispose()
755 if (scope->priv->tempbuf) { in gst_audio_visualizer_src_setcaps()
757 gst_buffer_unref (scope->priv->tempbuf); in gst_audio_visualizer_src_setcaps()
759 scope->priv->tempbuf = gst_buffer_new_wrapped (g_malloc0 (scope->vinfo.size), in gst_audio_visualizer_src_setcaps()
762 scope->priv->tempbuf, GST_MAP_READWRITE); in gst_audio_visualizer_src_setcaps()
/third_party/curl/lib/
Durldata.h1268 struct tempbuf { struct
1347 struct tempbuf tempwrite[3]; /* BOTH, HEADER, BODY */
Deasy.c1095 struct tempbuf writebuf[3]; /* there can only be three */ in curl_easy_pause()