/kernel/linux/linux-5.10/arch/arm/kernel/ |
H A D | elf.c | 12 unsigned int eflags; in elf_check_arch() local 25 eflags = x->e_flags; in elf_check_arch() 26 if ((eflags & EF_ARM_EABI_MASK) == EF_ARM_EABI_UNKNOWN) { in elf_check_arch() 30 if ((eflags & EF_ARM_APCS_26) && !(elf_hwcap & HWCAP_26BIT)) in elf_check_arch() 33 flt_fmt = eflags & (EF_ARM_VFP_FLOAT | EF_ARM_SOFT_FLOAT); in elf_check_arch() 45 unsigned int eflags = x->e_flags; in elf_set_personality() local 57 if ((eflags & EF_ARM_EABI_MASK) == EF_ARM_EABI_UNKNOWN && in elf_set_personality() 58 (eflags & EF_ARM_APCS_26)) in elf_set_personality() 72 eflags & (EF_ARM_EABI_MASK | EF_ARM_SOFT_FLOAT)) { in elf_set_personality()
|
/kernel/linux/linux-6.6/arch/arm/kernel/ |
H A D | elf.c | 12 unsigned int eflags; in elf_check_arch() local 25 eflags = x->e_flags; in elf_check_arch() 26 if ((eflags & EF_ARM_EABI_MASK) == EF_ARM_EABI_UNKNOWN) { in elf_check_arch() 30 if ((eflags & EF_ARM_APCS_26) && !(elf_hwcap & HWCAP_26BIT)) in elf_check_arch() 33 flt_fmt = eflags & (EF_ARM_VFP_FLOAT | EF_ARM_SOFT_FLOAT); in elf_check_arch() 45 unsigned int eflags = x->e_flags; in elf_set_personality() local 57 if ((eflags & EF_ARM_EABI_MASK) == EF_ARM_EABI_UNKNOWN && in elf_set_personality() 58 (eflags & EF_ARM_APCS_26)) in elf_set_personality() 72 eflags & (EF_ARM_EABI_MASK | EF_ARM_SOFT_FLOAT)) { in elf_set_personality()
|
/kernel/linux/linux-5.10/tools/testing/selftests/x86/ |
H A D | helpers.h | 9 unsigned long eflags; in get_eflags() local 21 : "=r" (eflags) :: "memory"); in get_eflags() 23 return eflags; in get_eflags() 26 static inline void set_eflags(unsigned long eflags) in set_eflags() argument 38 :: "r" (eflags) : "flags", "memory"); in set_eflags()
|
H A D | entry_from_vm86.c | 300 v86.regs.eflags |= X86_EFLAGS_VIP; in main() 301 v86.regs.eflags &= ~X86_EFLAGS_IF; in main() 305 v86.regs.eflags = X86_EFLAGS_VIP; in main() 310 v86.regs.eflags = X86_EFLAGS_VIP; in main() 315 v86.regs.eflags = 0; in main() 319 v86.regs.eflags = 0; in main()
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | util.c | 88 } eflags[] = { variable 102 for (i = 0; i < length(eflags); i++) in estr() 103 if (f & eflags[i].flag) { in estr() 104 p += sprintf(p, "%s%s", all ? "|" : "", eflags[i].s); in estr() 105 all |= eflags[i].flag; in estr() 124 for (j = 0; j < length(eflags); j++) in econv() 125 if (strcmp(a[i], eflags[j].s) == 0) { in econv() 126 *f |= eflags[j].flag; in econv() 129 if (j == length(eflags)) { in econv()
|
/kernel/linux/linux-6.6/tools/testing/selftests/x86/ |
H A D | helpers.h | 16 static inline void set_eflags(unsigned long eflags) in set_eflags() argument 19 __builtin_ia32_writeeflags_u64(eflags); in set_eflags() 21 __builtin_ia32_writeeflags_u32(eflags); in set_eflags()
|
H A D | entry_from_vm86.c | 300 v86.regs.eflags |= X86_EFLAGS_VIP; in main() 301 v86.regs.eflags &= ~X86_EFLAGS_IF; in main() 305 v86.regs.eflags = X86_EFLAGS_VIP; in main() 310 v86.regs.eflags = X86_EFLAGS_VIP; in main() 315 v86.regs.eflags = 0; in main() 319 v86.regs.eflags = 0; in main()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | regexec.c | 142 llvm_regmatch_t pmatch[], int eflags) in llvm_regexec() 156 eflags = GOODFLAGS(eflags); in llvm_regexec() 158 if (g->nstates <= (long)(CHAR_BIT*sizeof(states1)) && !(eflags®_LARGE)) in llvm_regexec() 159 return(smatcher(g, string, nmatch, pmatch, eflags)); in llvm_regexec() 161 return(lmatcher(g, string, nmatch, pmatch, eflags)); in llvm_regexec() 141 llvm_regexec(const llvm_regex_t *preg, const char *string, size_t nmatch, llvm_regmatch_t pmatch[], int eflags) llvm_regexec() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | regexec.c | 142 llvm_regmatch_t pmatch[], int eflags) in llvm_regexec() 156 eflags = GOODFLAGS(eflags); in llvm_regexec() 158 if (g->nstates <= (long)(CHAR_BIT*sizeof(states1)) && !(eflags®_LARGE)) in llvm_regexec() 159 return(smatcher(g, string, nmatch, pmatch, eflags)); in llvm_regexec() 161 return(lmatcher(g, string, nmatch, pmatch, eflags)); in llvm_regexec() 141 llvm_regexec(const llvm_regex_t *preg, const char *string, size_t nmatch, llvm_regmatch_t pmatch[], int eflags) llvm_regexec() argument
|
/third_party/musl/libc-test/src/common/ |
H A D | mtest.c | 110 } eflags[] = { variable 124 for (i = 0; i < length(eflags); i++) in estr() 125 if (f & eflags[i].flag) { in estr() 126 p += sprintf(p, "%s%s", all ? "|" : "", eflags[i].s); in estr() 127 all |= eflags[i].flag; in estr()
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2posix.c | 218 regmatch_t pmatch[], int eflags) 220 return pcre2_regexec(preg, string, nmatch, pmatch, eflags); 353 regmatch_t pmatch[], int eflags) in pcre2_regexec() 361 if ((eflags & REG_NOTBOL) != 0) options |= PCRE2_NOTBOL; in pcre2_regexec() 362 if ((eflags & REG_NOTEOL) != 0) options |= PCRE2_NOTEOL; in pcre2_regexec() 363 if ((eflags & REG_NOTEMPTY) != 0) options |= PCRE2_NOTEMPTY; in pcre2_regexec() 376 if ((eflags & REG_STARTEND) != 0) in pcre2_regexec() 352 pcre2_regexec(const regex_t *preg, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags) pcre2_regexec() argument
|
/kernel/linux/linux-6.6/arch/loongarch/kernel/ |
H A D | signal.c | 68 extern asmlinkage int _save_lbt_context(void __user *regs, void __user *eflags); 69 extern asmlinkage int _restore_lbt_context(void __user *regs, void __user *eflags); 236 uint32_t __user *eflags = (uint32_t *)&ctx->eflags; in copy_lbt_to_sigcontext() local 242 err |= __put_user(current->thread.lbt.eflags, eflags); in copy_lbt_to_sigcontext() 251 uint32_t __user *eflags = (uint32_t *)&ctx->eflags; in copy_lbt_from_sigcontext() local 257 err |= __get_user(current->thread.lbt.eflags, eflags); in copy_lbt_from_sigcontext() 341 uint32_t __user *eflags = (uint32_t *)&ctx->eflags; save_hw_lbt_context() local 349 uint32_t __user *eflags = (uint32_t *)&ctx->eflags; restore_hw_lbt_context() local 624 uint32_t __user *eflags = (uint32_t *)&lbt_ctx->eflags; protected_save_lbt_context() local 660 uint32_t __user *eflags = (uint32_t *)&lbt_ctx->eflags; protected_restore_lbt_context() local [all...] |
/kernel/linux/linux-5.10/drivers/gpio/ |
H A D | gpiolib-cdev.c | 415 * @eflags: the edge flags, GPIO_V2_LINE_FLAG_EDGE_RISING and/or 434 u64 eflags; member 558 if (line->eflags == (GPIO_V2_LINE_FLAG_EDGE_RISING | in edge_irq_thread() 568 } else if (line->eflags == GPIO_V2_LINE_FLAG_EDGE_RISING) { in edge_irq_thread() 571 } else if (line->eflags == GPIO_V2_LINE_FLAG_EDGE_FALLING) { in edge_irq_thread() 653 if (!line->eflags) in debounce_work_func() 661 if (((line->eflags == GPIO_V2_LINE_FLAG_EDGE_RISING) && !level) || in debounce_work_func() 662 ((line->eflags == GPIO_V2_LINE_FLAG_EDGE_FALLING) && level)) in debounce_work_func() 761 line->eflags = 0; in edge_detector_stop() 770 u64 eflags) in edge_detector_setup() 767 edge_detector_setup(struct line *line, struct gpio_v2_line_config *lc, unsigned int line_idx, u64 eflags) edge_detector_setup() argument 817 edge_detector_update(struct line *line, struct gpio_v2_line_config *lc, unsigned int line_idx, u64 eflags, bool polarity_change) edge_detector_update() argument 1473 u32 eflags; global() member 1723 u32 eflags; lineevent_create() local [all...] |
/kernel/linux/linux-5.10/arch/loongarch/kernel/ |
H A D | signal.c | 185 uint32_t __user *eflags = (uint32_t *)&ctx->eflags; in copy_lbt_to_sigcontext() local 191 err |= __put_user(current->thread.lbt.eflags, eflags); in copy_lbt_to_sigcontext() 200 uint32_t __user *eflags = (uint32_t *)&ctx->eflags; in copy_lbt_from_sigcontext() local 206 err |= __get_user(current->thread.lbt.eflags, eflags); in copy_lbt_from_sigcontext() 273 uint32_t __user *eflags = (uint32_t *)&ctx->eflags; in save_hw_lbt_context() local 281 uint32_t __user *eflags = (uint32_t *)&ctx->eflags; restore_hw_lbt_context() local 522 uint32_t __user *eflags = (uint32_t *)&lbt_ctx->eflags; protected_save_lbt_context() local 553 uint32_t __user *eflags = (uint32_t *)&lbt_ctx->eflags; protected_restore_lbt_context() local [all...] |
/kernel/linux/linux-5.10/arch/x86/include/uapi/asm/ |
H A D | ptrace.h | 33 long eflags; member 73 unsigned long eflags; member
|
/kernel/linux/linux-6.6/arch/x86/include/uapi/asm/ |
H A D | ptrace.h | 33 long eflags; member 73 unsigned long eflags; member
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/asm-x86/asm/ |
H A D | ptrace.h | 41 long eflags; member 65 unsigned long eflags; member
|
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/asm-x86/asm/ |
H A D | ptrace.h | 41 long eflags; member 65 unsigned long eflags; member
|
/kernel/linux/linux-5.10/arch/x86/boot/ |
H A D | edd.c | 35 return -(oreg.eflags & X86_EFLAGS_CF); /* 0 or -1 */ in read_mbr() 87 if (oreg.eflags & X86_EFLAGS_CF) in get_edd_info() 111 if (!(oreg.eflags & X86_EFLAGS_CF)) { in get_edd_info()
|
/kernel/linux/linux-6.6/arch/x86/boot/ |
H A D | edd.c | 35 return -(oreg.eflags & X86_EFLAGS_CF); /* 0 or -1 */ in read_mbr() 87 if (oreg.eflags & X86_EFLAGS_CF) in get_edd_info() 111 if (!(oreg.eflags & X86_EFLAGS_CF)) { in get_edd_info()
|
/kernel/linux/linux-5.10/drivers/infiniband/hw/hfi1/ |
H A D | trace_rx.h | 69 __field(u64, eflags) 78 __entry->eflags = rhf_err_flags(packet->rhf); 87 "[%s] ctxt %d eflags 0x%llx etype %d,%s hlen %d tlen %d updegr %d etail %d", 90 __entry->eflags,
|
H A D | trace_misc.h | 115 __field(u64, eflags) 123 __entry->eflags = rhf_err_flags(packet->rhf); 131 "[%s] ctxt %d eflags 0x%llx hlen %d tlen %d updegr %d etail %d", 134 __entry->eflags,
|
/kernel/linux/linux-6.6/drivers/infiniband/hw/hfi1/ |
H A D | trace_rx.h | 28 __field(u64, eflags) 37 __entry->eflags = rhf_err_flags(packet->rhf); 46 "[%s] ctxt %d eflags 0x%llx etype %d,%s hlen %d tlen %d updegr %d etail %d", 49 __entry->eflags,
|
H A D | trace_misc.h | 74 __field(u64, eflags) 82 __entry->eflags = rhf_err_flags(packet->rhf); 90 "[%s] ctxt %d eflags 0x%llx hlen %d tlen %d updegr %d etail %d", 93 __entry->eflags,
|
/third_party/musl/porting/liteos_m/kernel/src/regex/ |
H A D | regexec.c | 82 #define CHECK_CHAR_CLASSES(trans_i, tnfa, eflags) \ 171 regoff_t *match_tags, int eflags, in tre_tnfa_run_parallel() 182 int reg_notbol = eflags & REG_NOTBOL; in tre_tnfa_run_parallel() 183 int reg_noteol = eflags & REG_NOTEOL; in tre_tnfa_run_parallel() 387 || CHECK_CHAR_CLASSES(trans_i, tnfa, eflags))) in tre_tnfa_run_parallel() 594 regoff_t *match_tags, int eflags, regoff_t *match_end_ofs) in tre_tnfa_run_backtrack() 604 int reg_notbol = eflags & REG_NOTBOL; in tre_tnfa_run_backtrack() 605 int reg_noteol = eflags & REG_NOTEOL; in tre_tnfa_run_backtrack() 829 || CHECK_CHAR_CLASSES(trans_i, tnfa, eflags))) in tre_tnfa_run_backtrack() 997 size_t nmatch, regmatch_t pmatch[restrict], int eflags) in regexec() 170 tre_tnfa_run_parallel(const tre_tnfa_t *tnfa, const void *string, regoff_t *match_tags, int eflags, regoff_t *match_end_ofs) tre_tnfa_run_parallel() argument 593 tre_tnfa_run_backtrack(const tre_tnfa_t *tnfa, const void *string, regoff_t *match_tags, int eflags, regoff_t *match_end_ofs) tre_tnfa_run_backtrack() argument 996 regexec(const regex_t *restrict preg, const char *restrict string, size_t nmatch, regmatch_t pmatch[restrict], int eflags) regexec() argument [all...] |