Home
last modified time | relevance | path

Searched refs:ctx (Results 5351 - 5375 of 6931) sorted by relevance

1...<<211212213214215216217218219220>>...278

/third_party/libwebsockets/lib/core/
H A Dprivate-lib-core.h461 /* process can only have one netlink socket, have to do it in ctx */
545 /**< Toplevel Fault Injection ctx */
768 #define lws_get_context_protocol(ctx, x) ctx->vhost_list->protocols[x]
963 lws_lec_scratch(lws_lec_pctx_t *ctx);
965 lws_lec_signed(lws_lec_pctx_t *ctx, int64_t num);
/third_party/libwebsockets/lib/event-libs/libevent/
H A Dlibevent.c103 lws_event_cb(evutil_socket_t sock_fd, short revents, void *ctx) in lws_event_cb() argument
106 (struct lws_signal_watcher_libevent *)ctx; in lws_event_cb()
161 lws_event_sigint_cb(evutil_socket_t sock_fd, short revents, void *ctx) in lws_event_sigint_cb() argument
163 struct lws_context_per_thread *pt = ctx; in lws_event_sigint_cb()
/third_party/libwebsockets/lib/misc/
H A Dsha-1.c287 struct sha1_ctxt ctx; in lws_SHA1() local
289 _sha1_init(&ctx); in lws_SHA1()
290 sha1_loop(&ctx, d, n); in lws_SHA1()
291 sha1_result(&ctx, (void *)md); in lws_SHA1()
/third_party/mesa3d/src/gallium/include/winsys/
H A Dradeon_winsys.h482 void (*ctx_destroy)(struct radeon_winsys_ctx *ctx);
487 enum pipe_reset_status (*ctx_query_reset_status)(struct radeon_winsys_ctx *ctx,
495 * \param ctx The submission context
503 struct radeon_winsys_ctx *ctx, enum amd_ip_type amd_ip_type,
504 void (*flush)(void *ctx, unsigned flags,
/third_party/mesa3d/src/imagination/rogue/
H A Drogue_build_data.c476 * \param[in] ctx Shared multi-stage build context.
480 bool rogue_collect_io_data(struct rogue_build_ctx *ctx, nir_shader *nir) in rogue_collect_io_data() argument
483 struct rogue_common_build_data *common_data = &ctx->common_data[stage]; in rogue_collect_io_data()
492 return collect_io_data_fs(common_data, &ctx->stage_data.fs, nir); in rogue_collect_io_data()
495 return collect_io_data_vs(common_data, &ctx->stage_data.vs, nir); in rogue_collect_io_data()
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_viewport.c53 static void r600_set_scissor_states(struct pipe_context *ctx, in r600_set_scissor_states() argument
58 struct r600_common_context *rctx = (struct r600_common_context *)ctx; in r600_set_scissor_states()
281 static void r600_set_viewport_states(struct pipe_context *ctx, in r600_set_viewport_states() argument
286 struct r600_common_context *rctx = (struct r600_common_context *)ctx; in r600_set_viewport_states()
/third_party/ntfs-3g/ntfsprogs/
H A Dntfscluster.c390 ntfs_attr_search_ctx *ctx; in dump_file() local
399 ctx = ntfs_attr_get_search_ctx(ino, NULL); in dump_file()
401 while ((rec = find_attribute(AT_UNUSED, ctx))) { in dump_file()
422 ntfs_attr_put_search_ctx(ctx); in dump_file()
/third_party/musl/porting/linux/user/src/aio/
H A Daio.c155 static void cleanup(void *ctx) in cleanup() argument
157 struct aio_thread *at = ctx; in cleanup()
207 static void *io_thread_func(void *ctx) in io_thread_func() argument
211 struct aio_args *args = ctx; in io_thread_func()
/third_party/musl/porting/liteos_a/user/src/aio/
H A Daio.c155 static void cleanup(void *ctx) in cleanup() argument
157 struct aio_thread *at = ctx; in cleanup()
205 static void *io_thread_func(void *ctx) in io_thread_func() argument
209 struct aio_args *args = ctx; in io_thread_func()
/third_party/musl/src/aio/
H A Daio.c162 static void cleanup(void *ctx) in cleanup() argument
164 struct aio_thread *at = ctx; in cleanup()
214 static void *io_thread_func(void *ctx) in io_thread_func() argument
218 struct aio_args *args = ctx; in io_thread_func()
/third_party/mesa3d/src/mesa/main/
H A Dtexcompress_rgtc.c98 _mesa_texstore(ctx, dims, in _mesa_texstore_red_rgtc1()
151 _mesa_texstore(ctx, dims, in _mesa_texstore_signed_red_rgtc1()
210 _mesa_texstore(ctx, dims, in _mesa_texstore_rg_rgtc2()
275 _mesa_texstore(ctx, dims, in _mesa_texstore_signed_rg_rgtc2()
/third_party/libwebsockets/lib/plat/windows/
H A Dwindows-sockets.c569 lws_plat_mbedtls_net_send(void *ctx, const uint8_t *buf, size_t len) in lws_plat_mbedtls_net_send() argument
571 int fd = ((mbedtls_net_context *) ctx)->fd; in lws_plat_mbedtls_net_send()
594 lws_plat_mbedtls_net_recv(void *ctx, unsigned char *buf, size_t len) in lws_plat_mbedtls_net_recv() argument
596 int fd = ((mbedtls_net_context *) ctx)->fd; in lws_plat_mbedtls_net_recv()
/third_party/libwebsockets/lib/plat/unix/
H A Dunix-sockets.c596 lws_plat_mbedtls_net_send(void *ctx, const uint8_t *buf, size_t len) in lws_plat_mbedtls_net_send() argument
598 int fd = ((mbedtls_net_context *) ctx)->MBEDTLS_PRIVATE_V30_ONLY(fd); in lws_plat_mbedtls_net_send()
621 lws_plat_mbedtls_net_recv(void *ctx, unsigned char *buf, size_t len) in lws_plat_mbedtls_net_recv() argument
623 int fd = ((mbedtls_net_context *) ctx)->MBEDTLS_PRIVATE_V30_ONLY(fd); in lws_plat_mbedtls_net_recv()
/third_party/mesa3d/src/gallium/auxiliary/driver_rbug/
H A Drbug_screen.c382 struct pipe_context *ctx = _ctx ? rbug_context(_ctx)->pipe : NULL; in rbug_screen_flush_frontbuffer() local
385 ctx, in rbug_screen_flush_frontbuffer()
412 struct pipe_context *ctx = _ctx ? rbug_context(_ctx)->pipe : NULL; in rbug_screen_fence_finish() local
414 return screen->fence_finish(screen, ctx, fence, timeout); in rbug_screen_fence_finish()
/third_party/node/deps/openssl/openssl/crypto/cms/
H A Dcms_asn1.c152 kari->ctx = EVP_CIPHER_CTX_new();
153 if (kari->ctx == NULL)
155 EVP_CIPHER_CTX_set_flags(kari->ctx, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW);
159 EVP_CIPHER_CTX_free(kari->ctx);
/third_party/node/deps/openssl/openssl/crypto/evp/
H A Dkeymgmt_meth.c206 EVP_KEYMGMT *evp_keymgmt_fetch_by_number(OSSL_LIB_CTX *ctx, int name_id, in evp_keymgmt_fetch_by_number() argument
209 return evp_generic_fetch_by_number(ctx, in evp_keymgmt_fetch_by_number()
227 EVP_KEYMGMT *EVP_KEYMGMT_fetch(OSSL_LIB_CTX *ctx, const char *algorithm, in EVP_KEYMGMT_fetch() argument
230 return evp_generic_fetch(ctx, OSSL_OP_KEYMGMT, algorithm, properties, in EVP_KEYMGMT_fetch()
/third_party/openssl/crypto/evp/
H A Dkeymgmt_meth.c206 EVP_KEYMGMT *evp_keymgmt_fetch_by_number(OSSL_LIB_CTX *ctx, int name_id, in evp_keymgmt_fetch_by_number() argument
209 return evp_generic_fetch_by_number(ctx, in evp_keymgmt_fetch_by_number()
227 EVP_KEYMGMT *EVP_KEYMGMT_fetch(OSSL_LIB_CTX *ctx, const char *algorithm, in EVP_KEYMGMT_fetch() argument
230 return evp_generic_fetch(ctx, OSSL_OP_KEYMGMT, algorithm, properties, in EVP_KEYMGMT_fetch()
/third_party/skia/third_party/externals/swiftshader/include/EGL/
H A Degl.h127 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx);
137 EGLAPI EGLBoolean EGLAPIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
138 EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value);
291 EGLAPI EGLImage EGLAPIENTRY eglCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list);
/third_party/skia/src/core/
H A DSkFont.cpp258 void (*proc)(const SkPath*, const SkMatrix&, void*), void* ctx) const { in getPaths()
268 proc(glyph->path(), mx, ctx); in getPaths()
278 this->getPaths(&glyphID, 1, [](const SkPath* orig, const SkMatrix& mx, void* ctx) { in getPath()
279 Pair* pair = static_cast<Pair*>(ctx); in getPath()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUMCInstLower.cpp50 AMDGPUMCInstLower(MCContext &ctx, const TargetSubtargetInfo &ST,
62 R600MCInstLower(MCContext &ctx, const R600Subtarget &ST,
74 AMDGPUMCInstLower::AMDGPUMCInstLower(MCContext &ctx, in AMDGPUMCInstLower() argument
77 Ctx(ctx), ST(st), AP(ap) { } in AMDGPUMCInstLower()
/third_party/toybox/toys/lsb/
H A Dmd5sum.c250 SHA512_CTX ctx; in do_lib_hash() local
274 hash->init(&ctx); in do_lib_hash()
278 hash->update(&ctx, toybuf, i); in do_lib_hash()
280 hash->final(toybuf+128, &ctx); in do_lib_hash()
/third_party/skia/third_party/externals/egl-registry/api/EGL/
H A Degl.h127 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx);
137 EGLAPI EGLBoolean EGLAPIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
138 EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value);
291 EGLAPI EGLImage EGLAPIENTRY eglCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list);
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fNegativeFragmentApiTests.cpp42 static bool checkDrawBuffersIndexedSupport(Context& ctx) in checkDrawBuffersIndexedSupport() argument
44 return contextSupports(ctx.getRenderContext().getType(), glu::ApiType::es(3, 2)) || in checkDrawBuffersIndexedSupport()
45 contextSupports(ctx.getRenderContext().getType(), glu::ApiType::core(4, 5)) || in checkDrawBuffersIndexedSupport()
46 ctx.getContextInfo().isExtensionSupported("GL_EXT_draw_buffers_indexed"); in checkDrawBuffersIndexedSupport()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dsha1-internal.c33 SHA1_CTX ctx; in sha1_vector() local
39 SHA1Init(&ctx); in sha1_vector()
41 SHA1Update(&ctx, addr[i], len[i]); in sha1_vector()
42 SHA1Final(mac, &ctx); in sha1_vector()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dsha1-internal.c33 SHA1_CTX ctx; in sha1_vector() local
39 SHA1Init(&ctx); in sha1_vector()
41 SHA1Update(&ctx, addr[i], len[i]); in sha1_vector()
42 SHA1Final(mac, &ctx); in sha1_vector()

Completed in 22 milliseconds

1...<<211212213214215216217218219220>>...278