Searched refs:cctx (Results 1 - 25 of 32) sorted by relevance

12

/linux-master/lib/zstd/
H A Dzstd_compress_module.c27 static size_t zstd_cctx_init(zstd_cctx *cctx, const zstd_parameters *parameters, argument
31 cctx, ZSTD_reset_session_and_parameters));
33 cctx, pledged_src_size));
35 cctx, ZSTD_c_windowLog, parameters->cParams.windowLog));
37 cctx, ZSTD_c_hashLog, parameters->cParams.hashLog));
39 cctx, ZSTD_c_chainLog, parameters->cParams.chainLog));
41 cctx, ZSTD_c_searchLog, parameters->cParams.searchLog));
43 cctx, ZSTD_c_minMatch, parameters->cParams.minMatch));
45 cctx, ZSTD_c_targetLength, parameters->cParams.targetLength));
47 cctx, ZSTD_c_strateg
96 zstd_compress_cctx(zstd_cctx *cctx, void *dst, size_t dst_capacity, const void *src, size_t src_size, const zstd_parameters *parameters) argument
[all...]
/linux-master/lib/zstd/compress/
H A Dzstd_compress.c94 static void ZSTD_initCCtx(ZSTD_CCtx* cctx, ZSTD_customMem memManager) argument
96 assert(cctx != NULL);
97 ZSTD_memset(cctx, 0, sizeof(*cctx));
98 cctx->customMem = memManager;
99 cctx->bmi2 = ZSTD_cpuSupportsBmi2();
100 { size_t const err = ZSTD_CCtx_reset(cctx, ZSTD_reset_parameters);
111 { ZSTD_CCtx* const cctx = (ZSTD_CCtx*)ZSTD_customMalloc(sizeof(ZSTD_CCtx), customMem); local
112 if (!cctx) return NULL;
113 ZSTD_initCCtx(cctx, customMe
121 ZSTD_CCtx* cctx; local
145 ZSTD_clearAllDicts(ZSTD_CCtx* cctx) argument
161 ZSTD_freeCCtxContent(ZSTD_CCtx* cctx) argument
169 ZSTD_freeCCtx(ZSTD_CCtx* cctx) argument
185 ZSTD_sizeof_mtctx(const ZSTD_CCtx* cctx) argument
192 ZSTD_sizeof_CCtx(const ZSTD_CCtx* cctx) argument
621 ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value) argument
873 ZSTD_CCtx_getParameter(ZSTD_CCtx const* cctx, ZSTD_cParameter param, int* value) argument
995 ZSTD_CCtx_setParametersUsingCCtxParams( ZSTD_CCtx* cctx, const ZSTD_CCtx_params* params) argument
1009 ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize) argument
1031 ZSTD_initLocalDict(ZSTD_CCtx* cctx) argument
1062 ZSTD_CCtx_loadDictionary_advanced( ZSTD_CCtx* cctx, const void* dict, size_t dictSize, ZSTD_dictLoadMethod_e dictLoadMethod, ZSTD_dictContentType_e dictContentType) argument
1089 ZSTD_CCtx_loadDictionary_byReference( ZSTD_CCtx* cctx, const void* dict, size_t dictSize) argument
1096 ZSTD_CCtx_loadDictionary(ZSTD_CCtx* cctx, const void* dict, size_t dictSize) argument
1103 ZSTD_CCtx_refCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict) argument
1113 ZSTD_CCtx_refThreadPool(ZSTD_CCtx* cctx, ZSTD_threadPool* pool) argument
1121 ZSTD_CCtx_refPrefix(ZSTD_CCtx* cctx, const void* prefix, size_t prefixSize) argument
1126 ZSTD_CCtx_refPrefix_advanced( ZSTD_CCtx* cctx, const void* prefix, size_t prefixSize, ZSTD_dictContentType_e dictContentType) argument
1142 ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset) argument
1549 ZSTD_getFrameProgression(const ZSTD_CCtx* cctx) argument
1568 ZSTD_toFlushNow(ZSTD_CCtx* cctx) argument
1923 ZSTD_invalidateRepCodes(ZSTD_CCtx* cctx) argument
1962 ZSTD_resetCCtx_byAttachingCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict, ZSTD_CCtx_params params, U64 pledgedSrcSize, ZSTD_buffered_policy_e zbuff) argument
2022 ZSTD_resetCCtx_byCopyingCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict, ZSTD_CCtx_params params, U64 pledgedSrcSize, ZSTD_buffered_policy_e zbuff) argument
2104 ZSTD_resetCCtx_usingCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict, const ZSTD_CCtx_params* params, U64 pledgedSrcSize, ZSTD_buffered_policy_e zbuff) argument
3841 ZSTD_compress_frameChunk(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize, U32 lastFrameChunk) argument
4004 ZSTD_referenceExternalSequences(ZSTD_CCtx* cctx, rawSeq* seq, size_t nbSeq) argument
4020 ZSTD_compressContinue_internal(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize, U32 frame, U32 lastFrameChunk) argument
4081 ZSTD_compressContinue(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize) argument
4090 ZSTD_getBlockSize(const ZSTD_CCtx* cctx) argument
4097 ZSTD_compressBlock(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize) argument
4398 ZSTD_compressBegin_internal(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, ZSTD_dictContentType_e dictContentType, ZSTD_dictTableLoadMethod_e dtlm, const ZSTD_CDict* cdict, const ZSTD_CCtx_params* params, U64 pledgedSrcSize, ZSTD_buffered_policy_e zbuff) argument
4442 ZSTD_compressBegin_advanced_internal(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, ZSTD_dictContentType_e dictContentType, ZSTD_dictTableLoadMethod_e dtlm, const ZSTD_CDict* cdict, const ZSTD_CCtx_params* params, unsigned long long pledgedSrcSize) argument
4462 ZSTD_compressBegin_advanced(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, ZSTD_parameters params, unsigned long long pledgedSrcSize) argument
4474 ZSTD_compressBegin_usingDict(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, int compressionLevel) argument
4486 ZSTD_compressBegin(ZSTD_CCtx* cctx, int compressionLevel) argument
4495 ZSTD_writeEpilogue(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity) argument
4534 ZSTD_CCtx_trace(ZSTD_CCtx* cctx, size_t extraCSize) argument
4540 ZSTD_compressEnd(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize) argument
4566 ZSTD_compress_advanced(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize, const void* dict,size_t dictSize, ZSTD_parameters params) argument
4583 ZSTD_compress_advanced_internal( ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize, const void* dict,size_t dictSize, const ZSTD_CCtx_params* params) argument
4597 ZSTD_compress_usingDict(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize, const void* dict, size_t dictSize, int compressionLevel) argument
4612 ZSTD_compressCCtx(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize, int compressionLevel) argument
4627 ZSTD_CCtx* cctx = ZSTD_createCCtx(); local
4938 ZSTD_compressBegin_usingCDict_internal( ZSTD_CCtx* const cctx, const ZSTD_CDict* const cdict, ZSTD_frameParameters const fParams, unsigned long long const pledgedSrcSize) argument
4979 ZSTD_compressBegin_usingCDict_advanced( ZSTD_CCtx* const cctx, const ZSTD_CDict* const cdict, ZSTD_frameParameters const fParams, unsigned long long const pledgedSrcSize) argument
4988 ZSTD_compressBegin_usingCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict) argument
4997 ZSTD_compress_usingCDict_internal(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize, const ZSTD_CDict* cdict, ZSTD_frameParameters fParams) argument
5009 ZSTD_compress_usingCDict_advanced(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize, const ZSTD_CDict* cdict, ZSTD_frameParameters fParams) argument
5022 ZSTD_compress_usingCDict(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize, const ZSTD_CDict* cdict) argument
5198 ZSTD_nextInputSizeHint(const ZSTD_CCtx* cctx) argument
5376 ZSTD_nextInputSizeHint_MTorST(const ZSTD_CCtx* cctx) argument
5391 ZSTD_setBufferExpectations(ZSTD_CCtx* cctx, ZSTD_outBuffer const* output, ZSTD_inBuffer const* input) argument
5404 ZSTD_checkBufferStability(ZSTD_CCtx const* cctx, ZSTD_outBuffer const* output, ZSTD_inBuffer const* input, ZSTD_EndDirective endOp) argument
5424 ZSTD_CCtx_init_compressStream2(ZSTD_CCtx* cctx, ZSTD_EndDirective endOp, size_t inSize) argument
5480 ZSTD_compressStream2( ZSTD_CCtx* cctx, ZSTD_outBuffer* output, ZSTD_inBuffer* input, ZSTD_EndDirective endOp) argument
5507 ZSTD_compressStream2_simpleArgs( ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, size_t* dstPos, const void* src, size_t srcSize, size_t* srcPos, ZSTD_EndDirective endOp) argument
5522 ZSTD_compress2(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize) argument
5599 ZSTD_copySequencesToSeqStoreExplicitBlockDelim(ZSTD_CCtx* cctx, ZSTD_sequencePosition* seqPos, const ZSTD_Sequence* const inSeqs, size_t inSeqsSize, const void* src, size_t blockSize) argument
5662 ZSTD_copySequencesToSeqStoreNoBlockDelim(ZSTD_CCtx* cctx, ZSTD_sequencePosition* seqPos, const ZSTD_Sequence* const inSeqs, size_t inSeqsSize, const void* src, size_t blockSize) argument
5802 ZSTD_compressSequences_internal(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const ZSTD_Sequence* inSeqs, size_t inSeqsSize, const void* src, size_t srcSize) argument
5914 ZSTD_compressSequences(ZSTD_CCtx* const cctx, void* dst, size_t dstCapacity, const ZSTD_Sequence* inSeqs, size_t inSeqsSize, const void* src, size_t srcSize) argument
[all...]
H A Dzstd_compress_internal.h158 /* All tables are allocated inside cctx->workspace by ZSTD_resetCCtx_internal() */
1028 * 2. (ip+ZSTD_CHUNKSIZE_MAX - cctx->base) doesn't overflow:
1032 * ip+ZSTD_CHUNKSIZE_MAX - cctx->base < 1<<32.
1033 * 3. (cctx->lowLimit + 1<<windowLog) < 1<<32:
1353 size_t ZSTD_compressBegin_advanced_internal(ZSTD_CCtx* cctx,
1363 size_t ZSTD_compress_advanced_internal(ZSTD_CCtx* cctx,
1388 size_t ZSTD_referenceExternalSequences(ZSTD_CCtx* cctx, rawSeq* seq, size_t nbSeq);
1397 void ZSTD_CCtx_trace(ZSTD_CCtx* cctx, size_t extraCSize);
/linux-master/drivers/misc/
H A Dfastrpc.c252 struct fastrpc_channel_ctx *cctx; member in struct:fastrpc_invoke_ctx
286 struct fastrpc_channel_ctx *cctx; member in struct:fastrpc_device
297 struct fastrpc_channel_ctx *cctx; member in struct:fastrpc_user
319 int vmid = map->fl->cctx->vmperms[0].vmid;
455 struct device *rdev = &fl->cctx->rpdev->dev;
462 struct fastrpc_channel_ctx *cctx; local
464 cctx = container_of(ref, struct fastrpc_channel_ctx, refcount);
466 kfree(cctx);
469 static void fastrpc_channel_ctx_get(struct fastrpc_channel_ctx *cctx) argument
471 kref_get(&cctx
474 fastrpc_channel_ctx_put(struct fastrpc_channel_ctx *cctx) argument
482 struct fastrpc_channel_ctx *cctx; local
577 struct fastrpc_channel_ctx *cctx = user->cctx; local
1108 struct fastrpc_channel_ctx *cctx; local
1469 fastrpc_session_alloc( struct fastrpc_channel_ctx *cctx) argument
1489 fastrpc_session_free(struct fastrpc_channel_ctx *cctx, struct fastrpc_session_ctx *session) argument
1518 struct fastrpc_channel_ctx *cctx = fl->cctx; local
1558 struct fastrpc_channel_ctx *cctx; local
1714 struct fastrpc_channel_ctx *cctx = fl->cctx; local
2141 struct fastrpc_channel_ctx *cctx; local
2191 struct fastrpc_channel_ctx *cctx = dev_get_drvdata(pdev->dev.parent); local
2221 fastrpc_device_register(struct device *dev, struct fastrpc_channel_ctx *cctx, bool is_secured, const char *domain) argument
2372 struct fastrpc_channel_ctx *cctx = dev_get_drvdata(&rpdev->dev); local
2404 struct fastrpc_channel_ctx *cctx = dev_get_drvdata(&rpdev->dev); local
[all...]
/linux-master/drivers/infiniband/hw/bnxt_re/
H A Dqplib_res.h301 struct bnxt_qplib_chip_ctx *cctx; member in struct:bnxt_qplib_res
317 static inline bool bnxt_qplib_is_chip_gen_p7(struct bnxt_qplib_chip_ctx *cctx) argument
319 return (cctx->chip_num == CHIP_NUM_58818 ||
320 cctx->chip_num == CHIP_NUM_57608);
323 static inline bool bnxt_qplib_is_chip_gen_p5(struct bnxt_qplib_chip_ctx *cctx) argument
325 return (cctx->chip_num == CHIP_NUM_57508 ||
326 cctx->chip_num == CHIP_NUM_57504 ||
327 cctx->chip_num == CHIP_NUM_57502);
330 static inline bool bnxt_qplib_is_chip_gen_p5_p7(struct bnxt_qplib_chip_ctx *cctx) argument
332 return bnxt_qplib_is_chip_gen_p5(cctx) || bnxt_qplib_is_chip_gen_p
341 bnxt_qplib_get_ring_type(struct bnxt_qplib_chip_ctx *cctx) argument
529 bnxt_qplib_ring_nq_db(struct bnxt_qplib_db_info *info, struct bnxt_qplib_chip_ctx *cctx, bool arm) argument
557 bnxt_qplib_dbr_pacing_en(struct bnxt_qplib_chip_ctx *cctx) argument
[all...]
H A Dmain.c93 struct bnxt_qplib_chip_ctx *cctx; local
103 cctx = rdev->chip_ctx;
111 if (bnxt_qplib_is_chip_gen_p7(cctx)) {
126 if (cctx->modes.db_push && l2db_len && en_dev->l2_db_size != barlen) {
134 struct bnxt_qplib_chip_ctx *cctx; local
136 cctx = rdev->chip_ctx;
137 cctx->modes.wqe_mode = bnxt_qplib_is_chip_gen_p5_p7(rdev->chip_ctx) ?
143 cctx->modes.toggle_bits |= BNXT_QPLIB_CQ_TOGGLE_BIT;
155 rdev->qplib_res.cctx = NULL;
178 rdev->qplib_res.cctx
424 struct bnxt_qplib_chip_ctx *cctx; local
450 struct bnxt_qplib_chip_ctx *cctx; local
1490 struct bnxt_qplib_chip_ctx *cctx; local
[all...]
H A Dqplib_rcfw.c784 rcfw->res->cctx, true);
855 if (bnxt_qplib_is_chip_gen_p5_p7(rcfw->res->cctx))
982 rcfw->max_timeout = res->cctx->hwrm_cmd_max_timeout;
1002 bnxt_qplib_ring_nq_db(&creq->creq_db.dbinfo, rcfw->res->cctx, false);
1066 bnxt_qplib_ring_nq_db(&creq->creq_db.dbinfo, res->cctx, true);
H A Dqplib_res.c59 struct bnxt_qplib_chip_ctx *cctx,
556 rc = bnxt_qplib_alloc_stats_ctx(res->pdev, res->cctx, &ctx->stats);
808 if (!bnxt_qplib_is_chip_gen_p5_p7(res->cctx)) {
856 struct bnxt_qplib_chip_ctx *cctx,
861 stats->size = cctx->hw_stats_size;
855 bnxt_qplib_alloc_stats_ctx(struct pci_dev *pdev, struct bnxt_qplib_chip_ctx *cctx, struct bnxt_qplib_stats *stats) argument
H A Dqplib_sp.c62 if (!bnxt_qplib_is_chip_gen_p5_p7(rcfw->res->cctx))
136 attr->max_qp_sges = bnxt_qplib_is_chip_gen_p5_p7(rcfw->res->cctx) ?
154 if (!bnxt_qplib_is_chip_gen_p7(rcfw->res->cctx))
171 if (rcfw->res->cctx->hwrm_intf_ver >= HWRM_VERSION_DEV_ATTR_MAX_DPI)
938 if (bnxt_qplib_is_chip_gen_p5_p7(res->cctx)) {
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/fifo/
H A Duchan.c70 struct nvkm_cctx *cctx; member in struct:nvkm_uobj
79 struct nvkm_cctx *cctx = uobj->cctx; local
80 struct nvkm_ectx *ectx = cctx->vctx->ectx;
86 if (refcount_dec_and_mutex_lock(&cctx->uses, &chan->cgrp->mutex)) {
102 struct nvkm_cctx *cctx = uobj->cctx; local
103 struct nvkm_ectx *ectx = cctx->vctx->ectx;
110 if (!refcount_inc_not_zero(&cctx->uses)) {
112 if (!refcount_inc_not_zero(&cctx
[all...]
H A Dchan.c41 nvkm_chan_cctx_bind(struct nvkm_chan *chan, struct nvkm_engn *engn, struct nvkm_cctx *cctx) argument
50 CHAN_TRACE(chan, "%sbind cctx %d[%s]", cctx ? "" : "un", engn->id, engine->subdev.name);
62 engn->func->bind(engn, cctx, chan);
74 struct nvkm_cctx *cctx = *pcctx; local
76 if (cctx) {
77 struct nvkm_engn *engn = cctx->vctx->ectx->engn;
79 if (refcount_dec_and_mutex_lock(&cctx->refs, &chan->cgrp->mutex)) {
80 CHAN_TRACE(chan, "dtor cctx %d[%s]", engn->id, engn->engine->subdev.name);
81 nvkm_cgrp_vctx_put(chan->cgrp, &cctx
97 struct nvkm_cctx *cctx; local
[all...]
H A Dgv100.c92 gv100_ectx_bind(struct nvkm_engn *engn, struct nvkm_cctx *cctx, struct nvkm_chan *chan) argument
96 if (cctx) {
97 addr = cctx->vctx->vma->addr;
104 nvkm_mo32(chan->inst, 0x0ac, 0x00010000, cctx ? 0x00010000 : 0x00000000);
117 gv100_ectx_ce_bind(struct nvkm_engn *engn, struct nvkm_cctx *cctx, struct nvkm_chan *chan) argument
119 const u64 bar2 = cctx ? nvkm_memory_bar2(cctx->vctx->inst->memory) : 0ULL;
124 nvkm_mo32(chan->inst, 0x0ac, 0x00020000, cctx ? 0x00020000 : 0x00000000);
H A Dg84.c106 g84_ectx_bind(struct nvkm_engn *engn, struct nvkm_cctx *cctx, struct nvkm_chan *chan) argument
129 if (!cctx) {
139 start = cctx->vctx->inst->addr;
140 limit = start + cctx->vctx->inst->size - 1;
H A Dnv40.c125 nv40_ectx_bind(struct nvkm_engn *engn, struct nvkm_cctx *cctx, struct nvkm_chan *chan) argument
149 if (cctx)
150 inst = cctx->vctx->inst->addr >> 4;
H A Dnv50.c150 nv50_ectx_bind(struct nvkm_engn *engn, struct nvkm_cctx *cctx, struct nvkm_chan *chan) argument
165 if (!cctx) {
189 start = cctx->vctx->inst->addr;
190 limit = start + cctx->vctx->inst->size - 1;
H A Dgk104.c134 gk104_ectx_bind(struct nvkm_engn *engn, struct nvkm_cctx *cctx, struct nvkm_chan *chan) argument
162 if (cctx) {
163 addr = cctx->vctx->vma->addr;
/linux-master/include/linux/
H A Dzstd_lib.h195 ZSTDLIB_API size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx); /* accept NULL pointer */
205 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx,
462 ZSTDLIB_API size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value);
479 ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize);
501 ZSTDLIB_API size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset);
506 * Should cctx hold data from a previously unfinished frame, everything about it is forgotten.
513 ZSTDLIB_API size_t ZSTD_compress2( ZSTD_CCtx* cctx,
704 ZSTDLIB_API size_t ZSTD_compressStream2( ZSTD_CCtx* cctx,
862 ZSTDLIB_API size_t ZSTD_compress_usingCDict(ZSTD_CCtx* cctx,
951 ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary(ZSTD_CCtx* cctx, cons
[all...]
H A Dzstd.h169 * @cctx: The context. Must have been initialized with zstd_init_cctx().
180 size_t zstd_compress_cctx(zstd_cctx *cctx, void *dst, size_t dst_capacity,
/linux-master/crypto/
H A Dzstd.c21 zstd_cctx *cctx; member in struct:zstd_ctx
44 ctx->cctx = zstd_init_cctx(ctx->cwksp, wksp_size);
45 if (!ctx->cctx) {
83 ctx->cctx = NULL;
157 out_len = zstd_compress_cctx(zctx->cctx, dst, *dlen, src, slen, &params);
H A Dcamellia_generic.c963 struct camellia_ctx *cctx = crypto_tfm_ctx(tfm); local
969 cctx->key_length = key_len;
973 camellia_setup128(key, cctx->key_table);
976 camellia_setup192(key, cctx->key_table);
979 camellia_setup256(key, cctx->key_table);
988 const struct camellia_ctx *cctx = crypto_tfm_ctx(tfm); local
998 if (cctx->key_length == 16)
1003 camellia_do_encrypt(cctx->key_table, tmp, max);
1014 const struct camellia_ctx *cctx = crypto_tfm_ctx(tfm); local
1024 if (cctx
[all...]
/linux-master/drivers/pinctrl/intel/
H A Dpinctrl-cherryview.c756 struct intel_community_context *cctx = &pctrl->context.communities[0]; local
760 for (i = 0; i < ARRAY_SIZE(cctx->intr_lines); i++) {
761 if (cctx->intr_lines[i] == offset) {
762 cctx->intr_lines[i] = CHV_INVALID_HWIRQ;
1248 struct intel_community_context *cctx = &pctrl->context.communities[0]; local
1263 if (cctx->intr_lines[intsel] == CHV_INVALID_HWIRQ) {
1267 cctx->intr_lines[intsel] = hwirq;
1278 struct intel_community_context *cctx = &pctrl->context.communities[0]; local
1286 if (cctx->intr_lines[intsel] == pin)
1289 if (cctx
1401 struct intel_community_context *cctx = &pctrl->context.communities[0]; local
1614 struct intel_community_context *cctx; local
1709 struct intel_community_context *cctx = &pctrl->context.communities[0]; local
1736 struct intel_community_context *cctx = &pctrl->context.communities[0]; local
[all...]
/linux-master/arch/x86/crypto/
H A Dcamellia.h22 extern int __camellia_setkey(struct camellia_ctx *cctx,
/linux-master/net/tls/
H A Dtls_main.c444 struct cipher_context *cctx; local
463 cctx = &ctx->tx;
466 cctx = &ctx->rx;
487 cctx->iv + cipher_desc->salt, cipher_desc->iv);
489 cctx->rec_seq, cipher_desc->rec_seq);
/linux-master/lib/zstd/common/
H A Dzstd_internal.h412 void ZSTD_invalidateRepCodes(ZSTD_CCtx* cctx); /* zstdmt, adaptive_compression (shouldn't get this definition from here) */
/linux-master/arch/sparc/mm/
H A Dsrmmu.c595 int cctx, ctx1;
599 cctx = srmmu_get_context();
601 if (cctx != ctx1) {
602 printk("flush ctx %02x curr %02x\n", ctx1, cctx);
607 srmmu_set_context(cctx);

Completed in 253 milliseconds

12