Home
last modified time | relevance | path

Searched refs:PSR_N_BIT (Results 1 – 12 of 12) sorted by relevance

/OK3568_Linux_fs/kernel/arch/arm/probes/
H A Ddecode.c106 return cpsr & PSR_N_BIT; in __check_mi()
111 return (~cpsr) & PSR_N_BIT; in __check_pl()
139 return (~cpsr) & PSR_N_BIT; in __check_ge()
145 return cpsr & PSR_N_BIT; in __check_lt()
152 return (~temp) & PSR_N_BIT; in __check_gt()
159 return temp & PSR_N_BIT; in __check_le()
/OK3568_Linux_fs/kernel/arch/arm/include/asm/
H A Dvirt.h16 #define BOOT_CPU_MODE_MISMATCH PSR_N_BIT
/OK3568_Linux_fs/kernel/arch/arm64/kernel/
H A Dinsn.c1457 return (pstate & PSR_N_BIT) != 0; in __check_mi()
1462 return (pstate & PSR_N_BIT) == 0; in __check_pl()
1490 return (pstate & PSR_N_BIT) == 0; in __check_ge()
1496 return (pstate & PSR_N_BIT) != 0; in __check_lt()
1505 return (temp & PSR_N_BIT) == 0; in __check_gt()
1514 return (temp & PSR_N_BIT) != 0; in __check_le()
H A Dprocess.c254 pstate & PSR_N_BIT ? 'N' : 'n', in print_pstate()
H A Dptrace.c1933 regs->pstate &= PSR_N_BIT | PSR_Z_BIT | PSR_C_BIT | PSR_V_BIT; in valid_native_regs()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/asm/
H A Dptrace.h74 #define PSR_N_BIT 0x80000000 macro
/OK3568_Linux_fs/kernel/arch/arm/include/uapi/asm/
H A Dptrace.h87 #define PSR_N_BIT 0x80000000 macro
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/asm/
H A Dptrace.h55 #define PSR_N_BIT 0x80000000 macro
/OK3568_Linux_fs/kernel/arch/arm64/include/uapi/asm/
H A Dptrace.h58 #define PSR_N_BIT 0x80000000 macro
/OK3568_Linux_fs/kernel/arch/arm64/kernel/probes/
H A Dkprobes_trampoline.S45 and x0, x0, #(PSR_N_BIT | PSR_Z_BIT | PSR_C_BIT | PSR_V_BIT)
/OK3568_Linux_fs/kernel/arch/arm64/kvm/hyp/
H A Dexception.c113 new |= (old & PSR_N_BIT); in enter_exception64()
/OK3568_Linux_fs/kernel/arch/arm/kernel/
H A Dprocess.c141 buf[0] = flags & PSR_N_BIT ? 'N' : 'n'; in __show_regs()