Home
last modified time | relevance | path

Searched refs:ctx (Results 3976 - 4000 of 7318) sorted by relevance

1...<<151152153154155156157158159160>>...293

/third_party/wpa_supplicant/wpa_supplicant-2.9/src/radius/
H A Dradius_das.h52 void *ctx; member
53 enum radius_das_res (*disconnect)(void *ctx,
55 enum radius_das_res (*coa)(void *ctx, struct radius_das_attrs *attr);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/radius/
H A Dradius_das.h52 void *ctx; member
53 enum radius_das_res (*disconnect)(void *ctx,
55 enum radius_das_res (*coa)(void *ctx, struct radius_das_attrs *attr);
/third_party/mesa3d/src/compiler/glsl/
H A Dast_to_hir.cpp312 void *ctx = state; in apply_implicit_conversion() local
338 from = new(ctx) ir_expression(op, to, from, NULL); in apply_implicit_conversion()
937 void *ctx = state; in do_assignment() local
1028 *out_rvalue = needs_rvalue ? ir_rvalue::error_value(ctx) : NULL; in do_assignment()
1041 ir_variable *var = new(ctx) ir_variable(rhs->type, "assignment_tmp", in do_assignment()
1047 new(ctx) ir_dereference_variable(var); in do_assignment()
1048 instructions->push_tail(new(ctx) ir_assignment(lhs, deref_var)); in do_assignment()
1049 rvalue = new(ctx) ir_dereference_variable(var); in do_assignment()
1051 rvalue = ir_rvalue::error_value(ctx); in do_assignment()
1056 instructions->push_tail(new(ctx) ir_assignmen in do_assignment()
1066 void *ctx = ralloc_parent(lvalue); get_lvalue_copy() local
1216 void *ctx = state; get_scalar_boolean_operand() local
1295 constant_one_for_inc_dec(void *ctx, const glsl_type *type) constant_one_for_inc_dec() argument
1349 void *ctx = state; do_hir() local
4954 void *ctx = state; hir() local
5883 void *ctx = state; hir() local
6059 void *ctx = state; hir() local
6471 void *ctx = state; hir() local
6637 void *ctx = state; hir() local
6656 void *ctx = state; hir() local
6744 void *ctx = state; hir() local
6859 void *ctx = state; test_to_hir() local
7130 void *ctx = state; condition_to_hir() local
7165 void *ctx = state; hir() local
[all...]
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_soa.c144 struct function_ctx *ctx = func_ctx(mask); in lp_exec_switch() local
146 if (ctx->switch_stack_size >= LP_MAX_TGSI_NESTING || in lp_exec_switch()
147 ctx->loop_stack_size > LP_MAX_TGSI_NESTING) { in lp_exec_switch()
148 ctx->switch_stack_size++; in lp_exec_switch()
152 ctx->break_type_stack[ctx->loop_stack_size + ctx->switch_stack_size] = in lp_exec_switch()
153 ctx->break_type; in lp_exec_switch()
154 ctx->break_type = LP_EXEC_MASK_BREAK_TYPE_SWITCH; in lp_exec_switch()
156 ctx in lp_exec_switch()
176 struct function_ctx *ctx = func_ctx(mask); lp_exec_endswitch() local
228 struct function_ctx *ctx = func_ctx(mask); lp_exec_case() local
261 struct function_ctx *ctx = func_ctx(mask); default_analyse_is_last() local
306 struct function_ctx *ctx = func_ctx(mask); lp_exec_default() local
387 struct function_ctx *ctx = func_ctx(mask); lp_exec_mask_ret() local
425 struct function_ctx *ctx; lp_exec_mask_endsub() local
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_ciescope.c71 void (*filter)(AVFilterContext *ctx, const uint8_t *ptr,
142 static int query_formats(AVFilterContext *ctx) in query_formats() argument
146 if ((ret = ff_formats_ref(ff_make_format_list(in_pix_fmts), &ctx->inputs[0]->outcfg.formats)) < 0) in query_formats()
149 if ((ret = ff_formats_ref(ff_make_format_list(out_pix_fmts), &ctx->outputs[0]->incfg.formats)) < 0) in query_formats()
1229 static int draw_background(AVFilterContext *ctx) in draw_background() argument
1231 CiescopeContext *s = ctx->priv; in draw_background()
1233 AVFilterLink *outlink = ctx->outputs[0]; in draw_background()
1251 static void filter_rgb48(AVFilterContext *ctx, const uint8_t *ptr, in filter_rgb48() argument
1255 CiescopeContext *s = ctx->priv; in filter_rgb48()
1266 static void filter_rgba64(AVFilterContext *ctx, cons argument
1281 filter_rgb24(AVFilterContext *ctx, const uint8_t *ptr, ptrdiff_t linesize, float *cx, float *cy, int x, int y) filter_rgb24() argument
1296 filter_rgba(AVFilterContext *ctx, const uint8_t *ptr, ptrdiff_t linesize, float *cx, float *cy, int x, int y) filter_rgba() argument
1311 filter_xyz(AVFilterContext *ctx, const uint8_t *ptr, ptrdiff_t linesize, float *cx, float *cy, int x, int y) filter_xyz() argument
1380 AVFilterContext *ctx = inlink->dst; filter_frame() local
1481 uninit(AVFilterContext *ctx) uninit() argument
[all...]
H A Daf_acontrast.c123 AVFilterContext *ctx = inlink->dst; in config_input() local
124 AudioContrastContext *s = ctx->priv; in config_input()
138 AVFilterContext *ctx = inlink->dst; in filter_frame() local
139 AVFilterLink *outlink = ctx->outputs[0]; in filter_frame()
140 AudioContrastContext *s = ctx->priv; in filter_frame()
H A Dvf_repeatfields.c34 static av_cold void uninit(AVFilterContext *ctx) in uninit() argument
36 RepeatFieldsContext *s = ctx->priv; in uninit()
79 AVFilterContext *ctx = inlink->dst; in filter_frame() local
81 RepeatFieldsContext *s = ctx->priv; in filter_frame()
97 av_log(ctx, AV_LOG_WARNING, "Unexpected field flags: " in filter_frame()
/third_party/node/src/crypto/
H A Dcrypto_cipher.cc45 bool IsSupportedAuthenticatedMode(const EVP_CIPHER_CTX* ctx) { in IsSupportedAuthenticatedMode() argument
46 const EVP_CIPHER* cipher = EVP_CIPHER_CTX_cipher(ctx); in IsSupportedAuthenticatedMode()
102 CipherCtxPointer ctx(EVP_CIPHER_CTX_new()); in GetCipherInfo()
103 if (!EVP_CipherInit_ex(ctx.get(), cipher, nullptr, nullptr, nullptr, 1)) in GetCipherInfo()
108 if (!EVP_CIPHER_CTX_set_key_length(ctx.get(), check_len)) in GetCipherInfo()
128 ctx.get(), in GetCipherInfo()
201 SSLCtxPointer ctx(SSL_CTX_new(TLS_method())); in GetSSLCiphers()
202 if (!ctx) { in GetSSLCiphers()
206 SSLPointer ssl(SSL_new(ctx.get())); in GetSSLCiphers()
244 CipherPushContext ctx(en in GetCiphers()
[all...]
/third_party/python/Parser/
H A Daction_helpers.c290 /* Creates an asdl_seq* where all the elements have been changed to have ctx as context */
292 _set_seq_context(Parser *p, asdl_expr_seq *seq, expr_context_ty ctx) in _set_seq_context() argument
305 asdl_seq_SET(new_seq, i, _PyPegen_set_expr_context(p, e, ctx)); in _set_seq_context()
311 _set_name_context(Parser *p, expr_ty e, expr_context_ty ctx) in _set_name_context() argument
313 return _PyAST_Name(e->v.Name.id, ctx, EXTRA_EXPR(e, e)); in _set_name_context()
317 _set_tuple_context(Parser *p, expr_ty e, expr_context_ty ctx) in _set_tuple_context() argument
320 _set_seq_context(p, e->v.Tuple.elts, ctx), in _set_tuple_context()
321 ctx, in _set_tuple_context()
326 _set_list_context(Parser *p, expr_ty e, expr_context_ty ctx) in _set_list_context() argument
329 _set_seq_context(p, e->v.List.elts, ctx), in _set_list_context()
335 _set_subscript_context(Parser *p, expr_ty e, expr_context_ty ctx) _set_subscript_context() argument
342 _set_attribute_context(Parser *p, expr_ty e, expr_context_ty ctx) _set_attribute_context() argument
349 _set_starred_context(Parser *p, expr_ty e, expr_context_ty ctx) _set_starred_context() argument
357 _PyPegen_set_expr_context(Parser *p, expr_ty expr, expr_context_ty ctx) _PyPegen_set_expr_context() argument
[all...]
/foundation/filemanagement/app_file_service/interfaces/kits/js/backup/
H A Dgeneral_callbacks.cpp55 LibN::NAsyncContextCallback *ctx = static_cast<LibN::NAsyncContextCallback *>(work->data); in ~BackupRestoreCallback()
56 delete ctx; in ~BackupRestoreCallback()
82 auto ctx = static_cast<LibN::NAsyncContextCallback *>(data); in DoCallJsMethod() local
83 if (ctx == nullptr) { in DoCallJsMethod()
98 napi_value callback = ctx->cb_.Deref(env).val_; in DoCallJsMethod()
/third_party/ffmpeg/libavcodec/
H A Dbethsoftvideo.c54 static int set_palette(BethsoftvidContext *ctx) in set_palette() argument
56 uint32_t *palette = (uint32_t *)ctx->frame->data[1]; in set_palette()
59 if (bytestream2_get_bytes_left(&ctx->g) < 256*3) in set_palette()
63 palette[a] = 0xFFU << 24 | bytestream2_get_be24u(&ctx->g) * 4; in set_palette()
66 ctx->frame->palette_has_changed = 1; in set_palette()
/third_party/icu/icu4c/source/tools/icuinfo/
H A Dtestplug.c132 void *ctx = uprv_malloc(12345); in myPluginBad() local
134 uplug_setContext(data, ctx); in myPluginBad()
135 fprintf(stderr,"I'm %p and I did a bad thing and malloced %p\n", (void*)data, (void*)ctx); in myPluginBad()
137 void * ctx = uplug_getContext(data); in myPluginBad() local
139 uprv_free(ctx); in myPluginBad()
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-wrover-kit/main/
H A Ddevices.c173 init_plat_devices(struct lws_context *ctx) in init_plat_devices() argument
176 lws_netdevs_t *netdevs = lws_netdevs_from_ctx(ctx); in init_plat_devices()
216 wifi_ops.create(ctx, &wifi_ops, "wl0", NULL); in init_plat_devices()
245 bcs = lws_button_controller_create(ctx, &bc); in init_plat_devices()
256 lws_display_state_init(&lds, ctx, 30000, 10000, lls, &disp.disp); in init_plat_devices()
/third_party/nghttp2/lib/
H A Dnghttp2_hd.h221 nghttp2_hd_context ctx; member
233 nghttp2_hd_context ctx; member
409 void nghttp2_hd_huff_decode_context_init(nghttp2_hd_huff_decode_context *ctx);
412 * Decodes the given data |src| with length |srclen|. The |ctx| must
430 ssize_t nghttp2_hd_huff_decode(nghttp2_hd_huff_decode_context *ctx,
435 * nghttp2_hd_huff_decode_failure_state returns nonzero if |ctx|
438 int nghttp2_hd_huff_decode_failure_state(nghttp2_hd_huff_decode_context *ctx);
/third_party/node/deps/nghttp2/lib/
H A Dnghttp2_hd.h221 nghttp2_hd_context ctx; member
233 nghttp2_hd_context ctx; member
409 void nghttp2_hd_huff_decode_context_init(nghttp2_hd_huff_decode_context *ctx);
412 * Decodes the given data |src| with length |srclen|. The |ctx| must
430 ssize_t nghttp2_hd_huff_decode(nghttp2_hd_huff_decode_context *ctx,
435 * nghttp2_hd_huff_decode_failure_state returns nonzero if |ctx|
438 int nghttp2_hd_huff_decode_failure_state(nghttp2_hd_huff_decode_context *ctx);
/third_party/mesa3d/src/util/
H A Ddisk_cache.h121 disk_cache_get_function_identifier(void *ptr, struct mesa_sha1 *ctx) in disk_cache_get_function_identifier() argument
128 _mesa_sha1_update(ctx, build_id_data(note), build_id_length(note)); in disk_cache_get_function_identifier()
132 _mesa_sha1_update(ctx, &timestamp, sizeof(timestamp)); in disk_cache_get_function_identifier()
139 disk_cache_get_function_identifier(void *ptr, struct mesa_sha1 *ctx);
142 disk_cache_get_function_identifier(void *ptr, struct mesa_sha1 *ctx) in disk_cache_get_function_identifier() argument
/third_party/ltp/testcases/kernel/io/aio/
H A Daio02.c67 static void work_done(io_context_t ctx, struct iocb *iocb, long res, long res2) in work_done() argument
69 (void) ctx; // silence compiler warning (-Wunused) in work_done()
84 static int io_wait_run(io_context_t ctx, struct timespec *to) in io_wait_run() argument
93 ret = n = io_getevents(ctx, 1, AIO_MAXIO, events, to); in io_wait_run()
101 cb(ctx, iocb, ep->res, ep->res2); in io_wait_run()
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_utrace.c71 struct pipe_context *ctx = &ice->ctx; in iris_utrace_read_ts() local
72 struct iris_screen *screen = (struct iris_screen *)ctx->screen; in iris_utrace_read_ts()
104 struct iris_screen *screen = (struct iris_screen *)ice->ctx.screen; in iris_utrace_init()
119 u_trace_pipe_context_init(&ice->ds.trace_context, &ice->ctx, in iris_utrace_init()
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_live_shader_cache.c72 util_live_shader_cache_get(struct pipe_context *ctx, in util_live_shader_cache_get() argument
141 shader = (struct util_live_shader*)cache->create_shader(ctx, state); in util_live_shader_cache_get()
153 cache->destroy_shader(ctx, shader); in util_live_shader_cache_get()
167 util_shader_reference(struct pipe_context *ctx, in util_shader_reference() argument
188 cache->destroy_shader(ctx, dst_shader); in util_shader_reference()
/third_party/node/deps/openssl/openssl/providers/implementations/exchange/
H A Decx_exch.c46 PROV_ECX_CTX *ctx; in ecx_newctx() local
51 ctx = OPENSSL_zalloc(sizeof(PROV_ECX_CTX)); in ecx_newctx()
52 if (ctx == NULL) { in ecx_newctx()
57 ctx->keylen = keylen; in ecx_newctx()
59 return ctx; in ecx_newctx()
/third_party/skia/src/effects/imagefilters/
H A DSkOffsetImageFilter.cpp83 sk_sp<SkSpecialImage> SkOffsetImageFilter::onFilterImage(const Context& ctx, in onFilterImage() argument
86 sk_sp<SkSpecialImage> input(this->filterInput(0, ctx, &srcOffset)); in onFilterImage()
91 SkIPoint vec = map_offset_vector(ctx.ctm(), fOffset); in onFilterImage()
101 if (!this->applyCropRect(ctx, srcBounds, &bounds)) { in onFilterImage()
105 sk_sp<SkSpecialSurface> surf(ctx.makeSurface(bounds.size())); in onFilterImage()
H A DSkColorFilterImageFilter.cpp86 sk_sp<SkSpecialImage> SkColorFilterImageFilter::onFilterImage(const Context& ctx, in onFilterImage() argument
89 sk_sp<SkSpecialImage> input(this->filterInput(0, ctx, &inputOffset)); in onFilterImage()
94 inputBounds = ctx.clipBounds(); in onFilterImage()
103 if (!this->applyCropRect(ctx, inputBounds, &bounds)) { in onFilterImage()
107 sk_sp<SkSpecialSurface> surf(ctx.makeSurface(bounds.size())); in onFilterImage()
/third_party/skia/src/core/
H A DSkMatrixImageFilter.cpp65 sk_sp<SkSpecialImage> SkMatrixImageFilter::onFilterImage(const Context& ctx, in onFilterImage() argument
69 sk_sp<SkSpecialImage> input(this->filterInput(0, ctx, &inputOffset)); in onFilterImage()
75 if (!ctx.ctm().invert(&matrix)) { in onFilterImage()
79 matrix.postConcat(ctx.ctm()); in onFilterImage()
90 sk_sp<SkSpecialSurface> surf(ctx.makeSurface(dstBounds.size())); in onFilterImage()
/third_party/openssl/providers/implementations/exchange/
H A Decx_exch.c46 PROV_ECX_CTX *ctx; in ecx_newctx() local
51 ctx = OPENSSL_zalloc(sizeof(PROV_ECX_CTX)); in ecx_newctx()
52 if (ctx == NULL) { in ecx_newctx()
57 ctx->keylen = keylen; in ecx_newctx()
59 return ctx; in ecx_newctx()
/third_party/skia/third_party/externals/icu/source/tools/icuinfo/
H A Dtestplug.c131 void *ctx = uprv_malloc(12345); in myPluginBad() local
133 uplug_setContext(data, ctx); in myPluginBad()
134 fprintf(stderr,"I'm %p and I did a bad thing and malloced %p\n", (void*)data, (void*)ctx); in myPluginBad()
136 void * ctx = uplug_getContext(data); in myPluginBad() local
138 uprv_free(ctx); in myPluginBad()

Completed in 22 milliseconds

1...<<151152153154155156157158159160>>...293