Home
last modified time | relevance | path

Searched refs:_size (Results 1 – 25 of 147) sorted by relevance

123456

/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/include/nvif/
H A Dunpack.h6 void **_data = (d); __u32 *_size = (s); int _ret = (r); \
7 if (_ret == -ENOSYS && *_size == sizeof(m)) { \
9 *_size = _ret = 0; \
15 void **_data = (d); __u32 *_size = (s); \
17 if (_ret == -ENOSYS && *_size >= sizeof(m) && \
20 *_size = *_size - sizeof(m); \
22 _ret = *_size ? -E2BIG : 0; \
24 *_size = 0; \
/OK3568_Linux_fs/u-boot/tools/binman/
H A Dimage.py53 self._size = None
69 self._size = fdt_util.GetInt(self._node, 'size')
82 if self._end_4gb and not self._size:
85 self._skip_at_start = 0x100000000 - self._size
95 size = self._size
100 if self._size and contents_size > self._size:
102 (contents_size, contents_size, self._size, self._size))
103 if not self._size:
104 self._size = size
105 if self._size != tools.Align(self._size, self._align_size):
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlxsw/
H A Dcore_acl_flex_keys.h52 #define MLXSW_AFK_ELEMENT_INFO(_type, _element, _offset, _shift, _size) \ argument
59 .size = {.bits = _size}, \
64 #define MLXSW_AFK_ELEMENT_INFO_U32(_element, _offset, _shift, _size) \ argument
66 _element, _offset, _shift, _size)
68 #define MLXSW_AFK_ELEMENT_INFO_BUF(_element, _offset, _size) \ argument
70 _element, _offset, 0, _size)
85 _shift, _size, _u32_key_diff, _avoid_size_check) \ argument
92 .size = {.bits = _size}, \
99 #define MLXSW_AFK_ELEMENT_INST_U32(_element, _offset, _shift, _size) \ argument
101 _element, _offset, _shift, _size, 0, false)
[all …]
/OK3568_Linux_fs/kernel/arch/arm/mach-mmp/
H A Ddevices.h20 #define PXA168_DEVICE(_name, _drv, _id, _irq, _start, _size, _dma...) \ argument
27 .size = _size, \
31 #define PXA910_DEVICE(_name, _drv, _id, _irq, _start, _size, _dma...) \ argument
38 .size = _size, \
42 #define MMP2_DEVICE(_name, _drv, _id, _irq, _start, _size, _dma...) \ argument
49 .size = _size, \
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/aldch/
H A Drk_aiq_types_aldch_algo_prvt.h59 : _addr(nullptr), _size(size) {} in LutCache()
68 LOGV_ALDCH("release lut cache size: %d", _size); in ReleaseBuffer()
76 LOGV_ALDCH("malloc lut cache size: %d", _size); in GetBuffer()
77 _addr = xcam_malloc(_size); in GetBuffer()
84 LOGV_ALDCH("get lut cache size: %d", _size); in GetSize()
85 return _size; in GetSize()
90 size_t _size; variable
/OK3568_Linux_fs/kernel/include/linux/
H A Dsysfs.h193 #define __BIN_ATTR(_name, _mode, _read, _write, _size) { \ argument
197 .size = _size, \
200 #define __BIN_ATTR_RO(_name, _size) { \ argument
203 .size = _size, \
206 #define __BIN_ATTR_WO(_name, _size) { \ argument
209 .size = _size, \
212 #define __BIN_ATTR_RW(_name, _size) \ argument
213 __BIN_ATTR(_name, 0644, _name##_read, _name##_write, _size)
217 #define BIN_ATTR(_name, _mode, _read, _write, _size) \ argument
219 _write, _size)
[all …]
H A Dioport.h159 #define DEFINE_RES_NAMED(_start, _size, _name, _flags) \ argument
162 .end = (_start) + (_size) - 1, \
168 #define DEFINE_RES_IO_NAMED(_start, _size, _name) \ argument
169 DEFINE_RES_NAMED((_start), (_size), (_name), IORESOURCE_IO)
170 #define DEFINE_RES_IO(_start, _size) \ argument
171 DEFINE_RES_IO_NAMED((_start), (_size), NULL)
173 #define DEFINE_RES_MEM_NAMED(_start, _size, _name) \ argument
174 DEFINE_RES_NAMED((_start), (_size), (_name), IORESOURCE_MEM)
175 #define DEFINE_RES_MEM(_start, _size) \ argument
176 DEFINE_RES_MEM_NAMED((_start), (_size), NULL)
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/
H A Dutility.hpp127 explicit AutoBuffer(size_t _size);
138 void allocate(size_t _size);
142 void resize(size_t _size);
1019 AutoBuffer<_Tp, fixed_size>::AutoBuffer(size_t _size) in AutoBuffer() argument
1023 allocate(_size); in AutoBuffer()
1054 AutoBuffer<_Tp, fixed_size>::allocate(size_t _size) in allocate() argument
1056 if(_size <= sz) in allocate()
1058 sz = _size; in allocate()
1062 sz = _size; in allocate()
1063 if(_size > fixed_size) in allocate()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/
H A Dutility.hpp127 explicit AutoBuffer(size_t _size);
138 void allocate(size_t _size);
142 void resize(size_t _size);
1019 AutoBuffer<_Tp, fixed_size>::AutoBuffer(size_t _size) in AutoBuffer() argument
1023 allocate(_size); in AutoBuffer()
1054 AutoBuffer<_Tp, fixed_size>::allocate(size_t _size) in allocate() argument
1056 if(_size <= sz) in allocate()
1058 sz = _size; in allocate()
1062 sz = _size; in allocate()
1063 if(_size > fixed_size) in allocate()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/
H A Dutility.hpp127 explicit AutoBuffer(size_t _size);
138 void allocate(size_t _size);
142 void resize(size_t _size);
1019 AutoBuffer<_Tp, fixed_size>::AutoBuffer(size_t _size) in AutoBuffer() argument
1023 allocate(_size); in AutoBuffer()
1054 AutoBuffer<_Tp, fixed_size>::allocate(size_t _size) in allocate() argument
1056 if(_size <= sz) in allocate()
1058 sz = _size; in allocate()
1062 sz = _size; in allocate()
1063 if(_size > fixed_size) in allocate()
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/os_test/include/
H A Dtb_macros.h47 size_t name##_size; \
48 name##_size = TEE_BigIntSizeInU32(size); \
49 name = (TEE_BigInt *)TEE_Malloc(name##_size * sizeof(TEE_BigInt), 0); \
50 TEE_BigIntInit(name, name##_size)
/OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/adreno/
H A Da5xx_power.c171 #define PAYLOAD_SIZE(_size) ((_size) * sizeof(u32)) argument
375 uint32_t _size = cmds_size > TYPE4_MAX_PAYLOAD ? in a5xx_gpmu_ucode_init() local
379 _size); in a5xx_gpmu_ucode_init()
381 for (i = 0; i < _size; i++) in a5xx_gpmu_ucode_init()
384 offset += _size; in a5xx_gpmu_ucode_init()
385 cmds_size -= _size; in a5xx_gpmu_ucode_init()
/OK3568_Linux_fs/kernel/drivers/staging/nvec/
H A Dnvec_kbd.c60 int _size = (msg[0] & (3 << 5)) >> 5; in nvec_keys_notifier() local
63 if (_size == NVEC_VAR_SIZE) in nvec_keys_notifier()
66 if (_size == NVEC_3BYTES) in nvec_keys_notifier()
72 if (code_tabs[_size][code] == KEY_CAPSLOCK && state) in nvec_keys_notifier()
75 input_report_key(keys_dev.input, code_tabs[_size][code], in nvec_keys_notifier()
/OK3568_Linux_fs/u-boot/tools/
H A Dmips-relocs.c25 unsigned int _size; \
29 _size = sizeof(pfx##hdr64[0].field); \
32 _size = sizeof(pfx##hdr32[0].field); \
35 switch (_size) { \
54 unsigned int _size; \
57 _size = sizeof(pfx##hdr64[0].field); \
59 _size = sizeof(pfx##hdr32[0].field); \
61 switch (_size) { \
/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dmemory.h88 u32 _addr = (a), _size = (s) >> 2, *_data = (void *)(p); \
89 while (_size--) { \
96 u32 _addr = (a), _size = (s) >> 2, *_data = (void *)(p); \
97 while (_size--) { \
/OK3568_Linux_fs/kernel/include/rdma/
H A Duverbs_types.h166 #define UVERBS_TYPE_ALLOC_IDR_SZ(_size, _destroy_object) \ argument
170 .obj_size = (_size) + \
171 UVERBS_BUILD_BUG_ON((_size) < \
/OK3568_Linux_fs/kernel/drivers/scsi/ufs/
H A Dufs-sysfs.c486 #define UFS_DESC_PARAM(_name, _puname, _duname, _size) \ argument
492 0, _duname##_DESC_PARAM##_puname, buf, _size); \
496 #define UFS_DEVICE_DESC_PARAM(_name, _uname, _size) \ argument
497 UFS_DESC_PARAM(_name, _uname, DEVICE, _size)
573 #define UFS_INTERCONNECT_DESC_PARAM(_name, _uname, _size) \ argument
574 UFS_DESC_PARAM(_name, _uname, INTERCONNECT, _size)
590 #define UFS_GEOMETRY_DESC_PARAM(_name, _uname, _size) \ argument
591 UFS_DESC_PARAM(_name, _uname, GEOMETRY, _size)
692 #define UFS_HEALTH_DESC_PARAM(_name, _uname, _size) \ argument
693 UFS_DESC_PARAM(_name, _uname, HEALTH, _size)
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/videostab/
H A Dmotion_core.hpp121 inline RansacParams::RansacParams(int _size, float _thresh, float _eps, float _prob) in RansacParams() argument
122 : size(_size), thresh(_thresh), eps(_eps), prob(_prob) {} in RansacParams()
/OK3568_Linux_fs/kernel/arch/s390/kernel/
H A Ddiag.c145 register unsigned long _size asm("1") = size; in __diag204()
151 : "+d" (_subcode), "+d" (_size) : "d" (addr) : "memory"); in __diag204()
153 return _size; in __diag204()
/OK3568_Linux_fs/kernel/include/linux/usb/
H A Drenesas_usbhs.h114 #define RENESAS_USBHS_PIPE(_type, _size, _num, _double_buf) { \ argument
116 .bufsize = (_size), \
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822bs/os_dep/linux/
H A Drtw_proc.h45 #define RTW_PROC_HDL_SZSEQ(_name, _show, _write, _size) \ argument
46 … = _name, .type = RTW_PROC_HDL_TYPE_SZSEQ, .u.sz.show = _show, .write = _write, .u.sz.size = _size}
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/os_dep/linux/
H A Drtw_proc.h46 #define RTW_PROC_HDL_SZSEQ(_name, _show, _write, _size) \ argument
47 … = _name, .type = RTW_PROC_HDL_TYPE_SZSEQ, .u.sz.show = _show, .write = _write, .u.sz.size = _size}
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/os_dep/linux/
H A Drtw_proc.h45 #define RTW_PROC_HDL_SZSEQ(_name, _show, _write, _size) \ argument
46 … = _name, .type = RTW_PROC_HDL_TYPE_SZSEQ, .u.sz.show = _show, .write = _write, .u.sz.size = _size}
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/os_dep/linux/
H A Drtw_proc.h45 #define RTW_PROC_HDL_SZSEQ(_name, _show, _write, _size) \ argument
46 … = _name, .type = RTW_PROC_HDL_TYPE_SZSEQ, .u.sz.show = _show, .write = _write, .u.sz.size = _size}
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/os_dep/linux/
H A Drtw_proc.h45 #define RTW_PROC_HDL_SZSEQ(_name, _show, _write, _size) \ argument
46 … = _name, .type = RTW_PROC_HDL_TYPE_SZSEQ, .u.sz.show = _show, .write = _write, .u.sz.size = _size}

123456