Home
last modified time | relevance | path

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

/external/u-boot/board/keymile/common/
Divm.c47 char tempbuf[256]; in ivm_set_value() local
50 sprintf(tempbuf, "%s=%s", name, value); in ivm_set_value()
51 return set_local_var(tempbuf, 0); in ivm_set_value()
/external/e2fsprogs/misc/
De4crypt.c411 unsigned char tempbuf[SHA512_LENGTH] = {0}; in pbkdf2_sha512() local
418 __u32 *temp_u32 = (__u32 *)tempbuf; in pbkdf2_sha512()
439 ext2fs_sha512(saltbuf, actual_saltbuf_len, tempbuf); in pbkdf2_sha512()
444 memcpy(buf, tempbuf, SHA512_LENGTH); in pbkdf2_sha512()
445 ext2fs_sha512(buf, actual_buf_len, tempbuf); in pbkdf2_sha512()
/external/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()
/external/pdfium/core/fpdfapi/parser/
Dcpdf_security_handler.cpp598 uint8_t tempbuf[32]; in OnCreateInternal() local
599 memcpy(tempbuf, kDefaultPasscode, sizeof(kDefaultPasscode)); in OnCreateInternal()
600 CRYPT_ArcFourCryptBlock(tempbuf, {m_EncryptKey, key_len}); in OnCreateInternal()
601 pEncryptDict->SetNewFor<CPDF_String>("U", ByteString(tempbuf, 32), false); in OnCreateInternal()
/external/libpcap/
Dsockutils.h212 int sock_bufferize(const char *buffer, int size, char *tempbuf, int *offset, int totsize, int check…
Dsockutils.c779 int sock_bufferize(const char *buffer, int size, char *tempbuf, int *offset, int totsize, int check… argument
789 memcpy(tempbuf + (*offset), buffer, size);
/external/curl/lib/
Durldata.h1222 struct tempbuf { struct
1304 struct tempbuf tempwrite[3]; /* BOTH, HEADER, BODY */
Deasy.c987 struct tempbuf writebuf[3]; /* there can only be three */ in curl_easy_pause()