/third_party/protobuf/src/google/protobuf/ |
H A D | type.pb.cc | 458 const char* Type::_InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) { in _InternalParse() argument 461 while (!ctx->Done(&ptr)) { in _InternalParse() 470 ptr = ::PROTOBUF_NAMESPACE_ID::internal::InlineGreedyStringParser(str, ptr, ctx); in _InternalParse() 481 ptr = ctx->ParseMessage(_internal_add_fields(), ptr); in _InternalParse() 483 if (!ctx->DataAvailable(ptr)) break; in _InternalParse() 494 ptr = ::PROTOBUF_NAMESPACE_ID::internal::InlineGreedyStringParser(str, ptr, ctx); in _InternalParse() 497 if (!ctx->DataAvailable(ptr)) break; in _InternalParse() 507 ptr = ctx->ParseMessage(_internal_add_options(), ptr); in _InternalParse() 509 if (!ctx->DataAvailable(ptr)) break; in _InternalParse() 516 ptr = ctx in _InternalParse() 850 _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) _InternalParse() argument 1333 _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) _InternalParse() argument 1661 _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) _InternalParse() argument 1947 _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) _InternalParse() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | mpeg4videodec.h | 85 int ff_mpeg4_decode_picture_header(Mpeg4DecContext *ctx, GetBitContext *gb, 90 int ff_mpeg4_decode_partitions(Mpeg4DecContext *ctx); 91 int ff_mpeg4_decode_video_packet_header(Mpeg4DecContext *ctx); 92 int ff_mpeg4_decode_studio_slice_header(Mpeg4DecContext *ctx);
|
H A D | movsub_bsf.c | 26 static int text2movsub(AVBSFContext *ctx, AVPacket *out) in text2movsub() argument 31 ret = ff_bsf_get_packet(ctx, &in); in text2movsub() 65 static int mov2textsub(AVBSFContext *ctx, AVPacket *pkt) in mov2textsub() argument 69 ret = ff_bsf_get_packet_ref(ctx, pkt); in mov2textsub()
|
H A D | dxva2_av1.c | 58 static int fill_picture_parameters(const AVCodecContext *avctx, AVDXVAContext *ctx, const AV1DecContext *h, in fill_picture_parameters() argument 77 pp->CurrPicTextureIndex = ff_dxva2_get_surface_index(avctx, ctx, h->cur_frame.f); in fill_picture_parameters() 153 pp->RefFrameMapTextureIndex[i] = ff_dxva2_get_surface_index(avctx, ctx, ref_frame); in fill_picture_parameters() 266 //pp->StatusReportFeedbackNumber = 1 + DXVA_CONTEXT_REPORT_ID(avctx, ctx)++; in fill_picture_parameters() 275 AVDXVAContext *ctx = DXVA_CONTEXT(avctx); in dxva2_av1_start_frame() local 278 if (!DXVA_CONTEXT_VALID(avctx, ctx)) in dxva2_av1_start_frame() 283 if (fill_picture_parameters(avctx, ctx, h, &ctx_pic->pp) < 0) in dxva2_av1_start_frame() 298 struct AV1DXVAContext *ctx = avctx->internal->hwaccel_priv_data; in dxva2_av1_decode_slice() local 324 tmp = av_fast_realloc(ctx->bitstream_cache, &ctx in dxva2_av1_decode_slice() 351 AVDXVAContext *ctx = DXVA_CONTEXT(avctx); commit_bitstream_and_slice_buffer() local 451 struct AV1DXVAContext *ctx = avctx->internal->hwaccel_priv_data; dxva2_av1_uninit() local [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | rtpenc_h261.c | 39 void ff_rtp_send_h261(AVFormatContext *ctx, const uint8_t *frame_buf, int frame_size) in ff_rtp_send_h261() argument 43 RTPMuxContext *rtp_ctx = ctx->priv_data; in ff_rtp_send_h261() 79 av_log(ctx, AV_LOG_WARNING, in ff_rtp_send_h261() 97 ff_rtp_send_data(ctx, rtp_ctx->buf, RTP_H261_HEADER_SIZE + cur_frame_size, last_packet_of_frame); in ff_rtp_send_h261()
|
H A D | rtpdec_h263.c | 27 int ff_h263_handle_packet(AVFormatContext *ctx, PayloadContext *data, in ff_h263_handle_packet() argument 36 av_log(ctx, AV_LOG_ERROR, "Too short H.263 RTP packet\n"); in ff_h263_handle_packet() 72 av_log(ctx, AV_LOG_ERROR, "Too short H.263 RTP packet\n"); in ff_h263_handle_packet() 77 av_log(ctx, AV_LOG_ERROR, "Out of memory\n"); in ff_h263_handle_packet()
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-smd.h | 67 * \param ctx: the lws_context 86 lws_smd_msg_alloc(struct lws_context *ctx, lws_smd_class_t _class, size_t len); 105 * \param ctx: the lws_context 113 lws_smd_msg_send(struct lws_context *ctx, void *payload); 118 * \param ctx: the lws_context 137 lws_smd_msg_printf(struct lws_context *ctx, lws_smd_class_t _class, 195 * \param ctx: the lws_context 210 lws_smd_register(struct lws_context *ctx, void *opaque, int flags,
|
/third_party/mesa3d/src/gallium/frontends/clover/core/ |
H A D | context.cpp | 41 context::operator==(const context &ctx) const { in operator ==() 42 return this == &ctx; in operator ==() 46 context::operator!=(const context &ctx) const { in operator !=() 47 return this != &ctx; in operator !=()
|
/third_party/mesa3d/src/glx/ |
H A D | glxglvnddispatchfuncs.h | 42 static inline int AddContextMapping(Display *dpy, GLXContext ctx, in AddContextMapping() argument 45 return __VND->addVendorContextMapping(dpy, ctx, vendor); in AddContextMapping() 54 static inline __GLXvendorInfo *GetDispatchFromContext(GLXContext ctx) in GetDispatchFromContext() argument 56 return __VND->vendorFromContext(ctx); in GetDispatchFromContext()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
H A D | freedreno_query.h | 40 void (*destroy_query)(struct fd_context *ctx, struct fd_query *q) dt; 41 void (*begin_query)(struct fd_context *ctx, struct fd_query *q) dt; 42 void (*end_query)(struct fd_context *ctx, struct fd_query *q) dt; 43 bool (*get_query_result)(struct fd_context *ctx, struct fd_query *q,
|
/third_party/mesa3d/src/gallium/drivers/r300/ |
H A D | r300_texture.h | 65 struct pipe_context *ctx, 80 struct pipe_surface* r300_create_surface_custom(struct pipe_context * ctx, 86 struct pipe_surface* r300_create_surface(struct pipe_context *ctx, 90 void r300_surface_destroy(struct pipe_context *ctx, struct pipe_surface* s);
|
/third_party/node/deps/openssl/openssl/crypto/ec/ |
H A D | ec_deprecated.c | 24 BIGNUM *ret, BN_CTX *ctx) in EC_POINT_point2bn() 29 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx); in EC_POINT_point2bn() 42 const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx) in EC_POINT_bn2point() 68 if (!EC_POINT_oct2point(group, ret, buf, buf_len, ctx)) { in EC_POINT_bn2point() 21 EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BIGNUM *ret, BN_CTX *ctx) EC_POINT_point2bn() argument 41 EC_POINT_bn2point(const EC_GROUP *group, const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx) EC_POINT_bn2point() argument
|
/third_party/openssl/crypto/ec/ |
H A D | ec_deprecated.c | 24 BIGNUM *ret, BN_CTX *ctx) in EC_POINT_point2bn() 29 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx); in EC_POINT_point2bn() 42 const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx) in EC_POINT_bn2point() 68 if (!EC_POINT_oct2point(group, ret, buf, buf_len, ctx)) { in EC_POINT_bn2point() 21 EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BIGNUM *ret, BN_CTX *ctx) EC_POINT_point2bn() argument 41 EC_POINT_bn2point(const EC_GROUP *group, const BIGNUM *bn, EC_POINT *point, BN_CTX *ctx) EC_POINT_bn2point() argument
|
/third_party/openssl/demos/bio/ |
H A D | server-cmod.c | 28 SSL_CTX *ctx; in main() local 31 ctx = SSL_CTX_new(TLS_server_method()); in main() 38 if (SSL_CTX_config(ctx, "server") == 0) { in main() 44 ssl_bio = BIO_new_ssl(ctx, 0); in main()
|
/third_party/skia/third_party/externals/tint/src/ast/ |
H A D | matrix.cc | 48 const Matrix* Matrix::Clone(CloneContext* ctx) const { in Clone() 50 auto src = ctx->Clone(source); in Clone() 51 auto* ty = ctx->Clone(type); in Clone() 52 return ctx->dst->create<Matrix>(src, ty, rows, columns); in Clone()
|
H A D | pointer.cc | 49 const Pointer* Pointer::Clone(CloneContext* ctx) const { in Clone() 51 auto src = ctx->Clone(source); in Clone() 52 auto* ty = ctx->Clone(type); in Clone() 53 return ctx->dst->create<Pointer>(src, ty, storage_class, access); in Clone()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | sha384-internal.c | 27 struct sha384_state ctx; in sha384_vector() local 30 sha384_init(&ctx); in sha384_vector() 32 if (sha384_process(&ctx, addr[i], len[i])) in sha384_vector() 34 if (sha384_done(&ctx, mac)) in sha384_vector()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | ext_password_test.c | 35 static void ext_password_test_deinit(void *ctx) in ext_password_test_deinit() argument 37 struct ext_password_test_data *data = ctx; in ext_password_test_deinit() 44 static struct wpabuf * ext_password_test_get(void *ctx, const char *name) in ext_password_test_get() argument 46 struct ext_password_test_data *data = ctx; in ext_password_test_get()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | sha384-internal.c | 27 struct sha384_state ctx; in sha384_vector() local 30 sha384_init(&ctx); in sha384_vector() 32 if (sha384_process(&ctx, addr[i], len[i])) in sha384_vector() 34 if (sha384_done(&ctx, mac)) in sha384_vector()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | ext_password_file.c | 58 * @ctx: The file-backed password backend 63 static void ext_password_file_deinit(void *ctx) in ext_password_file_deinit() argument 65 struct ext_password_file_data *data = ctx; in ext_password_file_deinit() 73 * @ctx: The file-backed password backend 82 static struct wpabuf * ext_password_file_get(void *ctx, const char *name) in ext_password_file_get() argument 84 struct ext_password_file_data *data = ctx; in ext_password_file_get()
|
H A D | ext_password_test.c | 35 static void ext_password_test_deinit(void *ctx) in ext_password_test_deinit() argument 37 struct ext_password_test_data *data = ctx; in ext_password_test_deinit() 44 static struct wpabuf * ext_password_test_get(void *ctx, const char *name) in ext_password_test_get() argument 46 struct ext_password_test_data *data = ctx; in ext_password_test_get()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | performance_monitor.h | 36 _mesa_init_performance_monitors(struct gl_context *ctx); 39 _mesa_free_performance_monitors(struct gl_context *ctx); 45 _mesa_free_perfomance_monitor_groups(struct gl_context *ctx);
|
H A D | pack.c | 475 * Args: ctx - the context 485 _mesa_unpack_stencil_span( struct gl_context *ctx, GLuint n, in _mesa_unpack_stencil_span() argument 516 !ctx->Pixel.MapStencilFlag && in _mesa_unpack_stencil_span() 522 !ctx->Pixel.MapStencilFlag && in _mesa_unpack_stencil_span() 535 _mesa_error(ctx, GL_OUT_OF_MEMORY, "stencil unpacking"); in _mesa_unpack_stencil_span() 544 _mesa_shift_and_offset_ci(ctx, n, indexes); in _mesa_unpack_stencil_span() 547 if (ctx->Pixel.MapStencilFlag) { in _mesa_unpack_stencil_span() 549 const GLuint mask = ctx->PixelMaps.StoS.Size - 1; in _mesa_unpack_stencil_span() 552 indexes[i] = (GLuint)ctx->PixelMaps.StoS.Map[ indexes[i] & mask ]; in _mesa_unpack_stencil_span() 598 _mesa_pack_stencil_span( struct gl_context *ctx, GLuin argument 770 _mesa_unpack_depth_span( struct gl_context *ctx, GLuint n, GLenum dstType, GLvoid *dest, GLuint depthMax, GLenum srcType, const GLvoid *source, const struct gl_pixelstore_attrib *srcPacking ) _mesa_unpack_depth_span() argument 1003 _mesa_pack_depth_span( struct gl_context *ctx, GLuint n, GLvoid *dest, GLenum dstType, const GLfloat *depthSpan, const struct gl_pixelstore_attrib *dstPacking ) _mesa_pack_depth_span() argument 1139 _mesa_pack_depth_stencil_span(struct gl_context *ctx,GLuint n, GLenum dstType, GLuint *dest, const GLfloat *depthVals, const GLubyte *stencilVals, const struct gl_pixelstore_attrib *dstPacking) _mesa_pack_depth_stencil_span() argument 1551 _mesa_unpack_color_index_to_rgba_float(struct gl_context *ctx, GLuint dims, const void *src, GLenum srcFormat, GLenum srcType, int srcWidth, int srcHeight, int srcDepth, const struct gl_pixelstore_attrib *srcPacking, GLbitfield transferOps) _mesa_unpack_color_index_to_rgba_float() argument 1606 _mesa_unpack_color_index_to_rgba_ubyte(struct gl_context *ctx, GLuint dims, const void *src, GLenum srcFormat, GLenum srcType, int srcWidth, int srcHeight, int srcDepth, const struct gl_pixelstore_attrib *srcPacking, GLbitfield transferOps) _mesa_unpack_color_index_to_rgba_ubyte() argument [all...] |
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fDrawTests.cpp | 637 void renderTo (sglr::Context& ctx, sglr::ShaderProgram& program, tcu::Surface& dst); 660 sglr::GLContext ctx (m_context.getRenderContext(), m_testCtx.getLog(), sglr::GLCONTEXT_LOG_CALLS | sglr::GLCONTEXT_LOG_PROGRAMS, tcu::IVec4(0, 0, renderTargetWidth, renderTargetHeight)); in iterate() 666 renderTo(ctx, program, surface); in iterate() 677 void InstancedGridRenderTest::renderTo (sglr::Context& ctx, sglr::ShaderProgram& program, tcu::Surface& dst) in renderTo() argument 686 deUint32 programID = ctx.createProgram(&program); in renderTo() 687 deInt32 posLocation = ctx.getAttribLocation(programID, "a_position"); in renderTo() 688 deInt32 offsetLocation = ctx.getAttribLocation(programID, "a_offset"); in renderTo() 689 deInt32 colorLocation = ctx.getAttribLocation(programID, "a_color"); in renderTo() 720 ctx.genBuffers(1, &positionBuf); in renderTo() 721 ctx in renderTo() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | af_mcompand.c | 103 static av_cold void uninit(AVFilterContext *ctx) in uninit() argument 105 MCompandContext *s = ctx->priv; in uninit() 168 CompandT *s, AVFilterContext *ctx) in parse_points() 180 av_log(ctx, AV_LOG_ERROR, in parse_points() 185 av_log(ctx, AV_LOG_ERROR, in parse_points() 190 av_log(ctx, AV_LOG_DEBUG, "%d: x=%f y=%f\n", i, S(i).x, S(i).y); in parse_points() 314 AVFilterContext *ctx = outlink->src; in config_output() local 315 MCompandContext *s = ctx->priv; in config_output() 341 av_log(ctx, AV_LOG_ERROR, "at least one attacks/decays rate is mandatory\n"); in config_output() 349 av_log(ctx, AV_LOG_ERRO in config_output() 167 parse_points(char *points, int nb_points, double radius, CompandT *s, AVFilterContext *ctx) parse_points() argument 554 AVFilterContext *ctx = inlink->dst; filter_frame() local 610 AVFilterContext *ctx = outlink->src; request_frame() local [all...] |