Searched refs:resbuf (Results 1 - 15 of 15) sorted by relevance

/haiku-fatelf/src/bin/coreutils/lib/
H A Dsha256.h63 extern void *sha256_finish_ctx (struct sha256_ctx *ctx, void *resbuf);
64 extern void *sha224_finish_ctx (struct sha256_ctx *ctx, void *resbuf);
70 extern void *sha256_read_ctx (const struct sha256_ctx *ctx, void *resbuf);
71 extern void *sha224_read_ctx (const struct sha256_ctx *ctx, void *resbuf);
H A Dsha512.h64 extern void *sha512_finish_ctx (struct sha512_ctx *ctx, void *resbuf);
65 extern void *sha384_finish_ctx (struct sha512_ctx *ctx, void *resbuf);
74 extern void *sha512_read_ctx (const struct sha512_ctx *ctx, void *resbuf);
75 extern void *sha384_read_ctx (const struct sha512_ctx *ctx, void *resbuf);
H A Dsha1.h71 extern void *sha1_finish_ctx (struct sha1_ctx *ctx, void *resbuf);
77 extern void *sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf);
H A Dmd5.h104 extern void *__md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) __THROW;
110 extern void *__md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) __THROW;
H A Dsha256.c101 sha256_read_ctx (const struct sha256_ctx *ctx, void *resbuf) argument
104 char *r = resbuf;
109 return resbuf;
113 sha224_read_ctx (const struct sha256_ctx *ctx, void *resbuf) argument
116 char *r = resbuf;
121 return resbuf;
153 sha256_finish_ctx (struct sha256_ctx *ctx, void *resbuf) argument
156 return sha256_read_ctx (ctx, resbuf);
160 sha224_finish_ctx (struct sha256_ctx *ctx, void *resbuf) argument
163 return sha224_read_ctx (ctx, resbuf);
[all...]
H A Dsha512.c108 sha512_read_ctx (const struct sha512_ctx *ctx, void *resbuf) argument
111 char *r = resbuf;
116 return resbuf;
120 sha384_read_ctx (const struct sha512_ctx *ctx, void *resbuf) argument
123 char *r = resbuf;
128 return resbuf;
161 sha512_finish_ctx (struct sha512_ctx *ctx, void *resbuf) argument
164 return sha512_read_ctx (ctx, resbuf);
168 sha384_finish_ctx (struct sha512_ctx *ctx, void *resbuf) argument
171 return sha384_read_ctx (ctx, resbuf);
[all...]
H A Dmd5.c98 md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) argument
100 char *r = resbuf;
106 return resbuf;
112 md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) argument
132 return md5_read_ctx (ctx, resbuf);
H A Dsha1.c86 sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf) argument
88 char *r = resbuf;
95 return resbuf;
101 sha1_finish_ctx (struct sha1_ctx *ctx, void *resbuf) argument
121 return sha1_read_ctx (ctx, resbuf);
/haiku-fatelf/src/bin/gdb/include/
H A Dmd5.h119 extern void *md5_finish_ctx __P ((struct md5_ctx *ctx, void *resbuf));
128 extern void *md5_read_ctx __P ((const struct md5_ctx *ctx, void *resbuf));
/haiku-fatelf/src/bin/network/wget/md5/
H A Dmd5.h101 extern void *__md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) __THROW;
107 extern void *__md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) __THROW;
H A Dmd5.c95 md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) argument
97 char *r = resbuf;
103 return resbuf;
109 md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) argument
129 return md5_read_ctx (ctx, resbuf);
/haiku-fatelf/src/bin/sharutils/lib/
H A Dmd5.h101 void *md5_read_ctx __P ((const struct md5_ctx *ctx, void *resbuf));
H A Dmd5.c66 md5_read_ctx (ctx, resbuf)
68 void *resbuf;
70 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
71 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
72 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
73 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
75 return resbuf;
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dmd5.c83 md5_read_ctx (ctx, resbuf)
85 void *resbuf;
87 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A);
88 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B);
89 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C);
90 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D);
92 return resbuf;
101 md5_finish_ctx (ctx, resbuf)
103 void *resbuf;
125 return md5_read_ctx (ctx, resbuf);
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dxmlreader.c1643 xmlChar *resbuf; local
1667 resbuf = buff->content;
1671 return resbuf;
1689 xmlChar *resbuf; local
1707 resbuf = buff->content;
1712 return resbuf;

Completed in 81 milliseconds