/glibc-2.36/localedata/ |
D | gez_ER.UTF-8@abegede.in | 1 አ ; <S12A0> % ETHIOPIC SYLLABLE GLOTTAL A old glibc collation-symbol: <ALEF> 2 ኡ ; <S12A1> % ETHIOPIC SYLLABLE GLOTTAL U old glibc collation-symbol: <ALEF> 3 ኢ ; <S12A2> % ETHIOPIC SYLLABLE GLOTTAL I old glibc collation-symbol: <ALEF> 4 ኣ ; <S12A3> % ETHIOPIC SYLLABLE GLOTTAL AA old glibc collation-symbol: <ALEF> 5 ኤ ; <S12A4> % ETHIOPIC SYLLABLE GLOTTAL EE old glibc collation-symbol: <ALEF> 6 እ ; <S12A5> % ETHIOPIC SYLLABLE GLOTTAL E old glibc collation-symbol: <ALEF> 7 ኦ ; <S12A6> % ETHIOPIC SYLLABLE GLOTTAL O old glibc collation-symbol: <ALEF> 8 ኧ ; <S12A7> % ETHIOPIC SYLLABLE GLOTTAL WA old glibc collation-symbol: <ALEF> 9 በ ; <S1260> % ETHIOPIC SYLLABLE BA old glibc collation-symbol: <BET> 10 ቡ ; <S1261> % ETHIOPIC SYLLABLE BU old glibc collation-symbol: <BET> [all …]
|
/glibc-2.36/localedata/locales/ |
D | gez_ER@abegede | 58 <S12A0> % ETHIOPIC SYLLABLE GLOTTAL A old glibc collation-symbol: <ALEF> 59 <S12A1> % ETHIOPIC SYLLABLE GLOTTAL U old glibc collation-symbol: <ALEF> 60 <S12A2> % ETHIOPIC SYLLABLE GLOTTAL I old glibc collation-symbol: <ALEF> 61 <S12A3> % ETHIOPIC SYLLABLE GLOTTAL AA old glibc collation-symbol: <ALEF> 62 <S12A4> % ETHIOPIC SYLLABLE GLOTTAL EE old glibc collation-symbol: <ALEF> 63 <S12A5> % ETHIOPIC SYLLABLE GLOTTAL E old glibc collation-symbol: <ALEF> 64 <S12A6> % ETHIOPIC SYLLABLE GLOTTAL O old glibc collation-symbol: <ALEF> 65 <S12A7> % ETHIOPIC SYLLABLE GLOTTAL WA old glibc collation-symbol: <ALEF> 66 <S1260> % ETHIOPIC SYLLABLE BA old glibc collation-symbol: <BET> 67 <S1261> % ETHIOPIC SYLLABLE BU old glibc collation-symbol: <BET> [all …]
|
/glibc-2.36/sysdeps/pthread/ |
D | tst-cancel19.c | 60 int old, rc; in do_test() local 72 rc = pthread_setcanceltype (PTHREAD_CANCEL_DEFERRED, &old); in do_test() 78 if (old != PTHREAD_CANCEL_DEFERRED && old != PTHREAD_CANCEL_ASYNCHRONOUS) in do_test() 81 old); in do_test() 88 rc = pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, &old); in do_test() 94 if (old != PTHREAD_CANCEL_DEFERRED) in do_test() 97 old); in do_test() 104 rc = pthread_setcanceltype (PTHREAD_CANCEL_DEFERRED, &old); in do_test() 110 if (old != PTHREAD_CANCEL_ASYNCHRONOUS) in do_test() 113 old); in do_test() [all …]
|
D | tst-cancel30.c | 32 int old; in tf() local 36 TEST_COMPARE (pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, &old), 0); in tf() 37 TEST_COMPARE (old, PTHREAD_CANCEL_ASYNCHRONOUS); in tf() 42 TEST_COMPARE (pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, &old), 0); in tf() 43 TEST_COMPARE (old, PTHREAD_CANCEL_ASYNCHRONOUS); in tf()
|
/glibc-2.36/sysdeps/alpha/ |
D | atomic-machine.h | 34 #define __arch_compare_and_exchange_xxx_8_int(mem, new, old, mb1, mb2) \ argument 57 [__old] "Ir" ((uint64_t)(uint8_t)(uint64_t)(old)), \ 62 #define __arch_compare_and_exchange_xxx_16_int(mem, new, old, mb1, mb2) \ argument 85 [__old] "Ir" ((uint64_t)(uint16_t)(uint64_t)(old)), \ 90 #define __arch_compare_and_exchange_xxx_32_int(mem, new, old, mb1, mb2) \ argument 105 [__old] "Ir" ((uint64_t)(int32_t)(uint64_t)(old)), \ 110 #define __arch_compare_and_exchange_xxx_64_int(mem, new, old, mb1, mb2) \ argument 125 [__old] "Ir" ((uint64_t)(old)), \ 132 #define __arch_compare_and_exchange_bool_8_int(mem, new, old, mb1, mb2) \ argument 134 __arch_compare_and_exchange_xxx_8_int(mem, new, old, mb1, mb2); \ [all …]
|
/glibc-2.36/sysdeps/powerpc/fpu/ |
D | fenv_private.h | 30 #define __TEST_AND_BEGIN_NON_STOP(old, new) do {} while ((old) * (new) * 0 != 0) argument 31 #define __TEST_AND_END_NON_STOP(old, new) do {} while ((old) * (new) * 0 != 0) argument 40 fenv_union_t old, new; in libc_feholdexcept_setround_ppc() local 42 old.fenv = *envp = fegetenv_register (); in libc_feholdexcept_setround_ppc() 44 __TEST_AND_BEGIN_NON_STOP (old.l, 0ULL); in libc_feholdexcept_setround_ppc() 55 fenv_union_t old, new; in __libc_femergeenv_ppc() local 58 old.fenv = fegetenv_register (); in __libc_femergeenv_ppc() 61 new.l = (old.l & old_mask) | (new.l & new_mask); in __libc_femergeenv_ppc() 63 __TEST_AND_END_NON_STOP (old.l, new.l); in __libc_femergeenv_ppc() 64 __TEST_AND_BEGIN_NON_STOP (old.l, new.l); in __libc_femergeenv_ppc() [all …]
|
D | fesetmode.c | 25 fenv_union_t old, new; in fesetmode() local 30 old.fenv = fegetenv_control (); in fesetmode() 31 new.l = (new.l & ~FPSCR_STATUS_MASK) | (old.l & FPSCR_STATUS_MASK); in fesetmode() 33 if (old.l == new.l) in fesetmode() 36 __TEST_AND_EXIT_NON_STOP (old.l, new.l); in fesetmode() 37 __TEST_AND_ENTER_NON_STOP (old.l, new.l); in fesetmode()
|
D | feholdexcpt.c | 25 fenv_union_t old, new; in __feholdexcept() local 28 old.fenv = *envp = fegetenv_register (); in __feholdexcept() 32 new.l = old.l & 0xffffffff00000007LL; in __feholdexcept() 34 if (new.l == old.l) in __feholdexcept() 37 __TEST_AND_ENTER_NON_STOP (old.l, 0ULL); in __feholdexcept()
|
D | feupdateenv.c | 25 fenv_union_t old, new; in __feupdateenv() local 29 old.fenv = fegetenv_register (); in __feupdateenv() 34 new.l = (old.l & 0xffffffff1fffff00LL) | (new.l & 0x1ff80fff); in __feupdateenv() 36 __TEST_AND_EXIT_NON_STOP (old.l, new.l); in __feupdateenv() 37 __TEST_AND_ENTER_NON_STOP (old.l, new.l); in __feupdateenv()
|
D | fesetenv.c | 25 fenv_union_t old, new; in __fesetenv() local 29 old.fenv = fegetenv_control (); in __fesetenv() 31 __TEST_AND_EXIT_NON_STOP (old.l, new.l); in __fesetenv() 32 __TEST_AND_ENTER_NON_STOP (old.l, new.l); in __fesetenv()
|
/glibc-2.36/posix/ |
D | tst-nice.c | 29 int old; in do_test() local 33 old = nice (0); in do_test() 34 if (old == -1 && errno != 0) in do_test() 36 printf ("break: nice(%d) return: %d, %m\n", 0, old); in do_test() 53 if (ret <= old) in do_test() 55 printf ("FAIL: retval (%d) of nice(%d) != %d\n", ret, incr, old + incr); in do_test() 69 printf ("PASS: nice(%d) from %d return: %d\n", incr, old, ret); in do_test()
|
/glibc-2.36/sysdeps/loongarch/ |
D | math_private.h | 172 fpu_control_t old, new; in libc_feholdexcept_setround_loongarch_ctx() local 175 _FPU_GETCW (old); in libc_feholdexcept_setround_loongarch_ctx() 176 ctx->env.__fp_control_register = old; in libc_feholdexcept_setround_loongarch_ctx() 179 new = old & ~(_FPU_MASK_ALL); in libc_feholdexcept_setround_loongarch_ctx() 184 if (__glibc_unlikely (new != old)) in libc_feholdexcept_setround_loongarch_ctx() 223 fpu_control_t old, new; in libc_feholdsetround_loongarch_ctx() local 226 _FPU_GETCW (old); in libc_feholdsetround_loongarch_ctx() 227 ctx->env.__fp_control_register = old; in libc_feholdsetround_loongarch_ctx() 230 new = (old & ~_FPU_RC_MASK) | round; in libc_feholdsetround_loongarch_ctx() 232 if (__glibc_unlikely (new != old)) in libc_feholdsetround_loongarch_ctx()
|
/glibc-2.36/sysdeps/mips/fpu/ |
D | fenv_private.h | 169 fpu_control_t old, new; in libc_feholdexcept_setround_mips_ctx() local 172 _FPU_GETCW (old); in libc_feholdexcept_setround_mips_ctx() 173 ctx->env.__fp_control_register = old; in libc_feholdexcept_setround_mips_ctx() 176 new = old & ~(_FPU_MASK_ALL); in libc_feholdexcept_setround_mips_ctx() 181 if (__glibc_unlikely (new != old)) in libc_feholdexcept_setround_mips_ctx() 218 fpu_control_t old, new; in libc_feholdsetround_mips_ctx() local 221 _FPU_GETCW (old); in libc_feholdsetround_mips_ctx() 222 ctx->env.__fp_control_register = old; in libc_feholdsetround_mips_ctx() 225 new = (old & ~_FPU_RC_MASK) | round; in libc_feholdsetround_mips_ctx() 227 if (__glibc_unlikely (new != old)) in libc_feholdsetround_mips_ctx()
|
/glibc-2.36/sysdeps/unix/sysv/linux/sh/ |
D | lowlevel-atomic.h | 46 #define XADD(reg, mem, old, tmp) \ 52 98: mov.l mem, old; \ 54 add old, tmp; \ 58 #define XCHG(reg, mem, old) \ 64 98: mov.l mem, old; \ 68 #define CMPXCHG(reg, mem, new, old) \ 74 98: mov.l mem, old; \ 75 cmp/eq old, reg; \
|
/glibc-2.36/sysdeps/mach/hurd/ |
D | setitimer.c | 133 struct itimerval *old, void *crit, 159 setitimer_locked (const struct itimerval *new, struct itimerval *old, in setitimer_locked() argument 180 if (old) in setitimer_locked() 181 *old = _hurd_itimerval; in setitimer_locked() 245 if ((newval.it_value.tv_sec | newval.it_value.tv_usec) != 0 || old != NULL) in setitimer_locked() 321 if (old != NULL) in setitimer_locked() 323 old->it_value = remaining; in setitimer_locked() 324 old->it_interval = old_interval; in setitimer_locked() 339 struct itimerval *old) in __setitimer() argument 360 ret = setitimer_locked (new, old, crit, 0); in __setitimer()
|
/glibc-2.36/sysdeps/posix/ |
D | alarm.c | 31 struct itimerval old, new; in alarm() local 38 if (__setitimer (ITIMER_REAL, &new, &old) < 0) in alarm() 41 retval = old.it_value.tv_sec; in alarm() 44 if (old.it_value.tv_usec >= 500000 in alarm() 45 || (retval == 0 && old.it_value.tv_usec > 0)) in alarm()
|
D | rename.c | 24 rename (const char *old, const char *new) in rename() argument 27 if (__link (old, new) < 0) in rename() 34 || __link (old, new) < 0) in rename() 40 if (__unlink (old) < 0) in rename()
|
/glibc-2.36/elf/ |
D | dl-scope.c | 25 _dl_scope_free (void *old) in _dl_scope_free() argument 31 free (old); in _dl_scope_free() 38 free (old); in _dl_scope_free() 43 fsl->list[0] = old; in _dl_scope_free() 48 fsl->list[fsl->count++] = old; in _dl_scope_free()
|
/glibc-2.36/sysdeps/arm/ |
D | atomic-machine.h | 64 # define atomic_compare_and_exchange_bool_acq(mem, new, old) \ argument 66 mem, new, old, __ATOMIC_ACQUIRE) 68 # define atomic_compare_and_exchange_val_acq(mem, new, old) \ argument 70 mem, new, old, __ATOMIC_ACQUIRE) 74 # define atomic_compare_and_exchange_val_rel(mem, new, old) \ argument 76 mem, new, old, __ATOMIC_RELEASE)
|
/glibc-2.36/signal/ |
D | sigvec.c | 71 struct sigaction old; in __sigvec() local 116 if (__sigaction (sig, n, &old) < 0) in __sigvec() 135 if (__sigaction (sig, &wrapper, &old) < 0) in __sigvec() 147 handler = old.sa_handler; in __sigvec() 149 sa_flags = old.sa_flags; in __sigvec() 161 mask = sigset_get_old_mask (&old.sa_mask); in __sigvec()
|
/glibc-2.36/sysdeps/unix/sysv/linux/ |
D | rename.c | 26 rename (const char *old, const char *new) in rename() argument 29 return INLINE_SYSCALL_CALL (rename, old, new); in rename() 31 return INLINE_SYSCALL_CALL (renameat, AT_FDCWD, old, AT_FDCWD, new); in rename() 33 return INLINE_SYSCALL_CALL (renameat2, AT_FDCWD, old, AT_FDCWD, new, 0); in rename()
|
D | renameat2.c | 24 __renameat2 (int oldfd, const char *old, int newfd, const char *new, in __renameat2() argument 28 return INLINE_SYSCALL_CALL (renameat2, oldfd, old, newfd, new, flags); in __renameat2() 31 return __renameat (oldfd, old, newfd, new); in __renameat2() 34 int ret = INLINE_SYSCALL_CALL (renameat2, oldfd, old, newfd, new, flags); in __renameat2()
|
/glibc-2.36/manual/examples/ |
D | mygetpass.c | 24 struct termios old, new; in my_getpass() local 28 if (tcgetattr (fileno (stream), &old) != 0) in my_getpass() 30 new = old; in my_getpass() 39 (void) tcsetattr (fileno (stream), TCSAFLUSH, &old); in my_getpass()
|
/glibc-2.36/sysdeps/aarch64/ |
D | atomic-machine.h | 92 # define atomic_compare_and_exchange_bool_acq(mem, new, old) \ argument 94 mem, new, old, __ATOMIC_ACQUIRE) 96 # define atomic_compare_and_exchange_val_acq(mem, new, old) \ argument 98 mem, new, old, __ATOMIC_ACQUIRE) 102 # define atomic_compare_and_exchange_val_rel(mem, new, old) \ argument 104 mem, new, old, __ATOMIC_RELEASE)
|
/glibc-2.36/sysdeps/unix/sysv/linux/loongarch/ |
D | atomic-machine.h | 93 #define atomic_compare_and_exchange_bool_acq(mem, new, old) \ argument 94 __atomic_bool_bysize (__arch_compare_and_exchange_bool, int, mem, new, old, \ 97 #define atomic_compare_and_exchange_val_acq(mem, new, old) \ argument 98 __atomic_val_bysize (__arch_compare_and_exchange_val, int, mem, new, old, \ 101 #define atomic_compare_and_exchange_val_rel(mem, new, old) \ argument 102 __atomic_val_bysize (__arch_compare_and_exchange_val, int, mem, new, old, \
|