/third_party/ffmpeg/libavcodec/ |
H A D | hqxvlc.c | 2143 ret = init_vlc(&ctx->dc_vlc[idx], HQX_DC_VLC_BITS, \ 2151 av_cold int ff_hqx_init_vlcs(HQXContext *ctx) in ff_hqx_init_vlcs() argument 2153 int ret = init_vlc(&ctx->cbp_vlc, HQX_CBP_VLC_BITS, FF_ARRAY_ELEMS(cbp_vlc_lens), in ff_hqx_init_vlcs()
|
H A D | vp8.c | 1232 const uint8_t *ctx; in decode_intra4x4_modes() local 1233 ctx = vp8_pred4x4_prob_intra[top[x]][left[y]]; in decode_intra4x4_modes() 1234 *intra4x4 = vp8_rac_get_tree(c, vp8_pred4x4_tree, ctx); in decode_intra4x4_modes()
|
/third_party/ffmpeg/libavformat/ |
H A D | matroskaenc.c | 202 AVFormatContext *ctx; member 617 av_log(mkv->ctx, AV_LOG_ERROR, "Error when reformatting data of " in ebml_writer_block_len() 3121 mkv->ctx = s; in mkv_init()
|
H A D | mov.c | 86 int (*parse)(MOVContext *ctx, AVIOContext *pb, MOVAtom atom); 5618 FFIOContext ctx; 5652 ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL); 5653 ctx.pub.seekable = AVIO_SEEKABLE_NORMAL; 5656 ret = mov_read_default(c, &ctx.pub, atom); 7569 AVFormatContext *ctx = c->fc; 7589 av_log(ctx, AV_LOG_ERROR, 7626 av_log(ctx, AV_LOG_TRACE,
|
H A D | mpegtsenc.c | 989 AVFormatContext *ctx = s->opaque; in section_write_packet() local 990 write_packet(ctx, packet); in section_write_packet()
|
/third_party/musl/ldso/ |
H A D | dynlink.c | 391 void *ctx; in do_relocs() local 433 ctx = type==REL_COPY ? head->syms_next : head; in do_relocs() 436 : find_sym(ctx, name, type==REL_PLT); in do_relocs()
|
/third_party/python/Lib/test/ |
H A D | test_statistics.py | 2200 with decimal.localcontext(decimal.DefaultContext) as ctx: 2201 ctx.prec *= 4 2203 ctx.rounding = decimal.ROUND_05UP
|
H A D | test_configparser.py | 1143 with self.assertRaises(AttributeError) as ctx: 1145 err = ctx.exception
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fSynchronizationTests.cpp | 52 static bool checkSupport(Context& ctx) in checkSupport() argument 54 auto ctxType = ctx.getRenderContext().getType(); in checkSupport() 57 ctx.getContextInfo().isExtensionSupported("GL_OES_shader_image_atomic"); in checkSupport()
|
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 7575 TrackerBase( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent ); 7610 SectionTracker( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent ); 7616 static SectionTracker& acquire( TrackerContext& ctx, NameAndLocation const& nameAndLocation ); 12592 GeneratorTracker( TestCaseTracking::NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent ) 12593 : TrackerBase( nameAndLocation, ctx, parent ) 12597 static GeneratorTracker& acquire( TrackerContext& ctx, TestCaseTracking::NameAndLocation const& nameAndLocation ) { 12600 ITracker& currentTracker = ctx.currentTracker(); 12622 tracker = std::make_shared<GeneratorTracker>( nameAndLocation, ctx, ¤tTracker ); 14405 TrackerBase::TrackerBase( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent ): 14407 m_ctx( ctx ), [all...] |
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 544 i::Handle<i::Context> ctx = Utils::OpenHandle(*context); in AddData() local 545 i::Isolate* isolate = ctx->GetIsolate(); in AddData() 549 if (!ctx->serialized_objects().IsArrayList()) { in AddData() 553 i::ArrayList::cast(ctx->serialized_objects()), isolate); in AddData() 557 ctx->set_serialized_objects(*list); in AddData() 563 i::Handle<i::Context> ctx = Utils::OpenHandle(*context); in ConvertSerializedObjectsToFixedArray() local 564 i::Isolate* isolate = ctx->GetIsolate(); in ConvertSerializedObjectsToFixedArray() 565 if (!ctx->serialized_objects().IsArrayList()) { in ConvertSerializedObjectsToFixedArray() 566 ctx->set_serialized_objects(i::ReadOnlyRoots(isolate).empty_fixed_array()); in ConvertSerializedObjectsToFixedArray() 568 i::Handle<i::ArrayList> list(i::ArrayList::cast(ctx in ConvertSerializedObjectsToFixedArray() [all...] |
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_cmd_buffer.c | 1995 const struct dzn_meta_blit *ctx = in dzn_cmd_buffer_blit_set_pipeline() local 1997 assert(ctx); in dzn_cmd_buffer_blit_set_pipeline() 1999 ID3D12GraphicsCommandList1_SetGraphicsRootSignature(cmdbuf->cmdlist, ctx->root_sig); in dzn_cmd_buffer_blit_set_pipeline() 2000 ID3D12GraphicsCommandList1_SetPipelineState(cmdbuf->cmdlist, ctx->pipeline_state); in dzn_cmd_buffer_blit_set_pipeline()
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | phonemetadata.pb.h | 157 const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; 408 const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; 619 const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final; 1354 const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
|
/third_party/python/Lib/ |
H A D | _pydecimal.py | 471 def localcontext(ctx=None, **kwargs): 478 with localcontext() as ctx: 479 ctx.prec += 2 495 ... ctx = getcontext() 496 ... ctx.prec += 2 497 ... print(ctx.prec) 507 if ctx is None: 508 ctx = getcontext() 509 ctx_manager = _ContextManager(ctx)
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/ |
H A D | wl_cfgvendor.c | 1537 wl_cfgvendor_rtt_evt(void *ctx, void *rtt_data) in wl_cfgvendor_rtt_evt() argument 1539 struct wireless_dev *wdev = (struct wireless_dev *)ctx; in wl_cfgvendor_rtt_evt() 6929 static void wl_cfgvendor_dbg_ring_send_evt(void *ctx, in wl_cfgvendor_dbg_ring_send_evt() argument 6933 struct net_device *ndev = ctx; in wl_cfgvendor_dbg_ring_send_evt() 7224 static void wl_cfgvendor_dbg_send_file_dump_evt(void *ctx, const void *data, in wl_cfgvendor_dbg_send_file_dump_evt() argument 7227 struct net_device *ndev = ctx; in wl_cfgvendor_dbg_send_file_dump_evt()
|
H A D | dbus_usb_linux.c | 3138 dbus_request_firmware_done(const struct firmware *firmware, void *ctx) in dbus_request_firmware_done() argument 3140 struct request_fw_context *context = (struct request_fw_context*)ctx; in dbus_request_firmware_done()
|
/device/soc/rockchip/common/sdk_linux/drivers/mmc/core/ |
H A D | block.c | 1443 mmc_put_card(mq->card, &mq->ctx);
in mmc_blk_cqe_complete_rq() 2002 mmc_put_card(mq->card, &mq->ctx);
in mmc_blk_mq_dec_in_flight()
|
/device/soc/rockchip/rk3568/hardware/omx_il/component/video/dec/ |
H A D | Rkvpu_OMX_Vdec.c | 1256 pVideoDec->rkvpu_open_cxt = (OMX_S32 (*)(VpuCodecContext_t **ctx))openCtx; in omx_open_vpudec_context() 1257 pVideoDec->rkvpu_close_cxt = (OMX_S32 (*)(VpuCodecContext_t **ctx))dlsym(pVideoDec->rkapi_hdl, in omx_open_vpudec_context() 1318 /* when vpu ctx is NULL, force to vpuapi */ in Rkvpu_Dec_ComponentInit()
|
/device/soc/rockchip/rk3568/hardware/omx_il/component/video/enc/ |
H A D | Rkvpu_OMX_Venc.c | 1270 pVideoEnc->rkvpu_open_cxt = (OMX_S32 (*)(VpuCodecContext_t **ctx))openCtx; in omx_open_vpuenc_context() 1271 pVideoEnc->rkvpu_close_cxt = (OMX_S32 (*)(VpuCodecContext_t **ctx))dlsym(pVideoEnc->rkapi_hdl, in omx_open_vpuenc_context()
|
/third_party/ffmpeg/libavutil/ |
H A D | hwcontext_opencl.c | 157 AVHWDeviceContext *ctx = user_data; in opencl_error_callback() local 158 av_log(ctx, AV_LOG_ERROR, "OpenCL error: %s\n", errinfo); in opencl_error_callback()
|
/third_party/mesa3d/src/egl/drivers/dri2/ |
H A D | platform_wayland.c | 1581 _EGLContext *ctx = _eglGetCurrentContext(); in dri2_wl_swap_buffers_with_damage() local 1582 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx); in dri2_wl_swap_buffers_with_damage()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 202 IMGUI_API void DestroyContext(ImGuiContext* ctx = NULL); // NULL = destroy current context 204 IMGUI_API void SetCurrentContext(ImGuiContext* ctx);
|
/third_party/python/Python/ |
H A D | symtable.c | 1713 e->v.Name.ctx == Load ? USE : DEF_LOCAL, LOCATION(e))) in symtable_visit_expr() 1716 if (e->v.Name.ctx == Load && in symtable_visit_expr()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRender.cpp | 475 void ShaderEvaluator::evaluate (ShaderEvalContext& ctx) const 478 m_evalFunc(ctx);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/transform_feedback/ |
H A D | vktTransformFeedbackFuzzLayoutCase.cpp | 1638 InterfaceBlockCaseInstance::InterfaceBlockCaseInstance (Context& ctx, in InterfaceBlockCaseInstance() argument 1646 : vkt::TestInstance (ctx) in InterfaceBlockCaseInstance()
|