Searched defs:dctx (Results 1 - 10 of 10) sorted by relevance

/external/boringssl/src/crypto/evp/
H A Dp_ec.c83 EC_PKEY_CTX *dctx; local
84 dctx = OPENSSL_malloc(sizeof(EC_PKEY_CTX));
85 if (!dctx) {
88 OPENSSL_memset(dctx, 0, sizeof(EC_PKEY_CTX));
90 ctx->data = dctx;
96 EC_PKEY_CTX *dctx, *sctx; local
101 dctx = dst->data;
103 dctx->md = sctx->md;
109 EC_PKEY_CTX *dctx = ctx->data; local
110 if (!dctx) {
178 EC_PKEY_CTX *dctx = ctx->data; local
[all...]
H A Dp_rsa.c118 RSA_PKEY_CTX *dctx, *sctx; local
123 dctx = dst->data;
124 dctx->nbits = sctx->nbits;
126 dctx->pub_exp = BN_dup(sctx->pub_exp);
127 if (!dctx->pub_exp) {
132 dctx->pad_mode = sctx->pad_mode;
133 dctx->md = sctx->md;
134 dctx->mgf1md = sctx->mgf1md;
136 OPENSSL_free(dctx->oaep_label);
137 dctx
[all...]
/external/dhcpcd-6.8.2/
H A Deloop.c457 eloop_init(struct dhcpcd_ctx *dctx) argument
468 ctx->ctx = dctx;
H A Dipv6nd.c158 ipv6nd_open(struct dhcpcd_ctx *dctx) argument
164 ctx = dctx->ipv6;
214 eloop_event_add(dctx->eloop, ctx->nd_fd,
215 ipv6nd_handledata, dctx, NULL, NULL);
220 eloop_event_delete(dctx->eloop, ctx->nd_fd, 0);
725 ipv6nd_handlera(struct dhcpcd_ctx *dctx, struct interface *ifp, argument
728 struct ipv6_ctx *ctx = dctx->ipv6;
753 logger(dctx, LOG_ERR,
759 logger(dctx, LOG_ERR,
766 logger(dctx, LOG_DEBU
1552 ipv6nd_handlena(struct dhcpcd_ctx *dctx, struct interface *ifp, struct icmp6_hdr *icp, size_t len) argument
1630 struct dhcpcd_ctx *dctx; local
[all...]
H A Ddhcp6.c2602 struct dhcpcd_ctx *dctx; local
2620 dctx = arg;
2621 ctx = dctx->ipv6;
2625 logger(dctx, LOG_ERR, "%s: recvmsg: %m", __func__);
2627 eloop_event_delete(dctx->eloop, ctx->dhcp_fd, 0);
2635 logger(dctx, LOG_ERR,
2655 logger(dctx, LOG_ERR,
2660 TAILQ_FOREACH(ifp, dctx->ifaces, next) {
2667 logger(dctx, LOG_DEBUG,
2707 logger(dctx, LOG_DEBU
3086 dhcp6_open(struct dhcpcd_ctx *dctx) argument
[all...]
/external/lz4/examples/
H A DframeCompress.c134 LZ4F_dctx *dctx = NULL; local
139 ret = LZ4F_createDecompressionContext(&dctx, 100);
159 ret = LZ4F_getFrameInfo(dctx, &info, src, &srcSize);
181 ret = LZ4F_decompress(dctx, dst, &dstSize, srcPtr, &srcSize, /* LZ4F_decompressOptions_t */ NULL);
213 return LZ4F_freeDecompressionContext(dctx); /* note : free works on NULL */
/external/syslinux/gpxe/src/net/80211/
H A Dwpa_tkip.c208 * @v dctx TKIP directional context
212 * This recomputes the TTAK in @a dctx if necessary, and sets
213 * @c dctx->ttak_ok.
215 static void tkip_mix_1 ( struct tkip_dir_ctx *dctx, struct tkip_tk *tk, u8 *mac ) argument
219 if ( dctx->ttak_ok && ! memcmp ( mac, dctx->mac, ETH_ALEN ) )
222 memcpy ( dctx->mac, mac, ETH_ALEN );
224 dctx->ttak[0] = dctx->tsc_hi & 0xFFFF;
225 dctx
255 tkip_mix_2( struct tkip_dir_ctx *dctx, struct tkip_tk *tk, void *key ) argument
[all...]
/external/curl/src/
H A Dtool_metalink.c600 digest_context *dctx; local
616 dctx = Curl_digest_init(digest_def->dparams);
617 if(!dctx) {
627 Curl_digest_final(dctx, NULL);
639 Curl_digest_final(dctx, result);
643 Curl_digest_update(dctx, buf, (unsigned int)len);
645 Curl_digest_final(dctx, result);
/external/mesa3d/src/gallium/drivers/ddebug/
H A Ddd_context.c128 struct dd_context *dctx = dd_context(_pipe); local
129 struct pipe_context *pipe = dctx->pipe;
137 struct dd_context *dctx = dd_context(_pipe); local
138 struct pipe_context *pipe = dctx->pipe;
166 struct dd_context *dctx = dd_context(_pipe); local
167 struct pipe_context *pipe = dctx->pipe;
168 struct dd_draw_state *dstate = &dctx->draw_state;
200 struct dd_context *dctx = dd_context(_pipe); \
201 struct pipe_context *pipe = dctx->pipe; \
204 dctx
237 struct dd_context *dctx = dd_context(_pipe); local
377 struct dd_context *dctx = dd_context(_pipe); local
390 struct dd_context *dctx = dd_context(_pipe); local
403 struct dd_context *dctx = dd_context(_pipe); local
415 struct dd_context *dctx = dd_context(_pipe); local
515 struct dd_context *dctx = dd_context(_pipe); local
529 struct dd_context *dctx = dd_context(_pipe); local
542 struct dd_context *dctx = dd_context(_pipe); local
555 struct dd_context *dctx = dd_context(_pipe); local
567 struct dd_context *dctx = dd_context(_pipe); local
580 struct dd_context *dctx = dd_context(_pipe); local
593 struct dd_context *dctx = dd_context(_pipe); local
735 struct dd_context *dctx = dd_context(_pipe); local
754 struct dd_context *dctx; local
[all...]
H A Ddd_draw.c468 dd_dump_driver_state(struct dd_context *dctx, FILE *f, unsigned flags) argument
470 if (dctx->pipe->dump_debug_state) {
474 dctx->pipe->dump_debug_state(dctx->pipe, f, flags);
517 dd_write_report(struct dd_context *dctx, struct dd_call *call, unsigned flags, argument
520 FILE *f = dd_get_file_stream(dd_screen(dctx->base.screen),
521 dctx->draw_state.apitrace_call_number);
526 dd_dump_call(f, &dctx->draw_state, call);
527 dd_dump_driver_state(dctx, f, flags);
544 dd_flush_and_check_hang(struct dd_context *dctx, argument
570 dd_flush_and_handle_hang(struct dd_context *dctx, struct pipe_fence_handle **fence, unsigned flags, const char *cause) argument
880 dd_dump_record(struct dd_context *dctx, struct dd_draw_record *record, uint32_t hw_sequence_no, int64_t now) argument
904 struct dd_context *dctx = (struct dd_context *)input; local
959 dd_get_driver_shader_log(struct dd_context *dctx) argument
1005 dd_pipelined_process_draw(struct dd_context *dctx, struct dd_call *call) argument
1054 struct dd_context *dctx = dd_context(_pipe); local
1073 dd_before_draw(struct dd_context *dctx) argument
1086 dd_after_draw(struct dd_context *dctx, struct dd_call *call) argument
1145 struct dd_context *dctx = dd_context(_pipe); local
1161 struct dd_context *dctx = dd_context(_pipe); local
1180 struct dd_context *dctx = dd_context(_pipe); local
1204 struct dd_context *dctx = dd_context(_pipe); local
1225 struct dd_context *dctx = dd_context(_pipe); local
1249 struct dd_context *dctx = dd_context(_pipe); local
1266 struct dd_context *dctx = dd_context(_pipe); local
1289 struct dd_context *dctx = dd_context(_pipe); local
1308 struct dd_context *dctx = dd_context(_pipe); local
1326 struct dd_context *dctx = dd_context(_pipe); local
1343 dd_init_draw_functions(struct dd_context *dctx) argument
[all...]

Completed in 89 milliseconds