| /linux/include/math-emu/ |
| H A D | op-4.h | 28 #define _FP_FRAC_DECL_4(X) _FP_W_TYPE X##_f[4] 30 (D##_f[0] = S##_f[0], D##_f[1] = S##_f[1], \ 31 D##_f[2] = S##_f[2], D##_f[3] = S##_f[3]) 33 #define _FP_FRAC_HIGH_4(X) (X##_f[3]) 34 #define _FP_FRAC_LOW_4(X) (X##_f[0]) 35 #define _FP_FRAC_WORD_4(X,w) (X##_f[w]) 45 X##_f[_i] = X##_f[_i-_skip]; \ 49 X##_f[_i] = X##_f[_i-_skip] << _up \ 50 | X##_f[_i-_skip-1] >> _down; \ 51 X##_f[_i--] = X##_f[0] << _up; \ [all …]
|
| H A D | op-1.h | 28 #define _FP_FRAC_DECL_1(X) _FP_W_TYPE X##_f=0 29 #define _FP_FRAC_COPY_1(D,S) (D##_f = S##_f) 30 #define _FP_FRAC_SET_1(X,I) (X##_f = I) 31 #define _FP_FRAC_HIGH_1(X) (X##_f) 32 #define _FP_FRAC_LOW_1(X) (X##_f) 33 #define _FP_FRAC_WORD_1(X,w) (X##_f) 35 #define _FP_FRAC_ADDI_1(X,I) (X##_f += I) 39 X##_f += X##_f; \ 41 X##_f <<= (N); \ 43 #define _FP_FRAC_SRL_1(X,N) (X##_f >>= N) [all …]
|
| H A D | op-8.h | 29 #define _FP_FRAC_DECL_8(X) _FP_W_TYPE X##_f[8] 30 #define _FP_FRAC_HIGH_8(X) (X##_f[7]) 31 #define _FP_FRAC_LOW_8(X) (X##_f[0]) 32 #define _FP_FRAC_WORD_8(X,w) (X##_f[w]) 42 X##_f[_i] = X##_f[_i-_skip]; \ 46 X##_f[_i] = X##_f[_i-_skip] << _up \ 47 | X##_f[_i-_skip-1] >> _down; \ 48 X##_f[_i--] = X##_f[0] << _up; \ 51 X##_f[_i] = 0; \ 62 X##_f[_i] = X##_f[_i+_skip]; \ [all …]
|
| H A D | op-2.h | 33 #define _FP_FRAC_WORD_2(X,w) (X##_f##w) 595 D##_f = S##_f0; \ 600 D##_f0 = S##_f; \
|
| /linux/drivers/clk/x86/ |
| H A D | clk-cgu.h | 203 #define LGM_MUX(_id, _name, _pdata, _f, _reg, \ argument 211 .flags = _f, \ 219 #define LGM_DIV(_id, _name, _pname, _f, _reg, _shift, _width, \ argument 230 .flags = _f, \ 241 #define LGM_GATE(_id, _name, _pname, _f, _reg, \ argument 252 .flags = _f, \ 259 #define LGM_FIXED(_id, _name, _pname, _f, _reg, \ argument 270 .flags = _f, \ 279 #define LGM_FIXED_FACTOR(_id, _name, _pname, _f, _reg, \ argument 290 .flags = _f, \
|
| /linux/include/linux/ |
| H A D | sh_clk.h | 126 #define SH_CLK_MSTP32(_p, _r, _b, _f) \ argument 127 SH_CLK_MSTP(_p, _r, _b, 0, _f | CLK_ENABLE_REG_32BIT) 129 #define SH_CLK_MSTP32_STS(_p, _r, _b, _s, _f) \ argument 130 SH_CLK_MSTP(_p, _r, _b, _s, _f | CLK_ENABLE_REG_32BIT) 132 #define SH_CLK_MSTP16(_p, _r, _b, _f) \ argument 133 SH_CLK_MSTP(_p, _r, _b, 0, _f | CLK_ENABLE_REG_16BIT) 135 #define SH_CLK_MSTP8(_p, _r, _b, _f) \ argument 136 SH_CLK_MSTP(_p, _r, _b, 0, _f | CLK_ENABLE_REG_8BIT)
|
| H A D | slab.h | 532 #define krealloc_noprof(_o, _s, _f) krealloc_node_align_noprof(_o, PASS_TOKEN_PARAMS(_s, __kmalloc_token(_s)), 1, _f, NUMA_NO_NODE) 576 #define krealloc_node(_o, _s, _f, _n) krealloc_node_align(_o, _s, 1, _f, _n) 1037 #define kmalloc_nolock_noprof(_s, _f, _n) _kmalloc_nolock_noprof(PASS_TOKEN_PARAMS(_s, __kmalloc_token(_s)), _f, _n) 1356 #define kvcalloc_node_noprof(_n,_s,_f,_node) kvmalloc_array_node_noprof(_n,_s,(_f)|__GFP_ZERO,_node) 1397 #define kvrealloc_node(_p, _s, _f, _n) kvrealloc_node_align(_p, _s, 1, _f, _ 508 krealloc_noprof(_o,_s,_f) global() argument 510 krealloc_node(_o,_s,_f,_n) global() argument 1199 kvmalloc_node(_s,_f,_n) global() argument 1220 kvcalloc_node_noprof(_n,_s,_f,_node) global() argument 1231 kvrealloc_node(_p,_s,_f,_n) global() argument [all...] |
| H A D | packing.h | 58 typeof(&(fields)[0]) _f = (fields); \ 59 typeof(_f[0]) __f = _f[index]; \ 80 typeof(&(fields)[0]) _f = (fields); \ 86 BUILD_BUG_ON_MSG(_f[0].startbit >= BITS_PER_BYTE * _len, \ 88 BUILD_BUG_ON_MSG(_f[num_fields - 1].startbit >= BITS_PER_BYTE * _len, \
|
| /linux/tools/perf/util/ |
| H A D | perf_event_attr_fprintf.c | 278 #define PRINT_ATTRn(_n, _f, _p, _a) \ argument 280 if (attr_size >= offsetof(struct perf_event_attr, _f) + \ 281 sizeof(attr->_f) && \ 282 (_a || attr->_f)) { \ 283 _p(attr->_f); \ 289 #define PRINT_ATTRn_bf(_n, _f, _p, _a) \ in perf_event_attr__fprintf() 291 if (_a || attr->_f) { \ in perf_event_attr__fprintf() 292 _p(attr->_f); \ in perf_event_attr__fprintf() 297 #define PRINT_ATTRf(_f, _p) PRINT_ATTRn(#_f, _ in perf_event_attr__fprintf() 286 PRINT_ATTRf(_f,_p) global() argument [all...] |
| /linux/arch/x86/kvm/ |
| H A D | emulate.c | 3943 #define EXT(_f, _e) { .flags = ((_f) | RMExt), .u.group = (_e) } in check_perm_out() 3944 #define G(_f, _g) { .flags = ((_f) | Group | ModRM), .u.group = (_g) } in check_perm_out() 3945 #define GD(_f, _g) { .flags = ((_f) | GroupDual | ModRM), .u.gdual = (_g) } in check_perm_out() 3946 #define ID(_f, _i) { .flags = ((_f) | InstrDual | ModRM), .u.idual = (_i) } in check_perm_out() 3947 #define MD(_f, _m) { .flags = ((_f) | ModeDua in check_perm_out() 3953 EXT(_f,_e) global() argument 3954 G(_f,_g) global() argument 3955 GD(_f,_g) global() argument 3956 ID(_f,_i) global() argument 3957 MD(_f,_m) global() argument 3958 E(_f,_e) global() argument 3959 I(_f,_e) global() argument 3960 II(_f,_e,_i) global() argument 3962 IIP(_f,_e,_i,_p) global() argument 3965 GP(_f,_g) global() argument 3967 D2bv(_f) global() argument 3968 D2bvIP(_f,_i,_p) global() argument 3969 I2bv(_f,_e) global() argument 3970 F2bv(_f,_e) global() argument 3971 I2bvIP(_f,_e,_i,_p) global() argument 3974 I6ALU(_f,_e) global() argument [all...] |
| /linux/include/uapi/linux/ |
| H A D | sysinfo.h | 22 char _f[20-2*sizeof(__kernel_ulong_t)-sizeof(__u32)]; /* Padding: libc5 uses this.. */ member
|
| /linux/rust/kernel/ |
| H A D | debugfs.rs | 236 _f: &'static F, in read_write_file() 288 _f: &'static F, in write_only_file() 582 pub fn read_callback_file<T, F>(&self, name: &CStr, data: &'data T, _f: &'static F) in read_write_file() 638 _f: &'static F,
|
| /linux/arch/arm64/include/asm/ |
| H A D | kvm_host.h | 961 #define __vcpu_single_flag(_set, _f) _set, (_f), (_f) 963 #define __unpack_flag(_set, _f, _m) _f 1058 #define __vcpu_except_flags(_f) iflags, (_f << __EXCEPT_SHIFT), __EXCEPT_MASK_VAL 978 __vcpu_single_flag(_set,_f) global() argument 980 __unpack_flag(_set,_f,_m) global() argument 1075 __vcpu_except_flags(_f) global() argument
|
| /linux/arch/microblaze/include/uapi/asm/ |
| H A D | elf.h | 107 #define ELF_PLAT_INIT(_r, _f) \ argument
|
| /linux/drivers/rtc/ |
| H A D | rtc-mt7622.c | 52 #define MTK_RTC_TREG(_t, _f) (0x40 + (0x4 * (_f)) + ((_t) * 0x20)) argument
|
| /linux/drivers/ptp/ |
| H A D | ptp_vmclock.c | 61 #define VMCLOCK_FIELD_PRESENT(_c, _f) \ argument 62 (le32_to_cpu((_c)->size) >= (offsetof(struct vmclock_abi, _f) + \ 63 sizeof((_c)->_f)))
|
| /linux/drivers/net/ethernet/sfc/ |
| H A D | efx_devlink.c | 233 #define EFX_VER_FLAG(_f) \ argument 234 (MC_CMD_GET_VERSION_V5_OUT_ ## _f ## _PRESENT_LBN)
|
| /linux/arch/x86/kernel/ |
| H A D | alternative.c | 1775 #define FINEIBT_WARN(_f, _v) \ argument 1776 WARN_ONCE((_f) != (_v), "FineIBT: " #_f " %ld != %d\n", _f, _v)
|
| /linux/drivers/comedi/drivers/ |
| H A D | ni_stc.h | 761 #define NI_M_PFI_FILTER_SEL(_c, _f) (((_f) & 0x3) << ((_c) * 2)) argument
|
| /linux/drivers/net/phy/ |
| H A D | sfp.c | 515 #define SFP_QUIRK(_v, _p, _s, _f) \ 516 { .vendor = _v, .part = _p, .support = _s, .fixup = _f, } 518 #define SFP_QUIRK_F(_v, _p, _f) SFP_QUIRK(_v, _p, NULL, _f) 497 SFP_QUIRK(_v,_p,_s,_f) global() argument 500 SFP_QUIRK_F(_v,_p,_f) global() argument
|
| /linux/kernel/ |
| H A D | sys.c | 3024 char _f[20-2*sizeof(u32)-sizeof(int)]; member
|