Home
last modified time | relevance | path

Searched refs:get_buffer (Results 1 – 17 of 17) sorted by relevance

/OK3568_Linux_fs/kernel/kernel/time/
H A Ditimer.c115 struct itimerspec64 get_buffer; in SYSCALL_DEFINE2() local
116 int error = do_getitimer(which, &get_buffer); in SYSCALL_DEFINE2()
118 if (!error && put_itimerval(value, &get_buffer)) in SYSCALL_DEFINE2()
144 struct itimerspec64 get_buffer; in COMPAT_SYSCALL_DEFINE2() local
145 int error = do_getitimer(which, &get_buffer); in COMPAT_SYSCALL_DEFINE2()
147 if (!error && put_old_itimerval32(value, &get_buffer)) in COMPAT_SYSCALL_DEFINE2()
335 struct itimerspec64 set_buffer, get_buffer; in SYSCALL_DEFINE3() local
349 error = do_setitimer(which, &set_buffer, ovalue ? &get_buffer : NULL); in SYSCALL_DEFINE3()
353 if (put_itimerval(ovalue, &get_buffer)) in SYSCALL_DEFINE3()
382 struct itimerspec64 set_buffer, get_buffer; in COMPAT_SYSCALL_DEFINE3() local
[all …]
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/xcore/
H A Dbuffer_pool.cpp145 BufferPool::get_buffer (const SmartPtr<BufferPool> &self) in get_buffer() function in XCam::BufferPool
175 BufferPool::get_buffer () in get_buffer() function in XCam::BufferPool
177 return get_buffer (SmartPtr<BufferPool>(this)); in get_buffer()
H A Dbuffer_pool.h90 SmartPtr<VideoBuffer> get_buffer (const SmartPtr<BufferPool> &self);
91 SmartPtr<VideoBuffer> get_buffer ();
H A Dv4l2_device.h131 XCamReturn get_buffer (SmartPtr<V4l2Buffer> &buf, int index = -1) const;
H A Dv4l2_device.cpp1170 V4l2Device::get_buffer (SmartPtr<V4l2Buffer> &buf, int index) const in prepare() function in XCam::V4l2Device
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/hwi/isp20/
H A DFecParamStream.cpp91 ret = _dev->get_buffer(v4l2buf_fec); in configToDrv()
H A DTnrStreamProcUnit.cpp109 ret = mTnrParamsDev->get_buffer(v4l2buf_tnr); in configToDrv()
H A DNrStreamProcUnit.cpp106 ret = mNrParamsDev->get_buffer(v4l2buf_nr); in configToDrv()
H A DRawStreamProcUnit.cpp456 ret = _dev[i]->get_buffer(v4l2buf[i], in trigger_isp_readback()
H A DCamHwIsp20.cpp5745 ret = mIspParamsDev->get_buffer(v4l2buf); in setIspConfig()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dinput.h58 const char *get_buffer () const { return m_ptr; } in get_buffer() function
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dinput.h58 const char *get_buffer () const { return m_ptr; } in get_buffer() function
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/gcc/
H A D0001-CVE-2021-42574.patch707 = get_line_bytes_without_trailing_whitespace (line.get_buffer (),
710 - = cpp_display_width (line.get_buffer (), line_bytes, m_context->tabstop);
711 + = cpp_display_width (line.get_buffer (), line_bytes, m_policy);
988 cpp_display_width (lspan.get_buffer (), lspan.length (),
995 ASSERT_EQ (0, memcmp (lspan.get_buffer () + (emoji_col - 1),
999 ASSERT_EQ ('\t', *(lspan.get_buffer () + (tab_col - 1)));
1004 cpp_display_width (lspan.get_buffer (), lspan.length (),
1061 ASSERT_EQ (25, cpp_display_width (lspan.get_buffer (), lspan.length (),
1428 return cpp_byte_column_to_display_column (line.get_buffer (), line.length (),
/OK3568_Linux_fs/kernel/kernel/power/
H A Dsnapshot.c2534 static void *get_buffer(struct memory_bitmap *bm, struct chain_allocator *ca) in get_buffer() function
2632 handle->buffer = get_buffer(&orig_bm, &ca); in snapshot_write_next()
2640 handle->buffer = get_buffer(&orig_bm, &ca); in snapshot_write_next()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rk_stream/stream_cfg/
H A DRawStreamCapUnit.cpp684 ret = _dev[i]->get_buffer(v4l2buf, buf_index); in set_dma_buf()
H A DRawStreamProcUnit.cpp867 ret = _dev[i]->get_buffer(v4l2buf[i], in trigger_isp_readback()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/aiq_core/
H A Dthumbnails.cpp452 auto buffer = pool->get_buffer(); in GetBufferByConfig()