| /libc/sysdeps/linux/sparc64/soft-fp/ |
| A D | op-8.h | 42 #define _FP_FRAC_SLL_8(X, N) \ argument 47 _FP_FRAC_SLL_8_skip = (N) / _FP_W_TYPE_SIZE; \ 48 _FP_FRAC_SLL_8_up = (N) % _FP_W_TYPE_SIZE; \ 73 #define _FP_FRAC_SRL_8(X, N) \ argument 78 _FP_FRAC_SRL_8_skip = (N) / _FP_W_TYPE_SIZE; \ 79 _FP_FRAC_SRL_8_down = (N) % _FP_W_TYPE_SIZE; \ 109 #define _FP_FRAC_SRS_8(X, N, size) \ argument 115 _FP_FRAC_SRS_8_skip = (N) / _FP_W_TYPE_SIZE; \ 116 _FP_FRAC_SRS_8_down = (N) % _FP_W_TYPE_SIZE; \
|
| A D | op-1.h | 44 #define _FP_FRAC_SLL_1(X, N) \ argument 47 if (__builtin_constant_p (N) && (N) == 1) \ 50 X##_f <<= (N); \ 53 #define _FP_FRAC_SRL_1(X, N) (X##_f >>= N) argument 56 #define _FP_FRAC_SRST_1(X, S, N, sz) __FP_FRAC_SRST_1 (X##_f, S, (N), (sz)) argument 57 #define _FP_FRAC_SRS_1(X, N, sz) __FP_FRAC_SRS_1 (X##_f, (N), (sz)) argument 59 #define __FP_FRAC_SRST_1(X, S, N, sz) \ argument 62 S = (__builtin_constant_p (N) && (N) == 1 \ 65 X = X >> (N); \ 69 #define __FP_FRAC_SRS_1(X, N, sz) \ argument [all …]
|
| A D | op-2.h | 47 if (__builtin_constant_p (N) && (N) == 1) \ 54 X##_f1 = X##_f1 << (N) | X##_f0 >> (_FP_W_TYPE_SIZE - (N)); \ 55 X##_f0 <<= (N); \ 68 X##_f0 = X##_f0 >> (N) | X##_f1 << (_FP_W_TYPE_SIZE - (N)); \ 69 X##_f1 >>= (N); \ 80 S = (__builtin_constant_p (N) && (N) == 1 \ 83 X##_f0 = (X##_f1 << (_FP_W_TYPE_SIZE - (N)) | X##_f0 >> (N)); \ 84 X##_f1 >>= (N); \ 98 X##_f0 = (X##_f1 << (_FP_W_TYPE_SIZE - (N)) | X##_f0 >> (N) \ 99 | (__builtin_constant_p (N) && (N) == 1 \ [all …]
|
| A D | op-4.h | 45 #define _FP_FRAC_SLL_4(X, N) \ argument 50 _FP_FRAC_SLL_4_skip = (N) / _FP_W_TYPE_SIZE; \ 51 _FP_FRAC_SLL_4_up = (N) % _FP_W_TYPE_SIZE; \ 77 #define _FP_FRAC_SRL_4(X, N) \ argument 82 _FP_FRAC_SRL_4_skip = (N) / _FP_W_TYPE_SIZE; \ 83 _FP_FRAC_SRL_4_down = (N) % _FP_W_TYPE_SIZE; \ 113 #define _FP_FRAC_SRST_4(X, S, N, size) \ argument 119 _FP_FRAC_SRST_4_skip = (N) / _FP_W_TYPE_SIZE; \ 120 _FP_FRAC_SRST_4_down = (N) % _FP_W_TYPE_SIZE; \ 153 #define _FP_FRAC_SRS_4(X, N, size) \ argument [all …]
|
| /libc/sysdeps/linux/or1k/ |
| A D | spr_defs.h | 100 #define SPR_DVR(N) (SPRGROUP_D + (N)) argument 101 #define SPR_DCR(N) (SPRGROUP_D + 8 + (N)) argument 110 #define SPR_PCCR(N) (SPRGROUP_PC + (N)) argument 111 #define SPR_PCMR(N) (SPRGROUP_PC + 8 + (N)) argument
|
| /libc/sysdeps/linux/common/bits/ |
| A D | uClibc_locale.h | 44 # define __XL_NPP(N) N argument 351 # define __XL_NPP(N) N ## _l argument 358 # define __XL_NPP(N) N
|
| /libc/misc/fnmatch/ |
| A D | fnmatch.c | 232 # define MEMPCPY(D, S, N) mempcpy (D, S, N) argument 233 # define MEMCHR(S, C, N) memchr (S, C, N) argument 255 # define MEMPCPY(D, S, N) wmempcpy (D, S, N) argument 256 # define MEMCHR(S, C, N) wmemchr (S, C, N) argument
|
| /libc/stdlib/malloc-standard/ |
| A D | malloc.h | 955 #define check_remalloced_chunk(P,N) argument 956 #define check_malloced_chunk(P,N) argument 966 #define check_remalloced_chunk(P,N) __do_check_remalloced_chunk(P,N) argument 967 #define check_malloced_chunk(P,N) __do_check_malloced_chunk(P,N) argument
|
| /libc/string/metag/ |
| A D | memset.S | 24 MOV D0Ar2,#8 ! Need 8 - N in D1Ar5 ... 25 SUB D1Ar5,D0Ar2,D0Ar4 ! ... subtract N
|
| /libc/sysdeps/linux/sparc/sparcv7/ |
| A D | udiv.S | 62 ! Here the dividend is >= 2**(31-N) or so. We must be careful here, 63 ! as our usual N-at-a-shot divide step will cause overflow and havoc. 64 ! The number of bits in the result here is N*ITER+SC, where SC <= N.
|
| A D | urem.S | 62 ! Here the dividend is >= 2**(31-N) or so. We must be careful here, 63 ! as our usual N-at-a-shot divide step will cause overflow and havoc. 64 ! The number of bits in the result here is N*ITER+SC, where SC <= N.
|
| A D | sdiv.S | 75 ! Here the dividend is >= 2**(31-N) or so. We must be careful here, 76 ! as our usual N-at-a-shot divide step will cause overflow and havoc. 77 ! The number of bits in the result here is N*ITER+SC, where SC <= N.
|
| A D | rem.S | 75 ! Here the dividend is >= 2**(31-N) or so. We must be careful here, 76 ! as our usual N-at-a-shot divide step will cause overflow and havoc. 77 ! The number of bits in the result here is N*ITER+SC, where SC <= N.
|
| A D | umul.S | 22 andcc %g0, %g0, %o4 ! zero the partial product; clear N & V
|
| /libc/misc/ftw/ |
| A D | ftw.c | 89 # define mempcpy(D, S, N) ((void *) ((char *) memcpy (D, S, N) + (N))) argument 104 # define __getcwd(P, N) xgetcwd () argument
|
| /libc/string/ |
| A D | _collate.c | 159 #define N (1) in next_weight() macro 163 #define N n0 in next_weight() macro 231 n = N; in next_weight()
|
| /libc/stdio/ |
| A D | _stdio.h | 319 #define __stdio_fwrite(B,N,S) __stdio_WRITE((S),(B),(N)) argument
|
| A D | _vfprintf.c | 754 #define _is_equal_or_bigger_arg(C,N) (((C) == __PA_NOARG) || ((C) == (N))) argument
|
| /libc/string/mips/ |
| A D | memcpy.S | 812 # define ALIGN_OFFSET(N) (N) argument 815 # define ALIGN_OFFSET(N) (NSIZE-N) argument
|