/Linux-v4.19/Documentation/media/ |
D | Makefile | 14 echo ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions; \ 15 ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions 18 ${PARSER} $< $@ $(SRC_DIR)/$(notdir $@).exceptions 22 $(BUILDDIR)/audio.h.rst: ${UAPI}/dvb/audio.h ${PARSER} $(SRC_DIR)/audio.h.rst.exceptions 25 $(BUILDDIR)/ca.h.rst: ${UAPI}/dvb/ca.h ${PARSER} $(SRC_DIR)/ca.h.rst.exceptions 28 $(BUILDDIR)/dmx.h.rst: ${UAPI}/dvb/dmx.h ${PARSER} $(SRC_DIR)/dmx.h.rst.exceptions 31 $(BUILDDIR)/frontend.h.rst: ${UAPI}/dvb/frontend.h ${PARSER} $(SRC_DIR)/frontend.h.rst.exceptions 34 $(BUILDDIR)/net.h.rst: ${UAPI}/dvb/net.h ${PARSER} $(SRC_DIR)/net.h.rst.exceptions 37 $(BUILDDIR)/video.h.rst: ${UAPI}/dvb/video.h ${PARSER} $(SRC_DIR)/video.h.rst.exceptions 40 $(BUILDDIR)/videodev2.h.rst: ${UAPI}/videodev2.h ${PARSER} $(SRC_DIR)/videodev2.h.rst.exceptions [all …]
|
/Linux-v4.19/arch/arm/vfp/ |
D | vfpdouble.c | 70 u32 vfp_double_normaliseround(int dd, struct vfp_double *vd, u32 fpscr, u32 exceptions, const char … in vfp_double_normaliseround() argument 81 if (vd->exponent == 2047 && (vd->significand == 0 || exceptions)) in vfp_double_normaliseround() 161 exceptions |= FPSCR_IXC; in vfp_double_normaliseround() 172 exceptions |= FPSCR_OFC | FPSCR_IXC; in vfp_double_normaliseround() 186 exceptions |= FPSCR_UFC; in vfp_double_normaliseround() 196 dd, d, exceptions); in vfp_double_normaliseround() 199 return exceptions; in vfp_double_normaliseround() 444 u32 exceptions = 0; in vfp_double_fcvts() local 454 exceptions = FPSCR_IOC; in vfp_double_fcvts() 475 return vfp_single_normaliseround(sd, &vsd, fpscr, exceptions, "fcvts"); in vfp_double_fcvts() [all …]
|
D | vfpsingle.c | 70 u32 __vfp_single_normaliseround(int sd, struct vfp_single *vs, u32 fpscr, u32 exceptions) in __vfp_single_normaliseround() argument 72 u32 vfp_single_normaliseround(int sd, struct vfp_single *vs, u32 fpscr, u32 exceptions, const char … in __vfp_single_normaliseround() 83 if (vs->exponent == 255 && (vs->significand == 0 || exceptions)) in __vfp_single_normaliseround() 166 exceptions |= FPSCR_IXC; in __vfp_single_normaliseround() 177 exceptions |= FPSCR_OFC | FPSCR_IXC; in __vfp_single_normaliseround() 191 exceptions |= FPSCR_UFC; in __vfp_single_normaliseround() 202 sd, d, exceptions); in __vfp_single_normaliseround() 207 return exceptions; in __vfp_single_normaliseround() 487 u32 exceptions = 0; in vfp_single_fcvtd() local 497 exceptions = FPSCR_IOC; in vfp_single_fcvtd() [all …]
|
D | vfpmodule.c | 251 static void vfp_raise_exceptions(u32 exceptions, u32 inst, u32 fpscr, struct pt_regs *regs) in vfp_raise_exceptions() argument 255 pr_debug("VFP: raising exceptions %08x\n", exceptions); in vfp_raise_exceptions() 257 if (exceptions == VFP_EXCEPTION_ERROR) { in vfp_raise_exceptions() 268 if (exceptions & (FPSCR_N|FPSCR_Z|FPSCR_C|FPSCR_V)) in vfp_raise_exceptions() 271 fpscr |= exceptions; in vfp_raise_exceptions() 276 if (exceptions & stat && fpscr & en) \ in vfp_raise_exceptions() 297 u32 exceptions = VFP_EXCEPTION_ERROR; in vfp_emulate_instruction() local 307 exceptions = vfp_single_cpdo(inst, fpscr); in vfp_emulate_instruction() 309 exceptions = vfp_double_cpdo(inst, fpscr); in vfp_emulate_instruction() 325 return exceptions & ~VFP_NAN_FLAG; in vfp_emulate_instruction() [all …]
|
D | vfphw.S | 84 ldr r3, [sp, #S_PSR] @ Neither lazy restore nor FP exceptions 98 bic r5, r1, #FPEXC_EX @ make sure exceptions are disabled 110 @ exceptions, so we can get at the
|
D | vfp.h | 249 u32 __vfp_single_normaliseround(int sd, struct vfp_single *vs, u32 fpscr, u32 exceptions); 251 u32 vfp_single_normaliseround(int sd, struct vfp_single *vs, u32 fpscr, u32 exceptions, const char … 346 u32 vfp_double_normaliseround(int dd, struct vfp_double *vd, u32 fpscr, u32 exceptions, const char …
|
/Linux-v4.19/security/ |
D | device_cgroup.c | 42 struct list_head exceptions; member 96 list_for_each_entry(walk, &dev_cgroup->exceptions, list) { in dev_exception_add() 110 list_add_tail_rcu(&excopy->list, &dev_cgroup->exceptions); in dev_exception_add() 124 list_for_each_entry_safe(walk, tmp, &dev_cgroup->exceptions, list) { in dev_exception_rm() 144 list_for_each_entry_safe(ex, tmp, &dev_cgroup->exceptions, list) { in __dev_exception_clean() 185 ret = dev_exceptions_copy(&dev_cgroup->exceptions, in devcgroup_online() 186 &parent_dev_cgroup->exceptions); in devcgroup_online() 215 INIT_LIST_HEAD(&dev_cgroup->exceptions); in devcgroup_css_alloc() 287 list_for_each_entry_rcu(ex, &devcgroup->exceptions, list) { in devcgroup_seq_show() 313 static bool match_exception(struct list_head *exceptions, short type, in match_exception() argument [all …]
|
/Linux-v4.19/scripts/ |
D | spdxcheck.py | 29 self.exceptions = { } 56 spdx.exceptions[exception] = [] 62 spdx.exceptions[exception].append(lic) 66 if not len(spdx.exceptions[exception]): 106 if id not in self.spdx.exceptions: 108 if self.lastid not in self.spdx.exceptions[id]: 273 sys.stderr.write('Exception IDs %12d\n' %len(spdx.exceptions))
|
/Linux-v4.19/Documentation/arm/VFP/ |
D | release-notes.txt | 8 provides support for the exceptions bounced from VFP hardware found 31 All the above pass softfloat tests with the following exceptions: 35 - the handling of underflow exceptions is slightly different. If a
|
/Linux-v4.19/arch/x86/include/asm/trace/ |
D | exceptions.h | 3 #define TRACE_SYSTEM exceptions 49 #define TRACE_INCLUDE_FILE exceptions
|
/Linux-v4.19/arch/m68k/fpsp040/ |
D | x_unimp.S | 59 andl #0xFF00FF,%d0 |clear all but accrued exceptions 62 fmovel #0,%FPCR |clear all user exceptions for FPSP 74 bral gen_except |post any exceptions and return
|
D | stanh.S | 117 fmovel %d1,%FPCR |restore users exceptions 157 fmovel %d1,%FPCR |restore users exceptions 165 fmovel %d1,%FPCR |restore users exceptions 179 fmovel %d1,%FPCR |restore users exceptions
|
D | gen_except.S | 4 | gen_except --- FPSP routine to detect reportable exceptions 10 | Any routine which may report an exceptions must load 13 | Priority for exceptions is: 124 | Frame is idle, so check for exceptions reported through 169 | commonE1 does this for E1 exceptions, which are snan, 170 | operr, and dz. commonE3 does this for E3 exceptions, which 209 | No bits in the enable byte match existing exceptions. Check for 221 | No exceptions are to be reported. If the instruction was
|
/Linux-v4.19/drivers/net/ethernet/freescale/fman/ |
D | fman.c | 504 u32 exceptions; member 560 u32 exceptions; member 715 if (cfg->exceptions & EX_DMA_BUS_ERROR) in dma_init() 717 if ((cfg->exceptions & EX_DMA_SYSTEM_WRITE_ECC) | in dma_init() 718 (cfg->exceptions & EX_DMA_READ_ECC) | in dma_init() 719 (cfg->exceptions & EX_DMA_FM_WRITE_ECC)) in dma_init() 836 if (cfg->exceptions & EX_FPM_STALL_ON_TASKS) in fpm_init() 838 if (cfg->exceptions & EX_FPM_SINGLE_ECC) in fpm_init() 840 if (cfg->exceptions & EX_FPM_DOUBLE_ECC) in fpm_init() 864 if (cfg->exceptions & EX_IRAM_ECC) { in fpm_init() [all …]
|
D | fman_tgec.c | 217 u32 exceptions; member 673 tgec->exceptions |= bit_mask; in tgec_set_exception() 675 tgec->exceptions &= ~bit_mask; in tgec_set_exception() 715 tgec->exceptions &= ~(TGEC_IMASK_REM_FAULT | in tgec_init() 718 err = init(tgec->regs, cfg, tgec->exceptions); in tgec_init() 807 tgec->exceptions = (TGEC_IMASK_MDIO_SCAN_EVENT | in tgec_config()
|
D | fman_memac.c | 347 u32 exceptions; member 412 u32 exceptions) in init() argument 473 set_exception(regs, exceptions, true); in init() 1016 memac->exceptions |= bit_mask; in memac_set_exception() 1018 memac->exceptions &= ~bit_mask; in memac_set_exception() 1066 memac->max_speed, slow_10g_if, memac->exceptions); in memac_init() 1186 memac->exceptions = (MEMAC_IMASK_TSECC_ER | MEMAC_IMASK_TECC_ER | in memac_config()
|
/Linux-v4.19/arch/m68k/ifpsp060/ |
D | fskeleton.S | 109 | for enabled operand error exceptions. The exception stack frame is an operand error 128 | for enabled signalling NaN exceptions. The exception stack frame is a signalling NaN 147 | for enabled divide-by-zero exceptions. The exception stack frame is a divide-by-zero 166 | for enabled inexact exceptions. The exception stack frame is an inexact 185 | for enabled bsun exceptions. The exception stack frame is a bsun 206 | encountered. Three different types of exceptions can enter the F-Line exception 220 | encountered. Three different types of exceptions can enter the F-Line exception 224 | exceptions branch here.
|
/Linux-v4.19/Documentation/cgroup-v1/ |
D | devices.txt | 66 group behavior exceptions 79 In case parent's exceptions change and local exceptions are not allowed 111 list of exceptions. The internal state is controlled using the same user 113 implementation. Removal or addition of exceptions that will reduce the access
|
/Linux-v4.19/Documentation/process/ |
D | license-rules.rst | 9 LICENSES/exceptions/Linux-syscall-note, as described in the COPYING file. 112 Other examples using WITH exceptions found in the kernel are:: 284 Some licenses can be amended with exceptions which grant certain rights 285 which the original license does not. These exceptions are available 288 LICENSES/exceptions/ 295 LICENSES/exceptions/Linux-syscall-note 301 LICENSES/exceptions/GCC-exception-2.0 368 All SPDX license identifiers and exceptions must have a corresponding file
|
/Linux-v4.19/ |
D | COPYING | 12 LICENSES/exceptions/Linux-syscall-note
|
/Linux-v4.19/arch/microblaze/kernel/ |
D | Makefile | 17 obj-y += dma.o exceptions.o \
|
/Linux-v4.19/scripts/gcc-plugins/ |
D | Makefile | 12 HOST_EXTRACXXFLAGS += -fno-exceptions -fasynchronous-unwind-tables -ggdb
|
/Linux-v4.19/arch/powerpc/include/asm/ |
D | nvram.h | 70 const char *exceptions[]);
|
/Linux-v4.19/Documentation/i2c/busses/ |
D | i2c-ali1563 | 19 notable exceptions. One of those happens to be the fact they upgraded the
|
/Linux-v4.19/arch/powerpc/kernel/ |
D | nvram_64.c | 901 const char *name, int sig, const char *exceptions[]) in nvram_can_remove_partition() argument 908 } else if (exceptions) { in nvram_can_remove_partition() 910 for (except = exceptions; *except; except++) { in nvram_can_remove_partition() 928 const char *exceptions[]) in nvram_remove_partition() argument 934 if (!nvram_can_remove_partition(part, name, sig, exceptions)) in nvram_remove_partition()
|