| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | vorbis.c | 250 static int write_vorbis_header(sox_format_t * ft, vorbis_enc_t * ve) in write_vorbis_header() argument 274 &ve->vd, &vc, &header_main, &header_comments, &header_codebooks) < 0) { in write_vorbis_header() 279 ogg_stream_packetin(&ve->os, &header_main); /* And stream them out */ in write_vorbis_header() 280 ogg_stream_packetin(&ve->os, &header_comments); in write_vorbis_header() 281 ogg_stream_packetin(&ve->os, &header_codebooks); in write_vorbis_header() 283 while (ogg_stream_flush(&ve->os, &ve->og) && ret == HEADER_OK) in write_vorbis_header() 284 if (!oe_write_page(&ve->og, ft)) in write_vorbis_header() 297 vorbis_enc_t *ve; in startwrite() local 304 ve = vb->vorbis_enc_data = lsx_malloc(sizeof(vorbis_enc_t)); in startwrite() 306 vorbis_info_init(&ve->vi); in startwrite() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/math-emu/ |
| H A D | ieee754int.h | 54 #define EXPLODESP(v, vc, vs, ve, vm) \ argument 57 ve = SPBEXP(v); \ 59 if (ve == SP_EMAX+1+SP_EBIAS) { \ 66 } else if (ve == SP_EMIN-1+SP_EBIAS) { \ 68 ve = SP_EMIN; \ 73 ve -= SP_EBIAS; \ 92 #define EXPLODEDP(v, vc, vs, ve, vm) \ argument 96 ve = DPBEXP(v); \ 97 if (ve == DP_EMAX+1+DP_EBIAS) { \ 104 } else if (ve == DP_EMIN-1+DP_EBIAS) { \ [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gt/ |
| H A D | intel_lrc.c | 497 struct virtual_engine *ve = in need_preempt() local 498 rb_entry(rb, typeof(*ve), nodes[engine->id].rb); in need_preempt() 501 if (engine == ve->siblings[0]) { /* only preempt one sibling */ in need_preempt() 505 next = READ_ONCE(ve->request); in need_preempt() 1401 struct virtual_engine *ve = container_of(ce, typeof(*ve), context); in kick_siblings() local 1402 struct i915_request *next = READ_ONCE(ve->request); in kick_siblings() 1405 tasklet_hi_schedule(&ve->base.execlists.tasklet); in kick_siblings() 1784 static bool virtual_matches(const struct virtual_engine *ve, in virtual_matches() argument 1802 inflight = intel_context_inflight(&ve->context); in virtual_matches() 1809 static void virtual_xfer_context(struct virtual_engine *ve, in virtual_xfer_context() argument [all …]
|
| H A D | selftest_lrc.c | 3690 struct intel_context *ve[16]; in nop_virtual_engine() local 3696 GEM_BUG_ON(!nctx || nctx > ARRAY_SIZE(ve)); in nop_virtual_engine() 3699 ve[n] = intel_execlists_create_virtual(siblings, nsibling); in nop_virtual_engine() 3700 if (IS_ERR(ve[n])) { in nop_virtual_engine() 3701 err = PTR_ERR(ve[n]); in nop_virtual_engine() 3706 err = intel_context_pin(ve[n]); in nop_virtual_engine() 3708 intel_context_put(ve[n]); in nop_virtual_engine() 3714 err = igt_live_test_begin(&t, gt->i915, __func__, ve[0]->engine->name); in nop_virtual_engine() 3726 rq = i915_request_create(ve[nc]); in nop_virtual_engine() 3743 rq = i915_request_create(ve[nc]); in nop_virtual_engine() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/exynos4-is/ |
| H A D | fimc-isp-video.c | 97 isp_dbg(2, &video->ve.vdev, in isp_video_capture_start_streaming() 111 ret = fimc_pipeline_call(&video->ve, set_stream, 1); in isp_video_capture_start_streaming() 126 ret = fimc_pipeline_call(&isp->video_capture.ve, set_stream, 0); in isp_video_capture_stop_streaming() 164 v4l2_err(&video->ve.vdev, in isp_video_capture_buffer_prepare() 213 isp_dbg(2, &video->ve.vdev, in isp_video_capture_buffer_queue() 267 struct exynos_video_entity *ve = &isp->video_capture.ve; in isp_video_open() local 268 struct media_entity *me = &ve->vdev.entity; in isp_video_open() 285 ret = fimc_pipeline_call(ve, open, me, true); in isp_video_open() 306 struct media_entity *entity = &ivc->ve.vdev.entity; in isp_video_release() 322 fimc_pipeline_call(&ivc->ve, close); in isp_video_release() [all …]
|
| H A D | fimc-capture.c | 121 return fimc_pipeline_call(&cap->ve, set_stream, 0); in fimc_capture_state_cleanup() 181 struct fimc_pipeline *p = to_fimc_pipeline(cap->ve.pipe); in fimc_capture_irq_handler() 284 return fimc_pipeline_call(&vid_cap->ve, set_stream, 1); in start_streaming() 308 return fimc_pipeline_call(&fimc->vid_cap.ve, close); in fimc_capture_suspend() 316 struct exynos_video_entity *ve = &vid_cap->ve; in fimc_capture_resume() local 325 fimc_pipeline_call(ve, open, &ve->vdev.entity, false); in fimc_capture_resume() 389 v4l2_err(&ctx->fimc_dev->vid_cap.ve.vdev, in buffer_prepare() 408 struct exynos_video_entity *ve = &vid_cap->ve; in buffer_queue() local 446 ret = fimc_pipeline_call(ve, set_stream, 1); in buffer_queue() 448 v4l2_err(&ve->vdev, "stream on failed: %d\n", ret); in buffer_queue() [all …]
|
| H A D | media-dev.h | 162 static inline void fimc_md_graph_lock(struct exynos_video_entity *ve) in fimc_md_graph_lock() argument 164 mutex_lock(&ve->vdev.entity.graph_obj.mdev->graph_mutex); in fimc_md_graph_lock() 167 static inline void fimc_md_graph_unlock(struct exynos_video_entity *ve) in fimc_md_graph_unlock() argument 169 mutex_unlock(&ve->vdev.entity.graph_obj.mdev->graph_mutex); in fimc_md_graph_unlock()
|
| H A D | fimc-lite.c | 212 return fimc_pipeline_call(&fimc->ve, set_stream, 0); in fimc_lite_reinit() 331 fimc_pipeline_call(&fimc->ve, set_stream, 1); in start_streaming() 392 v4l2_err(&fimc->ve.vdev, in buffer_prepare() 434 fimc_pipeline_call(&fimc->ve, set_stream, 1); in buffer_queue() 462 struct media_entity *me = &fimc->ve.vdev.entity; in fimc_lite_open() 486 ret = fimc_pipeline_call(&fimc->ve, open, me, true); in fimc_lite_open() 512 struct media_entity *entity = &fimc->ve.vdev.entity; in fimc_lite_release() 523 fimc_pipeline_call(&fimc->ve, close); in fimc_lite_release() 817 struct media_entity *entity = &fimc->ve.vdev.entity; in fimc_lite_streamon() 823 ret = media_pipeline_start(entity, &fimc->ve.pipe->mp); in fimc_lite_streamon() [all …]
|
| H A D | media-dev.c | 780 dev->vid_cap.ve.pipe = NULL; in fimc_md_unregister_entities() 788 dev->ve.pipe = NULL; in fimc_md_unregister_entities() 892 sink = &fimc->ve.vdev.entity; in __fimc_md_create_flite_source_links() 931 sink = &isp->video_capture.ve.vdev.entity; in __fimc_md_create_fimc_is_links() 1038 sink = &fmd->fimc[i]->vid_cap.ve.vdev.entity; in fimc_md_create_links() 1130 struct exynos_video_entity *ve; in __fimc_md_modify_pipeline() local 1139 ve = vdev_to_exynos_video_entity(vdev); in __fimc_md_modify_pipeline() 1140 p = to_fimc_pipeline(ve->pipe); in __fimc_md_modify_pipeline() 1149 ret = __fimc_pipeline_open(ve->pipe, entity, true); in __fimc_md_modify_pipeline() 1151 ret = __fimc_pipeline_close(ve->pipe); in __fimc_md_modify_pipeline()
|
| /OK3568_Linux_fs/kernel/arch/h8300/lib/ |
| H A D | modsi3.S | 31 ; should be -ve 39 mov.l A0P,A0P ; is the numerator -ve 46 mov.l A1P,A1P ; is the denominator -ve 58 mov.l A0P,A0P ; is the numerator -ve 65 mov.l A1P,A1P ; is the denominator -ve
|
| H A D | moddivsi3.S | 31 ; should be -ve 39 mov.l A0P,A0P ; is the numerator -ve 46 mov.l A1P,A1P ; is the denominator -ve 58 mov.l A0P,A0P ; is the numerator -ve 65 mov.l A1P,A1P ; is the denominator -ve
|
| /OK3568_Linux_fs/kernel/fs/f2fs/ |
| H A D | gc.c | 373 struct victim_entry *ve; in attach_victim_entry() local 375 ve = f2fs_kmem_cache_alloc(victim_entry_slab, GFP_NOFS); in attach_victim_entry() 377 ve->mtime = mtime; in attach_victim_entry() 378 ve->segno = segno; in attach_victim_entry() 380 rb_link_node(&ve->rb_node, parent, p); in attach_victim_entry() 381 rb_insert_color_cached(&ve->rb_node, &am->root, left_most); in attach_victim_entry() 383 list_add_tail(&ve->list, &am->victim_list); in attach_victim_entry() 387 return ve; in attach_victim_entry() 458 struct victim_entry *ve; in atgc_lookup_victim() local 488 ve = (struct victim_entry *)re; in atgc_lookup_victim() [all …]
|
| /OK3568_Linux_fs/yocto/meta-clang/.github/ISSUE_TEMPLATE/ |
| H A D | feature_request.md | 16 **Describe alternatives you've considered** 17 A clear and concise description of any alternative solutions or features you've considered.
|
| /OK3568_Linux_fs/kernel/Documentation/input/devices/ |
| H A D | cs461x.rst | 14 driver as a backend. I've tested this driver with CS4610, 4-axis and 15 4-button joystick; I mean the jstest utility. Also I've tried to 31 comments about them; but I've found the joystick can be initialized
|
| /OK3568_Linux_fs/yocto/poky/documentation/ |
| H A D | transitioning-to-a-custom-environment.rst | 11 So you've finished the :doc:`brief-yoctoprojectqs/index` and 15 to do. And, the documentation is daunting. We've put together a few hints to 39 that you've downloaded. Be aware that some BSPs may not be immediately 47 #. **Based on the layers you've chosen, make needed changes in your 49 For instance, you've chosen a machine type and added in the corresponding BSP
|
| /OK3568_Linux_fs/kernel/drivers/tty/vt/ |
| H A D | vt_ioctl.c | 121 struct vt_event_wait *ve = list_entry(pos, in vt_event_post() local 123 if (!(ve->event.event & event)) in vt_event_post() 125 ve->event.event = event; in vt_event_post() 128 ve->event.oldev = old + 1; in vt_event_post() 129 ve->event.newev = new + 1; in vt_event_post() 131 ve->done = 1; in vt_event_post()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/go/go-1.18/ |
| H A D | CVE-2022-41715.patch | 44 // until we've allocated at least maxHeight Regexp structures. 65 +// We could keep a cache of character classes we've seen, 112 + // Maintain the product of all the repeats we've seen 114 + // we've seen times the repeat product is in budget. 138 + // with info about everything we've constructed so far.
|
| /OK3568_Linux_fs/buildroot/package/snort/ |
| H A D | 0007-Fix-error-when-building-on-a-Fedora-host-machine.patch | 27 -# package. Make sure we've got the library and # 51 -# package. Make sure we've got the library and #
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_10.0.2/ |
| H A D | 0061-backend-drm-Stop-disabling-unused-CRTCs-by-default.patch | 73 /* If we need to reset all our state (e.g. because we've 82 /* If we need to reset all our state (e.g. because we've
|
| /OK3568_Linux_fs/buildroot/boot/grub2/ |
| H A D | 0081-video-fb-video_fb-Fix-multiple-integer-overflows.patch | 51 + /* Shouldn't happen, but if it does we've a bug. */ 89 + /* Shouldn't happen, but if it does we've a bug. */
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_11.0.1/ |
| H A D | 0064-backend-drm-Stop-disabling-unused-CRTCs-by-default.patch | 74 /* If we need to reset all our state (e.g. because we've 91 /* If we need to reset all our state (e.g. because we've
|
| /OK3568_Linux_fs/buildroot/package/weston/ |
| H A D | 0063-backend-drm-Stop-disabling-unused-CRTCs-by-default.patch | 74 /* If we need to reset all our state (e.g. because we've 91 /* If we need to reset all our state (e.g. because we've
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/byacc/ |
| H A D | byacc_20220128.bb | 3 # "I've found no reliable source which states that byacc must bear a UCB copyright."
|
| /OK3568_Linux_fs/kernel/arch/arm64/boot/dts/qcom/ |
| H A D | sc7180-trogdor-lazor-r0.dts | 19 * Lane 0 was incorrectly mapped on the cable, but we've now decided
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/bin/ |
| H A D | catchsegv | 41 --v | --ve | --ver | --vers | --versi | --versio | --version)
|