Home
last modified time | relevance | path

Searched refs:ctx (Results 4526 - 4550 of 7106) sorted by relevance

1...<<181182183184185186187188189190>>...285

/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dgas_query_ap.h35 void (*cb)(void *ctx, const u8 *dst, u8 dialog_token,
39 void *ctx);
H A Dx_snoop.h19 void (*handler)(void *ctx, const u8 *src_addr,
36 void (*handler)(void *ctx, const u8 *src_addr, in x_snoop_get_l2_packet()
35 x_snoop_get_l2_packet(struct hostapd_data *hapd, void (*handler)(void *ctx, const u8 *src_addr, const u8 *buf, size_t len), enum l2_packet_filter_type type) x_snoop_get_l2_packet() argument
/third_party/ffmpeg/libavfilter/
H A Dvf_paletteuse.c140 static int query_formats(AVFilterContext *ctx) in query_formats() argument
147 &ctx->inputs[0]->outcfg.formats)) < 0 || in query_formats()
149 &ctx->inputs[1]->outcfg.formats)) < 0 || in query_formats()
151 &ctx->outputs[0]->incfg.formats)) < 0) in query_formats()
930 AVFilterContext *ctx = inlink->dst; in apply_palette() local
931 PaletteUseContext *s = ctx->priv; in apply_palette()
953 ff_dlog(ctx, "%dx%d rect: (%d;%d) -> (%d,%d) [area:%dx%d]\n", in apply_palette()
972 AVFilterContext *ctx = outlink->src; in config_output() local
973 PaletteUseContext *s = ctx->priv; in config_output()
975 ret = ff_framesync_init_dualinput(&s->fs, ctx); in config_output()
993 AVFilterContext *ctx = inlink->dst; config_input_palette() local
1042 AVFilterContext *ctx = fs->parent; load_apply_palette() local
1108 init(AVFilterContext *ctx) init() argument
1130 activate(AVFilterContext *ctx) activate() argument
1136 uninit(AVFilterContext *ctx) uninit() argument
[all...]
H A Dqsvvpp.c365 AVFilterContext *ctx = inlink->dst; in submit_frame() local
381 av_log(ctx, AV_LOG_ERROR, "QSVVPP gets a wrong frame.\n"); in submit_frame()
409 av_log(ctx, AV_LOG_ERROR, "Unsupported frame.\n"); in submit_frame()
435 AVFilterContext *ctx = outlink->src; in query_frame() local
454 av_log(ctx, AV_LOG_ERROR, "Can't allocate a surface.\n"); in query_frame()
795 AVFilterContext *ctx = inlink->dst; in ff_qsvvpp_filter_frame() local
796 AVFilterLink *outlink = ctx->outputs[0]; in ff_qsvvpp_filter_frame()
804 av_log(ctx, AV_LOG_WARNING, "Sync failed.\n"); in ff_qsvvpp_filter_frame()
821 av_log(ctx, AV_LOG_ERROR, "Failed to submit frame on input[%d]\n", in ff_qsvvpp_filter_frame()
829 av_log(ctx, AV_LOG_ERRO in ff_qsvvpp_filter_frame()
[all...]
H A Dvf_tinterlace.c198 static av_cold void uninit(AVFilterContext *ctx) in uninit() argument
200 TInterlaceContext *tinterlace = ctx->priv; in uninit()
209 AVFilterContext *ctx = outlink->src; in config_out_props() local
212 TInterlaceContext *tinterlace = ctx->priv; in config_out_props()
241 av_log(ctx, AV_LOG_WARNING, "low_pass_filter flags ignored with mode %d\n", in config_out_props()
285 av_log(ctx, AV_LOG_VERBOSE, "mode:%d filter:%s h:%d -> h:%d\n", tinterlace->mode, in config_out_props()
359 AVFilterContext *ctx = inlink->dst; in filter_frame() local
360 AVFilterLink *outlink = ctx->outputs[0]; in filter_frame()
361 TInterlaceContext *tinterlace = ctx->priv; in filter_frame()
438 av_log(ctx, AV_LOG_WARNIN in filter_frame()
518 init_interlace(AVFilterContext *ctx) init_interlace() argument
[all...]
H A Dvf_xbr.c43 typedef int (*xbrfunc_t)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs);
321 static int xbr##size##x(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) \
334 AVFilterContext *ctx = outlink->src; in config_output() local
335 XBRContext *s = ctx->priv; in config_output()
336 AVFilterLink *inlink = ctx->inputs[0]; in config_output()
345 AVFilterContext *ctx = inlink->dst; in filter_frame() local
346 AVFilterLink *outlink = ctx->outputs[0]; in filter_frame()
347 XBRContext *s = ctx->priv; in filter_frame()
361 ff_filter_execute(ctx, s->func, &td, NULL, in filter_frame()
362 FFMIN(inlink->h, ff_filter_get_nb_threads(ctx))); in filter_frame()
371 init(AVFilterContext *ctx) init() argument
[all...]
H A Dvf_deblock.c262 AVFilterContext *ctx = outlink->src; in config_output() local
263 DeblockContext *s = ctx->priv; in config_output()
264 AVFilterLink *inlink = ctx->inputs[0]; in config_output()
304 AVFilterContext *ctx = inlink->dst; in filter_frame() local
305 AVFilterLink *outlink = ctx->outputs[0]; in filter_frame()
306 DeblockContext *s = ctx->priv; in filter_frame()
369 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, in process_command() argument
374 ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags); in process_command()
378 return config_output(ctx->outputs[0]); in process_command()
H A Dvf_blackframe.c61 AVFilterContext *ctx = inlink->dst; in filter_frame() local
62 BlackFrameContext *s = ctx->priv; in filter_frame()
82 av_log(ctx, AV_LOG_INFO, "frame:%u pblack:%u pts:%"PRId64" t:%f " in filter_frame()
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Decp_nistz256.c620 size_t num, BN_CTX *ctx) in ecp_nistz256_windowed_mul()
654 if ((mod = BN_CTX_get(ctx)) == NULL) in ecp_nistz256_windowed_mul()
656 if (!BN_nnmod(mod, scalar[i], group->order, ctx)) { in ecp_nistz256_windowed_mul()
813 __owur static int ecp_nistz256_mult_precompute(EC_GROUP *group, BN_CTX *ctx) in ecp_nistz256_mult_precompute() argument
851 if (ctx == NULL) { in ecp_nistz256_mult_precompute()
852 ctx = new_ctx = BN_CTX_new_ex(group->libctx); in ecp_nistz256_mult_precompute()
853 if (ctx == NULL) in ecp_nistz256_mult_precompute()
857 BN_CTX_start(ctx); in ecp_nistz256_mult_precompute()
900 || !group->meth->make_affine(group, P, ctx)) in ecp_nistz256_mult_precompute()
909 if (!EC_POINT_dbl(group, P, P, ctx)) in ecp_nistz256_mult_precompute()
616 ecp_nistz256_windowed_mul(const EC_GROUP *group, P256_POINT *r, const BIGNUM **scalar, const EC_POINT **point, size_t num, BN_CTX *ctx) ecp_nistz256_windowed_mul() argument
937 ecp_nistz256_set_from_affine(EC_POINT *out, const EC_GROUP *group, const P256_POINT_AFFINE *in, BN_CTX *ctx) ecp_nistz256_set_from_affine() argument
952 ecp_nistz256_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) ecp_nistz256_points_mul() argument
1176 ecp_nistz256_get_affine(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) ecp_nistz256_get_affine() argument
1301 ecp_nistz256_inv_mod_ord(const EC_GROUP *group, BIGNUM *r, const BIGNUM *x, BN_CTX *ctx) ecp_nistz256_inv_mod_ord() argument
[all...]
/third_party/openssl/crypto/ec/
H A Decp_nistz256.c620 size_t num, BN_CTX *ctx) in ecp_nistz256_windowed_mul()
654 if ((mod = BN_CTX_get(ctx)) == NULL) in ecp_nistz256_windowed_mul()
656 if (!BN_nnmod(mod, scalar[i], group->order, ctx)) { in ecp_nistz256_windowed_mul()
813 __owur static int ecp_nistz256_mult_precompute(EC_GROUP *group, BN_CTX *ctx) in ecp_nistz256_mult_precompute() argument
851 if (ctx == NULL) { in ecp_nistz256_mult_precompute()
852 ctx = new_ctx = BN_CTX_new_ex(group->libctx); in ecp_nistz256_mult_precompute()
853 if (ctx == NULL) in ecp_nistz256_mult_precompute()
857 BN_CTX_start(ctx); in ecp_nistz256_mult_precompute()
900 || !group->meth->make_affine(group, P, ctx)) in ecp_nistz256_mult_precompute()
909 if (!EC_POINT_dbl(group, P, P, ctx)) in ecp_nistz256_mult_precompute()
616 ecp_nistz256_windowed_mul(const EC_GROUP *group, P256_POINT *r, const BIGNUM **scalar, const EC_POINT **point, size_t num, BN_CTX *ctx) ecp_nistz256_windowed_mul() argument
937 ecp_nistz256_set_from_affine(EC_POINT *out, const EC_GROUP *group, const P256_POINT_AFFINE *in, BN_CTX *ctx) ecp_nistz256_set_from_affine() argument
952 ecp_nistz256_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) ecp_nistz256_points_mul() argument
1176 ecp_nistz256_get_affine(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) ecp_nistz256_get_affine() argument
1301 ecp_nistz256_inv_mod_ord(const EC_GROUP *group, BIGNUM *r, const BIGNUM *x, BN_CTX *ctx) ecp_nistz256_inv_mod_ord() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dqsv.c263 int ff_qsv_find_surface_idx(QSVFramesContext *ctx, QSVFrame *frame) in ff_qsv_find_surface_idx() argument
266 for (i = 0; i < ctx->nb_mids; i++) { in ff_qsv_find_surface_idx()
267 QSVMid *mid = &ctx->mids[i]; in ff_qsv_find_surface_idx()
550 QSVFramesContext *ctx = pthis; in qsv_frame_alloc() local
562 AVHWFramesContext *frames_ctx = (AVHWFramesContext*)ctx->hw_frames_ctx->data; in qsv_frame_alloc()
569 av_log(ctx->logctx, AV_LOG_ERROR, "Mismatching surface properties in an " in qsv_frame_alloc()
576 ret = qsv_setup_mids(resp, ctx->hw_frames_ctx, ctx->mids_buf); in qsv_frame_alloc()
578 av_log(ctx->logctx, AV_LOG_ERROR, in qsv_frame_alloc()
584 AVHWFramesContext *ext_frames_ctx = (AVHWFramesContext*)ctx in qsv_frame_alloc()
[all...]
H A Ddirac_arith.h133 static inline int dirac_get_arith_bit(DiracArith *c, int ctx) in dirac_get_arith_bit() argument
135 int prob_zero = c->contexts[ctx]; in dirac_get_arith_bit()
165 c->contexts[ctx] += ff_dirac_prob_branchless[prob_zero>>8][bit]; in dirac_get_arith_bit()
H A Dvdpau_mpeg4.c35 Mpeg4DecContext *ctx = avctx->priv_data; in vdpau_mpeg4_start_frame() local
36 MpegEncContext * const s = &ctx->m; in vdpau_mpeg4_start_frame()
68 info->resync_marker_disable = !ctx->resync_marker; in vdpau_mpeg4_start_frame()
/third_party/jinja2/
H A Dnodes.py92 def get_eval_context(node: "Node", ctx: t.Optional[EvalContext]) -> EvalContext:
93 if ctx is None:
100 return ctx
204 def set_ctx(self, ctx: str) -> "Node":
213 if "ctx" in node.fields:
214 node.ctx = ctx # type: ignore
539 The `ctx` of the node can be one of the following values:
546 fields = ("name", "ctx")
548 ctx
[all...]
/third_party/mesa3d/src/gallium/drivers/v3d/
H A Dv3d_blit.c73 v3d_render_blit(struct pipe_context *ctx, struct pipe_blit_info *info) in v3d_render_blit() argument
75 struct v3d_context *v3d = v3d_context(ctx); in v3d_render_blit()
102 tiled = ctx->screen->resource_create(ctx->screen, &tmpl); in v3d_render_blit()
107 ctx->resource_copy_region(ctx, in v3d_render_blit()
134 v3d_stencil_blit(struct pipe_context *ctx, struct pipe_blit_info *info) in v3d_stencil_blit() argument
136 struct v3d_context *v3d = v3d_context(ctx); in v3d_stencil_blit()
168 ctx->create_surface(ctx, in v3d_stencil_blit()
[all...]
/third_party/python/Include/internal/
H A Dpycore_ast.h454 expr_context_ty ctx; member
460 expr_context_ty ctx; member
465 expr_context_ty ctx; member
470 expr_context_ty ctx; member
475 expr_context_ty ctx; member
480 expr_context_ty ctx; member
777 expr_ty _PyAST_Attribute(expr_ty value, identifier attr, expr_context_ty ctx,
780 expr_ty _PyAST_Subscript(expr_ty value, expr_ty slice, expr_context_ty ctx, int
783 expr_ty _PyAST_Starred(expr_ty value, expr_context_ty ctx, int lineno, int
786 expr_ty _PyAST_Name(identifier id, expr_context_ty ctx, in
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineLibraryTests.cpp2449 const auto ctx = m_context.getContextCommonData(); in iterate() local
2459 ImageWithBuffer colorBuffer (ctx.vkd, ctx.device, ctx.allocator, imageExtent, colorFormat, colorUsage, VK_IMAGE_TYPE_2D); in iterate()
2460 const auto colorView = makeImageView(ctx.vkd, ctx.device, colorBuffer.getImage(), VK_IMAGE_VIEW_TYPE_2D, colorFormat, colorSRR); in iterate()
2465 BufferWithMemory verificationBuffer (ctx.vkd, ctx.device, ctx.allocator, verificationBufferInfo, MemoryRequirement::HostVisible); in iterate()
2469 const auto pipelineLayout = makePipelineLayout(ctx in iterate()
[all...]
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_surface.c1097 nv50_blit_select_fp(struct nv50_blitctx *ctx, const struct pipe_blit_info *info) in nv50_blit_select_fp() argument
1099 struct nv50_blitter *blitter = ctx->nv50->screen->blitter; in nv50_blit_select_fp()
1105 const unsigned mode = ctx->mode; in nv50_blit_select_fp()
1111 nv50_blitter_make_fp(&ctx->nv50->base.pipe, mode, ptarg); in nv50_blit_select_fp()
1114 ctx->fp = blitter->fp[targ][mode]; in nv50_blit_select_fp()
1118 nv50_blit_set_dst(struct nv50_blitctx *ctx, in nv50_blit_set_dst() argument
1122 struct nv50_context *nv50 = ctx->nv50; in nv50_blit_set_dst()
1253 nv50_blitctx_pre_blit(struct nv50_blitctx *ctx, in nv50_blitctx_pre_blit() argument
1256 struct nv50_context *nv50 = ctx->nv50; in nv50_blitctx_pre_blit()
1260 ctx in nv50_blitctx_pre_blit()
1793 nv50_flush_resource(struct pipe_context *ctx, struct pipe_resource *resource) nv50_flush_resource() argument
[all...]
/third_party/backends/sanei/
H A Dusb_manager.cpp214 int usb_manager_init(usb_manager_context **ctx) in usb_manager_init() argument
217 if (ctx == nullptr) { in usb_manager_init()
218 SANE_HILOG_ERROR("%s: ctx is a nullptr.", __func__); in usb_manager_init()
231 *ctx = usbmanagerContext; in usb_manager_init()
236 int usb_manager_exit(usb_manager_context *ctx) in usb_manager_exit() argument
239 if (ctx == nullptr) { in usb_manager_exit()
240 SANE_HILOG_ERROR("%s: ctx is a nullptr.", __func__); in usb_manager_exit()
243 delete ctx; in usb_manager_exit()
244 ctx = nullptr; in usb_manager_exit()
255 ssize_t usb_manager_get_device_list(usb_manager_context *ctx, usb_manager_devic argument
[all...]
/third_party/cups-filters/fontembed/
H A Dembed_sfnt.c402 void *ctx; member
414 (*out)("<",1,of->ctx); in outfilter_ascii_ps()
430 (*out)(tmp,iA,of->ctx); in outfilter_ascii_ps()
435 (*out)(tmp,iA,of->ctx); in outfilter_ascii_ps()
440 (*out)("00>\n",4,of->ctx); in outfilter_ascii_ps()
454 (*out)(tmp,l,of->ctx); in outfilter_binary_ps()
457 (*out)(buf,maxlen,of->ctx); in outfilter_binary_ps()
458 (*out)("\n",1,of->ctx); in outfilter_binary_ps()
634 of.ctx=context; in emb_otf_ps()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/descriptor_indexing/
H A DvktDescriptorSetsIndexingTestsUtils.cpp199 const vkt::Context& ctx, in createImageAndBind()
239 Allocator& allocator = ctx.getDefaultAllocator(); in createImageAndBind()
240 VkDevice device = ctx.getDevice(); in createImageAndBind()
241 const DeviceInterface& dinterface = ctx.getDeviceInterface(); in createImageAndBind()
586 const vkt::Context& ctx, in createBufferAndBind()
590 const size_t nonCoherentAtomSize (static_cast<size_t>(ctx.getDeviceProperties().limits.nonCoherentAtomSize)); in createBufferAndBind()
592 Allocator& allocator (ctx.getDefaultAllocator()); in createBufferAndBind()
593 VkDevice device (ctx.getDevice()); in createBufferAndBind()
594 const DeviceInterface& interface (ctx.getDeviceInterface()); in createBufferAndBind()
198 createImageAndBind(ut::ImageHandleAllocSp& output, const vkt::Context& ctx, VkFormat colorFormat, const VkExtent3D& extent, VkImageLayout initialLayout, bool withMipMaps, VkImageType imageType) createImageAndBind() argument
585 createBufferAndBind(ut::BufferHandleAllocSp& output, const vkt::Context& ctx, VkBufferUsageFlags usage, VkDeviceSize desiredSize) createBufferAndBind() argument
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/descriptor_indexing/
H A DvktDescriptorSetsIndexingTestsUtils.cpp199 const vkt::Context& ctx, in createImageAndBind()
239 Allocator& allocator = ctx.getDefaultAllocator(); in createImageAndBind()
240 VkDevice device = ctx.getDevice(); in createImageAndBind()
241 const DeviceInterface& dinterface = ctx.getDeviceInterface(); in createImageAndBind()
586 const vkt::Context& ctx, in createBufferAndBind()
590 const size_t nonCoherentAtomSize (static_cast<size_t>(ctx.getDeviceProperties().limits.nonCoherentAtomSize)); in createBufferAndBind()
592 Allocator& allocator (ctx.getDefaultAllocator()); in createBufferAndBind()
593 VkDevice device (ctx.getDevice()); in createBufferAndBind()
594 const DeviceInterface& interface (ctx.getDeviceInterface()); in createBufferAndBind()
198 createImageAndBind(ut::ImageHandleAllocSp& output, const vkt::Context& ctx, VkFormat colorFormat, const VkExtent3D& extent, VkImageLayout initialLayout, bool withMipMaps, VkImageType imageType) createImageAndBind() argument
585 createBufferAndBind(ut::BufferHandleAllocSp& output, const vkt::Context& ctx, VkBufferUsageFlags usage, VkDeviceSize desiredSize) createBufferAndBind() argument
/third_party/vk-gl-cts/modules/gles31/stress/
H A Des31sVertexAttributeBindingTests.cpp130 BindingRenderCase (Context& ctx, const char* name, const char* desc, bool unalignedData);
148 BindingRenderCase::BindingRenderCase (Context& ctx, const char* name, const char* desc, bool unalignedData) in BindingRenderCase() argument
149 : TestCase (ctx, name, desc) in BindingRenderCase()
223 SingleBindingCase (Context& ctx, const char* name, int flags);
258 SingleBindingCase::SingleBindingCase (Context& ctx, const char* name, int flags) in SingleBindingCase() argument
259 : BindingRenderCase (ctx, name, genTestDescription(flags).c_str(), isDataUnaligned(flags)) in SingleBindingCase()
515 BindVertexBufferCase (Context& ctx, const char* name, const char* desc, int offset, int drawCount);
529 BindVertexBufferCase::BindVertexBufferCase (Context& ctx, const char* name, const char* desc, int offset, int drawCount) in BindVertexBufferCase() argument
530 : TestCase (ctx, name, desc) in BindVertexBufferCase()
/applications/standard/calendardata/calendarmanager/napi/include/
H A Dnapi_queue.h108 std::shared_ptr<ContextBase> ctx; member
117 ctx = nullptr; in ~AsyncContext()
125 static void GenerateOutput(AsyncContext &ctx, napi_value output);
/third_party/ffmpeg/libavfilter/dnn/
H A Ddnn_backend_native_layer_depth2space.c52 int32_t output_operand_index, const void *parameters, NativeContext *ctx) in ff_dnn_execute_layer_depth2space()
78 av_log(ctx, AV_LOG_ERROR, "The output data length overflow\n"); in ff_dnn_execute_layer_depth2space()
83 av_log(ctx, AV_LOG_ERROR, "Failed to reallocate memory for output\n"); in ff_dnn_execute_layer_depth2space()
51 ff_dnn_execute_layer_depth2space(DnnOperand *operands, const int32_t *input_operand_indexes, int32_t output_operand_index, const void *parameters, NativeContext *ctx) ff_dnn_execute_layer_depth2space() argument

Completed in 32 milliseconds

1...<<181182183184185186187188189190>>...285