Home
last modified time | relevance | path

Searched refs:resbuf (Results 1 – 5 of 5) sorted by relevance

/busybox-1.35.0/libbb/
Dhash_md5_sha.c453 unsigned FAST_FUNC md5_end(md5_ctx_t *ctx, void *resbuf) in md5_end() argument
466 memcpy(resbuf, ctx->hash, sizeof(ctx->hash[0]) * 4); in md5_end()
852 unsigned FAST_FUNC sha1_end(sha1_ctx_t *ctx, void *resbuf) in sha1_end() argument
867 memcpy(resbuf, ctx->hash, hash_size); in sha1_end()
872 unsigned FAST_FUNC sha512_end(sha512_ctx_t *ctx, void *resbuf) in sha512_end() argument
903 memcpy(resbuf, ctx->hash, sizeof(ctx->hash)); in sha512_end()
1442 unsigned FAST_FUNC sha3_end(sha3_ctx_t *ctx, void *resbuf) in sha3_end() argument
1466 memcpy(resbuf, ctx->state, 64); in sha3_end()
Dpw_encrypt_sha.c24 unsigned (*sha_end)(void *ctx, void *resbuf) FAST_FUNC; in sha_crypt()
/busybox-1.35.0/networking/
Dnslookup.c827 char resbuf[80]; in make_ptr() local
828 char *ptr = resbuf; in make_ptr()
836 return xstrdup(resbuf); in make_ptr()
/busybox-1.35.0/editors/
Dawk.c2450 char *resbuf; in awk_sub() local
2457 resbuf = NULL; in awk_sub()
2469 resbuf = qrealloc(resbuf, residx + eo + replen, &resbufsize); in awk_sub()
2470 memcpy(resbuf + residx, sp, eo); in awk_sub()
2480 char c = resbuf[residx++] = *s; in awk_sub()
2494 resbuf[residx++] = c; in awk_sub()
2497 resbuf = qrealloc(resbuf, residx + replen + n, &resbufsize); in awk_sub()
2498 memcpy(resbuf + residx, sp + pmatch[j].rm_so, n); in awk_sub()
2521 resbuf[residx] = *sp; in awk_sub()
2529 resbuf = qrealloc(resbuf, residx + strlen(sp), &resbufsize); in awk_sub()
[all …]
/busybox-1.35.0/include/
Dlibbb.h2154 unsigned md5_end(md5_ctx_t *ctx, void *resbuf) FAST_FUNC;
2157 unsigned sha1_end(sha1_ctx_t *ctx, void *resbuf) FAST_FUNC;
2163 unsigned sha512_end(sha512_ctx_t *ctx, void *resbuf) FAST_FUNC;
2166 unsigned sha3_end(sha3_ctx_t *ctx, void *resbuf) FAST_FUNC;