/external/libvncserver/common/ |
D | md5.c | 85 md5_read_ctx (ctx, resbuf) in md5_read_ctx() argument 87 void *resbuf; 89 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A); 90 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B); 91 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C); 92 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D); 94 return resbuf; 103 md5_finish_ctx (ctx, resbuf) in md5_finish_ctx() argument 105 void *resbuf; 127 return md5_read_ctx (ctx, resbuf);
|
D | md5.h | 124 extern void *__md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) __THROW; 133 extern void *__md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) __THROW;
|
/external/elfutils/lib/ |
D | md5.c | 69 md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) in md5_read_ctx() argument 71 ((md5_uint32 *) resbuf)[0] = SWAP (ctx->A); in md5_read_ctx() 72 ((md5_uint32 *) resbuf)[1] = SWAP (ctx->B); in md5_read_ctx() 73 ((md5_uint32 *) resbuf)[2] = SWAP (ctx->C); in md5_read_ctx() 74 ((md5_uint32 *) resbuf)[3] = SWAP (ctx->D); in md5_read_ctx() 76 return resbuf; in md5_read_ctx() 95 md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) in md5_finish_ctx() argument 118 return md5_read_ctx (ctx, resbuf); in md5_finish_ctx()
|
D | sha1.c | 69 sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf) in sha1_read_ctx() argument 71 ((sha1_uint32 *) resbuf)[0] = SWAP (ctx->A); in sha1_read_ctx() 72 ((sha1_uint32 *) resbuf)[1] = SWAP (ctx->B); in sha1_read_ctx() 73 ((sha1_uint32 *) resbuf)[2] = SWAP (ctx->C); in sha1_read_ctx() 74 ((sha1_uint32 *) resbuf)[3] = SWAP (ctx->D); in sha1_read_ctx() 75 ((sha1_uint32 *) resbuf)[4] = SWAP (ctx->E); in sha1_read_ctx() 77 return resbuf; in sha1_read_ctx() 93 sha1_finish_ctx (struct sha1_ctx *ctx, void *resbuf) in sha1_finish_ctx() argument 116 return sha1_read_ctx (ctx, resbuf); in sha1_finish_ctx()
|
D | sha1.h | 82 extern void *sha1_finish_ctx (struct sha1_ctx *ctx, void *resbuf); 91 extern void *sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf);
|
D | md5.h | 87 extern void *md5_finish_ctx (struct md5_ctx *ctx, void *resbuf); 96 extern void *md5_read_ctx (const struct md5_ctx *ctx, void *resbuf);
|
/external/ltp/testcases/kernel/syscalls/gethostbyname_r/ |
D | gethostbyname_r01.c | 68 struct hostent resbuf; in check_vulnerable() local 84 retval = gethostbyname_r(name, &resbuf, temp.buffer, in check_vulnerable()
|
/external/kernel-headers/original/uapi/linux/ |
D | i2o-dev.h | 60 void __user *resbuf; /* Buffer for result */ member 69 void __user *resbuf; /* Result List buffer */ member 88 void __user *resbuf; /* Buffer for reply HTML page */ member
|
/external/syslinux/com32/libutil/ |
D | sha256crypt.c | 180 static void *sha256_finish_ctx(struct sha256_ctx *ctx, void *resbuf) in sha256_finish_ctx() argument 205 ((uint32_t *) resbuf)[i] = SWAP(ctx->H[i]); in sha256_finish_ctx() 207 return resbuf; in sha256_finish_ctx()
|
D | sha512crypt.c | 211 static void *sha512_finish_ctx(struct sha512_ctx *ctx, void *resbuf) in sha512_finish_ctx() argument 236 ((uint64_t *) resbuf)[i] = SWAP(ctx->H[i]); in sha512_finish_ctx() 238 return resbuf; in sha512_finish_ctx()
|
/external/mksh/src/ |
D | exec.c | 1519 hereinval(struct ioword *iop, int sub, char **resbuf, struct shf *shf) in hereinval() argument 1545 if (resbuf == NULL) in hereinval() 1548 strdupx(*resbuf, ccp, APERM); in hereinval() 1555 herein(struct ioword *iop, char **resbuf) in herein() argument 1566 if (resbuf != NULL) in herein() 1567 return (hereinval(iop, i, resbuf, NULL)); in herein()
|
/external/libxml2/ |
D | xmlreader.c | 1701 xmlChar *resbuf; in xmlTextReaderReadInnerXml() local 1725 resbuf = buff->content; in xmlTextReaderReadInnerXml() 1729 return resbuf; in xmlTextReaderReadInnerXml() 1747 xmlChar *resbuf; in xmlTextReaderReadOuterXml() local 1769 resbuf = buff->content; in xmlTextReaderReadOuterXml() 1774 return resbuf; in xmlTextReaderReadOuterXml()
|