| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | recordmcount.h | 54 #undef _w 93 # define _w w8 macro 131 # define _w w macro 145 return ELF_R_SYM(_w(rp->r_info)); in fn_ELF_R_SYM() 151 rp->r_info = _w(ELF_R_INFO(sym, type)); in fn_ELF_R_INFO() 181 Elf_Addr current_r_offset = _w(rp->r_offset); in MIPS_is_fake_mcount() 272 uint_t const old_shoff = _w(ehdr->e_shoff); in append_func() 273 uint_t const old_shstr_sh_size = _w(shstr->sh_size); in append_func() 274 uint_t const old_shstr_sh_offset = _w(shstr->sh_offset); in append_func() 278 uint_t t = 1 + strlen(mc_name) + _w(shstr->sh_size); in append_func() [all …]
|
| H A D | sorttable.h | 39 #undef _w 61 # define _w w8 macro 82 # define _w w macro
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/hal_g6/mac/ |
| H A D | pltfm_cfg.h | 53 #define SET_CLR_WORD(_w, _v, _f) \ argument 54 (((_w) & ~((_f##_MSK) << (_f##_SH))) | \ 57 #define GET_FIELD(_w, _f) (((_w) >> (_f##_SH)) & (_f##_MSK)) argument 59 #define SET_CLR_WOR2(_w, _v, _sh, _msk) (((_w) & ~(_msk << _sh)) | \ argument 62 #define GET_FIEL2(_w, _sh, _msk) (((_w) >> _sh) & _msk) argument 112 #define SET_CLR_WORD(_w, _v, _f) \ argument 113 (((_w) & ~((_f##_MSK) << (_f##_SH))) | \ 116 #define GET_FIELD(_w, _f) (((_w) >> (_f##_SH)) & (_f##_MSK)) argument 118 #define SET_CLR_WOR2(_w, _v, _sh, _msk) (((_w) & ~(_msk << _sh)) | \ argument 121 #define GET_FIEL2(_w, _sh, _msk) (((_w) >> _sh) & _msk) argument
|
| H A D | pltfm_cfg_drv.h | 56 #define SET_CLR_WORD(_w, _v, _f) \ argument 57 (((_w) & ~((_f##_MSK) << (_f##_SH))) | \ 60 #define GET_FIELD(_w, _f) (((_w) >> (_f##_SH)) & (_f##_MSK)) argument 62 #define SET_CLR_WOR2(_w, _v, _sh, _msk) (((_w) & ~(_msk << _sh)) | \ argument 65 #define GET_FIEL2(_w, _sh, _msk) (((_w) >> _sh) & _msk) argument
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/hal_g6/mac/ |
| H A D | pltfm_cfg.h | 53 #define SET_CLR_WORD(_w, _v, _f) \ argument 54 (((_w) & ~((_f##_MSK) << (_f##_SH))) | \ 57 #define GET_FIELD(_w, _f) (((_w) >> (_f##_SH)) & (_f##_MSK)) argument 59 #define SET_CLR_WOR2(_w, _v, _sh, _msk) (((_w) & ~(_msk << _sh)) | \ argument 62 #define GET_FIEL2(_w, _sh, _msk) (((_w) >> _sh) & _msk) argument 112 #define SET_CLR_WORD(_w, _v, _f) \ argument 113 (((_w) & ~((_f##_MSK) << (_f##_SH))) | \ 116 #define GET_FIELD(_w, _f) (((_w) >> (_f##_SH)) & (_f##_MSK)) argument 118 #define SET_CLR_WOR2(_w, _v, _sh, _msk) (((_w) & ~(_msk << _sh)) | \ argument 121 #define GET_FIEL2(_w, _sh, _msk) (((_w) >> _sh) & _msk) argument
|
| H A D | pltfm_cfg_drv.h | 56 #define SET_CLR_WORD(_w, _v, _f) \ argument 57 (((_w) & ~((_f##_MSK) << (_f##_SH))) | \ 60 #define GET_FIELD(_w, _f) (((_w) >> (_f##_SH)) & (_f##_MSK)) argument 62 #define SET_CLR_WOR2(_w, _v, _sh, _msk) (((_w) & ~(_msk << _sh)) | \ argument 65 #define GET_FIEL2(_w, _sh, _msk) (((_w) >> _sh) & _msk) argument
|
| /OK3568_Linux_fs/external/xserver/miext/rootless/ |
| H A D | rootlessCommon.h | 198 WindowPtr _w = pWin; \ 199 while (_w->parent) \ 200 _w = _w->parent; \ 201 saveRoot = _w->winSize; \ 202 _w->winSize = rootlessHugeRoot; \ 207 WindowPtr _w = pWin; \ 208 while (_w->parent) \ 209 _w = _w->parent; \ 210 _w->winSize = saveRoot; \
|
| /OK3568_Linux_fs/kernel/drivers/md/bcache/ |
| H A D | btree.h | 330 bool _w = l <= (op)->lock; \ 332 _w, b); \ 335 rw_unlock(_w, _child); \ 352 bool _w = insert_lock(op, _b); \ 353 rw_lock(_w, _b, _b->level); \ 355 _w == insert_lock(op, _b)) { \ 358 rw_unlock(_w, _b); \
|
| /OK3568_Linux_fs/external/xserver/test/ |
| H A D | misc.c | 83 #define assert_dimensions(_x, _y, _w, _h) \ in dix_update_desktop_dimensions() argument 87 assert(screenInfo.width == _w); \ in dix_update_desktop_dimensions() 90 #define set_screen(idx, _x, _y, _w, _h) \ in dix_update_desktop_dimensions() argument 93 screenInfo.screens[idx]->width = _w; \ in dix_update_desktop_dimensions()
|
| /OK3568_Linux_fs/u-boot/drivers/net/ |
| H A D | smc91111.c | 185 word _w; in SMC_inb() local 187 _w = SMC_inw(dev, offset & ~((dword)1)); in SMC_inb() 188 return (offset & 1) ? (byte)(_w >> 8) : (byte)(_w); in SMC_inb() 193 word _w; in SMC_outb() local 195 _w = SMC_inw(dev, offset & ~((dword)1)); in SMC_outb() 198 (value<<8) | (_w & 0x00ff); in SMC_outb() 201 value | (_w & 0xff00); in SMC_outb()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/ |
| H A D | operations.hpp | 320 Mat _a(a, false), _u(u, false), _w(w, false), _vt(vt, false); in compute() local 321 SVD::compute(_a, _w, _u, _vt); in compute() 322 …CV_Assert(_w.data == (uchar*)&w.val[0] && _u.data == (uchar*)&u.val[0] && _vt.data == (uchar*)&vt.… in compute() 329 Mat _a(a, false), _w(w, false); in compute() local 330 SVD::compute(_a, _w); in compute() 331 CV_Assert(_w.data == (uchar*)&w.val[0]); in compute() 340 Mat _u(u, false), _w(w, false), _vt(vt, false), _rhs(rhs, false), _dst(dst, false); in backSubst() local 341 SVD::backSubst(_w, _u, _vt, _rhs, _dst); in backSubst()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/ |
| H A D | operations.hpp | 320 Mat _a(a, false), _u(u, false), _w(w, false), _vt(vt, false); in compute() local 321 SVD::compute(_a, _w, _u, _vt); in compute() 322 …CV_Assert(_w.data == (uchar*)&w.val[0] && _u.data == (uchar*)&u.val[0] && _vt.data == (uchar*)&vt.… in compute() 329 Mat _a(a, false), _w(w, false); in compute() local 330 SVD::compute(_a, _w); in compute() 331 CV_Assert(_w.data == (uchar*)&w.val[0]); in compute() 340 Mat _u(u, false), _w(w, false), _vt(vt, false), _rhs(rhs, false), _dst(dst, false); in backSubst() local 341 SVD::backSubst(_w, _u, _vt, _rhs, _dst); in backSubst()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/ |
| H A D | operations.hpp | 320 Mat _a(a, false), _u(u, false), _w(w, false), _vt(vt, false); in compute() local 321 SVD::compute(_a, _w, _u, _vt); in compute() 322 …CV_Assert(_w.data == (uchar*)&w.val[0] && _u.data == (uchar*)&u.val[0] && _vt.data == (uchar*)&vt.… in compute() 329 Mat _a(a, false), _w(w, false); in compute() local 330 SVD::compute(_a, _w); in compute() 331 CV_Assert(_w.data == (uchar*)&w.val[0]); in compute() 340 Mat _u(u, false), _w(w, false), _vt(vt, false), _rhs(rhs, false), _dst(dst, false); in backSubst() local 341 SVD::backSubst(_w, _u, _vt, _rhs, _dst); in backSubst()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/sys/ |
| H A D | reent.h | 162 int _w; /* write space left for putc() */ member 190 int _w; /* write space left for putc() */ member 248 int _w; /* write space left for putc() */ member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/sys/ |
| H A D | reent.h | 162 int _w; /* write space left for putc() */ member 190 int _w; /* write space left for putc() */ member 248 int _w; /* write space left for putc() */ member
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-kernel/oprofile/oprofile/ |
| H A D | 0002-Fix-configure-when-bin-sh-is-not-bash.patch | 6 --Signature=_Sat__5_Sep_2020_14_40_08_+0300_w+XY/NnD8_G.Kd1s
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/phoenix/scope/ |
| H A D | local_variable.hpp | 186 BOOST_ATTRIBUTE_UNUSED _w_type const _w = {{{}}}; variable
|
| /OK3568_Linux_fs/kernel/drivers/hwtracing/intel_th/ |
| H A D | gth.c | 225 #define OUTPUT_PARM(_name, _mask, _r, _w, _what) \ argument 231 .writable = (_w) }
|
| /OK3568_Linux_fs/kernel/drivers/video/fbdev/omap/ |
| H A D | hwa742.c | 402 #define ADD_PREQ(_x, _y, _w, _h) do { \ argument 408 req->par.update.width = _w; \
|
| /OK3568_Linux_fs/u-boot/scripts/dtc/ |
| H A D | checks.c | 56 #define CHECK_ENTRY(_nm, _fn, _d, _w, _e, ...) \ argument 62 .warn = (_w), \
|
| /OK3568_Linux_fs/kernel/include/sound/ |
| H A D | soc.h | 1136 #define for_each_card_widgets_safe(card, w, _w) \ argument 1137 list_for_each_entry_safe(w, _w, &card->widgets, list)
|
| /OK3568_Linux_fs/kernel/drivers/usb/musb/ |
| H A D | musb_core.c | 2209 struct musb_pending_work *w, *_w; in musb_run_resume_work() local 2214 list_for_each_entry_safe(w, _w, &musb->pending_list, node) { in musb_run_resume_work()
|
| /OK3568_Linux_fs/buildroot/dl/ncurses/ |
| HD | ncurses-6.1-20191130.patch.gz | 1# ncurses 6.1 - patch 20191130 - Thomas E. Dickey
2#
3# --- ... |
| /OK3568_Linux_fs/device/rockchip/common/images/userdata/userdata_normal/media/ |
| H A D | yuv420_p352x288.yuv | 857 …���������������������������������������������������������������������ϯ��TA\_w���������������������… 961 …���������������������������������������������������������������������������_w��ů�������������Ҭ^���… 1298 …;:9:<;8;;6:;9:;9:988:8889<:::8;98;89:899::9<;9::99:99:998998;88878999892#!>_w��Ƶ������������������… 1472 …xY~�yr���l<@ADFCJakXg�����������������������tez�z}���t\b�������������������_w���s9H���������wfe��… 1489 …9::99988::998889979:98:97889:769:9888789899887678898798677777789777761*"",@_w���������������������… 1626 …�����������������X|�������rs������ln������������������hs�����c.@y������|qh^_w�������������_7<<;;<:… 1751 …�������������������������������������������������������¸�������������ͭ��NF]_w���������������������… 1866 …_w�����Y�������������������������������������������}iVOVstXG4355544433434435543555554126216656334… 1963 …����������Ư���������������������ε�������������������������������������cD^n`_w���������������������… 2046 …<;:9:<;8;;6:;9:;9:988:8889<:::8;98;89:899::9<;9::99:99:998998;8887898993">_w��Ƴ������������������… [all …]
|
| /OK3568_Linux_fs/recovery/ |
| HD | rootfs.cpio.gz | 107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000binusr/bin07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ... |