/Linux-v5.15/scripts/ |
D | syscallnr.sh | 57 guard=_ASM_$(basename "$outfile" | 62 echo "#ifndef $guard" 63 echo "#define $guard" 73 echo "#endif /* $guard */"
|
D | syscallhdr.sh | 68 guard=_UAPI_ASM_$(basename "$outfile" | 73 echo "#ifndef $guard" 74 echo "#define $guard" 97 echo "#endif /* $guard */"
|
D | gcc-x86_32-has-stack-protector.sh | 8 …* -S -x c -c -m32 -O0 -fstack-protector -mstack-protector-guard-reg=fs -mstack-protector-guard-sym…
|
/Linux-v5.15/arch/parisc/math-emu/ |
D | cnv_float.h | 88 #define Dbl_to_sgl_mantissa(srcA,srcB,dest,inexact,guard,sticky,odd) \ argument 90 guard = Dbit3p2(srcB); \ 92 inexact = guard | sticky; \ 95 #define Dbl_to_sgl_denormalized(srcA,srcB,exp,dest,inexact,guard,sticky,odd,tiny) \ argument 101 guard = inexact >> 31; \ 124 if (guard && (sticky || odd)) { \ 134 guard = odd; \ 136 inexact |= guard; \ 144 guard = inexact >> 31; \ 157 guard = inexact >> 31; \ [all …]
|
D | sgl_float.h | 289 #define Sgl_denormalize(opnd,exponent,guard,sticky,inexact) \ argument 292 guard = (Sall(opnd) >> -exponent) & 1; \ 294 inexact = guard | sticky; \ 298 guard = 0; \
|
/Linux-v5.15/Documentation/devicetree/bindings/display/ |
D | atmel,lcdc.txt | 56 - atmel,guard-time: lcd guard time (Delay in frame periods) 71 atmel,guard-time = <9>;
|
/Linux-v5.15/arch/riscv/ |
D | Makefile | 82 $(eval KBUILD_CFLAGS += -mstack-protector-guard=tls \ 83 -mstack-protector-guard-reg=tp \ 84 -mstack-protector-guard-offset=$(shell \
|
/Linux-v5.15/Documentation/arm64/ |
D | memory.rst | 40 fffffbfffe000000 fffffbfffe7fffff 8MB [guard region] 42 fffffbffff800000 fffffbffffffffff 8MB [guard region] 44 fffffe0000000000 ffffffffffffffff 2TB [guard region] 58 fffffbfffe000000 fffffbfffe7fffff 8MB [guard region] 60 fffffbffff800000 fffffbffffffffff 8MB [guard region] 62 ffffffe000000000 ffffffffffffffff 128GB [guard region]
|
/Linux-v5.15/drivers/media/usb/dvb-usb-v2/ |
D | mxl111sf-demod.c | 143 enum fe_guard_interval *guard) in mxl1x1sf_demod_get_tps_guard_interval() argument 153 *guard = GUARD_INTERVAL_1_32; in mxl1x1sf_demod_get_tps_guard_interval() 156 *guard = GUARD_INTERVAL_1_16; in mxl1x1sf_demod_get_tps_guard_interval() 159 *guard = GUARD_INTERVAL_1_8; in mxl1x1sf_demod_get_tps_guard_interval() 162 *guard = GUARD_INTERVAL_1_4; in mxl1x1sf_demod_get_tps_guard_interval()
|
/Linux-v5.15/drivers/thermal/intel/ |
D | intel_powerclamp.c | 79 unsigned int guard; member 326 unsigned int guard, unsigned int win) in powerclamp_adjust_controls() argument 359 return set_target_ratio + guard <= current_ratio; in powerclamp_adjust_controls() 379 w_data->guard = 1 + w_data->target_ratio / 20; in clamp_balancing_func() 422 w_data->guard, in clamp_idle_injection_func()
|
/Linux-v5.15/drivers/media/dvb-frontends/cxd2880/ |
D | cxd2880_top.c | 710 info.guard = CXD2880_DVBT_GUARD_1_4; in cxd2880_set_ber_per_period_t() 717 denominator_tbl[info.guard]; in cxd2880_set_ber_per_period_t() 721 denominator_tbl[info.guard]; in cxd2880_set_ber_per_period_t() 725 denominator_tbl[info.guard]; in cxd2880_set_ber_per_period_t() 746 denominator_tbl[info.guard]; in cxd2880_set_ber_per_period_t() 750 denominator_tbl[info.guard]; in cxd2880_set_ber_per_period_t() 754 denominator_tbl[info.guard]; in cxd2880_set_ber_per_period_t() 757 63000000 * bw * 2 / denominator_tbl[info.guard]; in cxd2880_set_ber_per_period_t() 760 denominator_tbl[info.guard]; in cxd2880_set_ber_per_period_t() 763 bw * 2 / denominator_tbl[info.guard]; in cxd2880_set_ber_per_period_t() [all …]
|
D | cxd2880_tnrdmd_dvbt_mon.c | 85 *guard) in cxd2880_tnrdmd_dvbt_mon_mode_guard() 90 if (!tnr_dmd || !mode || !guard) in cxd2880_tnrdmd_dvbt_mon_mode_guard() 110 mode, guard); in cxd2880_tnrdmd_dvbt_mon_mode_guard() 134 *guard = (enum cxd2880_dvbt_guard)(rdata & 0x03); in cxd2880_tnrdmd_dvbt_mon_mode_guard() 280 info->guard = (enum cxd2880_dvbt_guard)((rdata[1] >> 3) & 0x03); in cxd2880_tnrdmd_dvbt_mon_tps_info()
|
D | cxd2880_dvbt.h | 64 enum cxd2880_dvbt_guard guard; member
|
D | cxd2880_tnrdmd_dvbt_mon.h | 30 *guard);
|
/Linux-v5.15/arch/arm64/ |
D | Makefile | 54 $(eval KBUILD_CFLAGS += -mstack-protector-guard=sysreg \ 55 -mstack-protector-guard-reg=sp_el0 \ 56 -mstack-protector-guard-offset=$(shell \
|
/Linux-v5.15/tools/bpf/bpftool/ |
D | gen.c | 62 static void get_header_guard(char *guard, const char *obj_name) in get_header_guard() argument 66 sprintf(guard, "__%s_SKEL_H__", obj_name); in get_header_guard() 67 for (i = 0; guard[i]; i++) in get_header_guard() 68 guard[i] = toupper(guard[i]); in get_header_guard()
|
/Linux-v5.15/arch/x86/ |
D | Makefile | 84 KBUILD_CFLAGS += -mstack-protector-guard-reg=fs -mstack-protector-guard-symbol=__stack_chk_guard 86 KBUILD_CFLAGS += -mstack-protector-guard=global
|
/Linux-v5.15/arch/powerpc/ |
D | Makefile | 116 cflags-$(CONFIG_STACKPROTECTOR) += -mstack-protector-guard=tls 118 cflags-$(CONFIG_STACKPROTECTOR) += -mstack-protector-guard-reg=r13 120 cflags-$(CONFIG_STACKPROTECTOR) += -mstack-protector-guard-reg=r2 443 …$(eval KBUILD_CFLAGS += -mstack-protector-guard-offset=$(shell awk '{if ($$2 == "PACA_CANARY") pri… 445 …$(eval KBUILD_CFLAGS += -mstack-protector-guard-offset=$(shell awk '{if ($$2 == "TASK_CANARY") pri…
|
/Linux-v5.15/scripts/dummy-tools/ |
D | gcc | 79 if arg_contain -mstack-protector-guard-reg=fs "$@"; then
|
/Linux-v5.15/include/uapi/linux/ |
D | bsg.h | 23 __s32 guard; /* [i] 'Q' to differentiate from v3 */ member
|
/Linux-v5.15/Documentation/dev-tools/ |
D | kfence.rst | 47 requires 2 pages, one for the object itself and the other one used as a guard 48 page; object pages are interleaved with guard pages, and every object page is 49 therefore surrounded by two guard pages. 162 KFENCE also uses pattern-based redzones on the other side of an object's guard 241 object page are "guard pages", whose attributes are changed to a protected 289 <http://llvm.org/docs/GwpAsan.html>`_. GWP-ASan also relies on guard pages and
|
/Linux-v5.15/Documentation/networking/ |
D | mac80211-injection.rst | 48 IEEE80211_RADIOTAP_MCS_SGI use short guard interval 63 IEEE80211_RADIOTAP_VHT_FLAG_SGI: use short guard interval
|
/Linux-v5.15/arch/s390/ |
D | Makefile | 81 ifneq ($(call cc-option,-mstack-size=8192 -mstack-guard=128),) 84 cflags-$(CONFIG_CHECK_STACK) += -mstack-guard=$(CONFIG_STACK_GUARD)
|
/Linux-v5.15/arch/m68k/fpsp040/ |
D | round.S | 124 | ext_grs --- extract guard, round and sticky bits 127 | Output: d0{31:29}= guard, round, sticky 129 | The ext_grs extract the guard/round/sticky bits according to the 132 | updated guard,round,sticky in d0{31:29} 411 | d0 is guard,round,sticky 489 | d0{31:29} initial guard,round,sticky 493 | d0{31:29} final guard,round,sticky 506 bfextu WBTEMP_GRS(%a6){#6:#3},%d2 |extract guard,round, sticky bit
|
/Linux-v5.15/drivers/staging/fwserial/ |
D | dma_fifo.h | 46 int guard; /* ofs of guard area */ member
|