HomeSort by relevance Sort by last modified time
    Searched defs:dctx (Results 1 - 11 of 11) sorted by null

  /external/boringssl/src/crypto/evp/
p_ec.c 84 EC_PKEY_CTX *dctx; local
85 dctx = OPENSSL_malloc(sizeof(EC_PKEY_CTX));
86 if (!dctx) {
89 OPENSSL_memset(dctx, 0, sizeof(EC_PKEY_CTX));
91 ctx->data = dctx;
97 EC_PKEY_CTX *dctx, *sctx; local
102 dctx = dst->data;
104 dctx->md = sctx->md;
110 EC_PKEY_CTX *dctx = ctx->data; local
111 if (!dctx) {
180 EC_PKEY_CTX *dctx = ctx->data; local
221 EC_PKEY_CTX *dctx = ctx->data; local
242 EC_PKEY_CTX *dctx = ctx->data; local
    [all...]
p_rsa.c 118 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->oaep_label = BUF_memdup(sctx->oaep_label, sctx->oaep_labellen)
    [all...]
  /external/lz4/examples/
frameCompress.c 171 LZ4F_dctx* dctx,
179 assert(dctx != NULL);
202 ret = LZ4F_decompress(dctx, dst, &dstSize, srcPtr, &srcSize, /* LZ4F_decompressOptions_t */ NULL);
242 LZ4F_dctx* dctx,
246 assert(dctx != NULL);
259 { size_t const fires = LZ4F_getFrameInfo(dctx, &info, src, &consumedSize);
274 dctx,
292 LZ4F_dctx* dctx; local
293 { size_t const dctxStatus = LZ4F_createDecompressionContext(&dctx, LZ4F_VERSION);
298 int const result = !dctx ? 1 /* error */
    [all...]
  /external/mesa3d/src/gallium/drivers/ddebug/
dd_context.c 112 struct dd_context *dctx = dd_context(_pipe); local
113 struct pipe_context *pipe = dctx->pipe;
121 struct dd_context *dctx = dd_context(_pipe); local
122 struct pipe_context *pipe = dctx->pipe;
150 struct dd_context *dctx = dd_context(_pipe); local
151 struct pipe_context *pipe = dctx->pipe;
152 struct dd_draw_state *dstate = &dctx->draw_state;
184 struct dd_context *dctx = dd_context(_pipe); \
185 struct pipe_context *pipe = dctx->pipe; \
188 dctx->draw_state.shortname = hstate;
221 struct dd_context *dctx = dd_context(_pipe); local
365 struct dd_context *dctx = dd_context(_pipe); local
378 struct dd_context *dctx = dd_context(_pipe); local
391 struct dd_context *dctx = dd_context(_pipe); local
403 struct dd_context *dctx = dd_context(_pipe); local
503 struct dd_context *dctx = dd_context(_pipe); local
517 struct dd_context *dctx = dd_context(_pipe); local
530 struct dd_context *dctx = dd_context(_pipe); local
543 struct dd_context *dctx = dd_context(_pipe); local
557 struct dd_context *dctx = dd_context(_pipe); local
580 struct dd_context *dctx = dd_context(_pipe); local
681 struct dd_context *dctx = dd_context(_pipe); local
754 struct dd_context *dctx; local
    [all...]
dd_draw.c 542 dd_dump_driver_state(struct dd_context *dctx, FILE *f, unsigned flags)
544 if (dctx->pipe->dump_debug_state) {
548 dctx->pipe->dump_debug_state(dctx->pipe, f, flags);
873 PRINT_NAMED(ptr, "pipe", record->dctx->pipe);
926 dd_report_hang(struct dd_context *dctx)
928 struct dd_screen *dscreen = dd_screen(dctx->base.screen);
939 list_for_each_entry(struct dd_draw_record, record, &dctx->records, list) {
974 dd_dump_driver_state(dctx, f, PIPE_DUMP_DEVICE_STATUS_REGISTERS);
986 if (num_later || dctx->record_pending)
998 struct dd_context *dctx = (struct dd_context *)input; local
1088 struct dd_context *dctx = dd_context(_pipe); local
1126 struct dd_context *dctx = record->dctx; local
1194 struct dd_context *dctx = dd_context(_pipe); local
1232 struct dd_context *dctx = dd_context(_pipe); local
1253 struct dd_context *dctx = dd_context(_pipe); local
1279 struct dd_context *dctx = dd_context(_pipe); local
1304 struct dd_context *dctx = dd_context(_pipe); local
1334 struct dd_context *dctx = dd_context(_pipe); local
1362 struct dd_context *dctx = dd_context(_pipe); local
1380 struct dd_context *dctx = dd_context(_pipe); local
1403 struct dd_context *dctx = dd_context(_pipe); local
1422 struct dd_context *dctx = dd_context(_pipe); local
1440 struct dd_context *dctx = dd_context(_pipe); local
1464 struct dd_context *dctx = dd_context(_pipe); local
1485 struct dd_context *dctx = dd_context(_pipe); local
1518 struct dd_context *dctx = dd_context(_pipe); local
1544 struct dd_context *dctx = dd_context(_pipe); local
1571 struct dd_context *dctx = dd_context(_pipe); local
1600 struct dd_context *dctx = dd_context(_pipe); local
    [all...]
dd_pipe.h 271 struct dd_context *dctx; member in struct:dd_draw_record
329 dd_init_draw_functions(struct dd_context *dctx);
332 dd_thread_join(struct dd_context *dctx);
369 dctx->base._member = dctx->pipe->_member ? dd_context_##_member : NULL
  /external/curl/src/
tool_metalink.c 600 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/lz4/tests/
frametest.c 183 LZ4F_decompressionContext_t dCtx = NULL;
211 CHECK ( LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION) );
216 CHECK( LZ4F_getFrameInfo(dCtx, &frame_info, compressedBuffer, &avail_in) );
220 CHECK( LZ4F_freeDecompressionContext(dCtx) );
221 dCtx = NULL;
242 CHECK( LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION) );
245 CHECK( LZ4F_decompress(dCtx, decodedBuffer, &decodedBufferSize, compressedBuffer, &compressedBufferSize, NULL) );
259 CHECK_V(decResult, LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL));
269 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL);
283 CHECK( LZ4F_decompress(dCtx, NULL, &oSize, ip, &iSize, NULL) )
440 LZ4F_decompressionContext_t dctx; local
544 { LZ4F_dctx* dctx; local
601 { LZ4F_dctx* dctx; local
637 { LZ4F_dctx* dctx; local
    [all...]
  /external/lz4/lib/
lz4frame.c 1021 LZ4F_dctx* const dctx = (LZ4F_dctx*)ALLOC_AND_ZERO(sizeof(LZ4F_dctx)); local
    [all...]
  /external/u-boot/tools/
mxsimage.c 538 static int sb_grow_dcd(struct sb_dcd_ctx *dctx, unsigned int inc_size)
545 dctx->size += inc_size;
546 tmp = realloc(dctx->payload, dctx->size);
550 dctx->payload = tmp;
553 dctx->payload[0] = htonl((SB_HAB_DCD_TAG << 24) |
554 (dctx->size << 8) |
562 struct sb_dcd_ctx *dctx; local
568 dctx = calloc(1, sizeof(*dctx));
624 struct sb_dcd_ctx *dctx = ictx->dcd_tail; local
949 struct sb_dcd_ctx *dctx = ictx->dcd_head; local
2138 struct sb_dcd_ctx *dctx = ictx->dcd_head, *d_head; local
    [all...]
  /external/virglrenderer/src/
vrend_decode.c 1229 struct vrend_decode_ctx *dctx; local
    [all...]

Completed in 277 milliseconds