/linux-2.4.37.9/drivers/video/ |
D | au1100fb.h | 107 #define LCD_HORZTIMING_HN2_N(N) (((N)-1)<<24) argument 109 #define LCD_HORZTIMING_HN1_N(N) (((N)-1)<<16) argument 111 #define LCD_HORZTIMING_HPW_N(N) (((N)-1)<<10) argument 113 #define LCD_HORZTIMING_PPL_N(N) (((N)-1)<<0) argument 117 #define LCD_VERTTIMING_VN2_N(N) (((N)-1)<<24) argument 119 #define LCD_VERTTIMING_VN1_N(N) (((N)-1)<<16) argument 121 #define LCD_VERTTIMING_VPW_N(N) (((N)-1)<<10) argument 123 #define LCD_VERTTIMING_LPP_N(N) (((N)-1)<<0) argument 131 #define LCD_CLKCONTROL_BF_N(N) (((N)-1)<<10) argument 133 #define LCD_CLKCONTROL_PCD_N(N) ((N)<<0) argument [all …]
|
/linux-2.4.37.9/ |
D | CREDITS | 4 scripts. The fields are: name (N), email (E), web-address 12 N: Matti Aarnio 19 N: Dragos Acostachioaie 27 N: Monalisa Agrawal 33 N: Dave Airlie 40 N: Tigran A. Aivazian 48 N: Werner Almesberger 57 N: Tim Alpaerts 65 N: Anton Altaparmakov 74 N: C. Scott Ananian [all …]
|
/linux-2.4.37.9/arch/m68k/fpsp040/ |
D | stwotox.S | 29 | 3. Decompose X as X = N/64 + r where |r| <= 1/128. Furthermore 30 | decompose N as 31 | N = 64(M + M') + j, j = 0,1,2,...,63. 43 | N := round-to-int(y). Decompose N as 44 | N = 64(M + M') + j, j = 0,1,2,...,63. 233 fmovel %fp1,N(%a6) | ...N = ROUND-TO-INT(64 X) 236 fmovel N(%a6),%fp1 | ...N --> FLOATING FMT 237 movel N(%a6),%d0 242 asrl #6,%d2 | ...d2 IS L, N = 64L + J 336 fmovel %fp1,N(%a6) | ...N=INT(X*64*LOG10/LOG2) [all …]
|
D | setox.S | 79 | Step 2. Calculate N = round-to-nearest-int( X * 64/log2 ). 81 | 2.2 N := round-to-nearest-integer( X * 64/log2 ). 82 | 2.3 Calculate J = N mod 64; so J = 0,1,2,..., or 63. 83 | 2.4 Calculate M = (N - J)/64; so N = 64M + J. 89 | N := round-to-nearest-integer(Z) 103 | Step 3. Calculate X - N*log2/64. 104 | 3.1 R := X + N*L1, where L1 := single-precision(-log2/64). 105 | 3.2 R := R + N*L2, L2 := extended-precision(-log2/64 - L1). 108 | b) N*L1 is exact because N is no longer than 22 bits and 110 | c) The calculation X+N*L1 is also exact due to cancellation. [all …]
|
D | ssin.S | 34 | 3. Decompose X as X = N(Pi/2) + r where |r| <= Pi/4. Let 35 | k = N mod 4, so in particular, k = 0,1,2,or 3. Overwrite 59 | 2. Decompose X as X = N(Pi/2) + r where |r| <= Pi/4. Let 60 | k = N mod 4, so in particular, k = 0,1,2,or 3. 144 .set N,L_SCR2 define 206 lea PITBL+0x200,%a1 | ...TABLE OF N*PI/2, N = -32,...,32 210 fmovel %fp1,N(%a6) | ...CONVERT TO INTEGER 212 movel N(%a6),%d0 214 addal %d0,%a1 | ...A1 IS THE ADDRESS OF N*PIBY2 224 |--GET N+ADJN AND SEE IF SIN(R) OR COS(R) IS NEEDED [all …]
|
/linux-2.4.37.9/arch/ppc/math-emu/ |
D | op-2.h | 12 #define _FP_FRAC_SLL_2(X,N) \ argument 14 if ((N) < _FP_W_TYPE_SIZE) \ 16 if (__builtin_constant_p(N) && (N) == 1) \ 23 X##_f1 = X##_f1 << (N) | X##_f0 >> (_FP_W_TYPE_SIZE - (N)); \ 24 X##_f0 <<= (N); \ 29 X##_f1 = X##_f0 << ((N) - _FP_W_TYPE_SIZE); \ 34 #define _FP_FRAC_SRL_2(X,N) \ argument 36 if ((N) < _FP_W_TYPE_SIZE) \ 38 X##_f0 = X##_f0 >> (N) | X##_f1 << (_FP_W_TYPE_SIZE - (N)); \ 39 X##_f1 >>= (N); \ [all …]
|
D | op-1.h | 13 #define _FP_FRAC_SLL_1(X,N) \ argument 15 if (__builtin_constant_p(N) && (N) == 1) \ 18 X##_f <<= (N); \ 20 #define _FP_FRAC_SRL_1(X,N) (X##_f >>= N) argument 23 #define _FP_FRAC_SRS_1(X,N,sz) __FP_FRAC_SRS_1(X##_f, N, sz) argument 25 #define __FP_FRAC_SRS_1(X,N,sz) \ argument 26 (X = (X >> (N) | (__builtin_constant_p(N) && (N) == 1 \ 27 ? X & 1 : (X << (_FP_W_TYPE_SIZE - (N))) != 0)))
|
D | op-4.h | 44 #define _FP_FRAC_SLL_4(X,N) \ argument 47 _skip = (N) / _FP_W_TYPE_SIZE; \ 48 _up = (N) % _FP_W_TYPE_SIZE; \ 59 #define _FP_FRAC_SRL_4(X,N) \ argument 62 _skip = (N) / _FP_W_TYPE_SIZE; \ 63 _down = (N) % _FP_W_TYPE_SIZE; \ 78 #define _FP_FRAC_SRS_4(X,N,size) \ argument 82 _skip = (N) / _FP_W_TYPE_SIZE; \ 83 _down = (N) % _FP_W_TYPE_SIZE; \
|
/linux-2.4.37.9/include/math-emu/ |
D | op-8.h | 34 #define _FP_FRAC_SLL_8(X,N) \ argument 37 _skip = (N) / _FP_W_TYPE_SIZE; \ 38 _up = (N) % _FP_W_TYPE_SIZE; \ 54 #define _FP_FRAC_SRL_8(X,N) \ argument 57 _skip = (N) / _FP_W_TYPE_SIZE; \ 58 _down = (N) % _FP_W_TYPE_SIZE; \ 80 #define _FP_FRAC_SRS_8(X,N,size) \ argument 84 _skip = (N) / _FP_W_TYPE_SIZE; \ 85 _down = (N) % _FP_W_TYPE_SIZE; \
|
D | op-1.h | 36 #define _FP_FRAC_SLL_1(X,N) \ argument 38 if (__builtin_constant_p(N) && (N) == 1) \ 41 X##_f <<= (N); \ 43 #define _FP_FRAC_SRL_1(X,N) (X##_f >>= N) argument 46 #define _FP_FRAC_SRS_1(X,N,sz) __FP_FRAC_SRS_1(X##_f, N, sz) argument 48 #define __FP_FRAC_SRS_1(X,N,sz) \ argument 49 (X = (X >> (N) | (__builtin_constant_p(N) && (N) == 1 \ 50 ? X & 1 : (X << (_FP_W_TYPE_SIZE - (N))) != 0)))
|
D | op-2.h | 35 #define _FP_FRAC_SLL_2(X,N) \ argument 37 if ((N) < _FP_W_TYPE_SIZE) \ 39 if (__builtin_constant_p(N) && (N) == 1) \ 46 X##_f1 = X##_f1 << (N) | X##_f0 >> (_FP_W_TYPE_SIZE - (N)); \ 47 X##_f0 <<= (N); \ 52 X##_f1 = X##_f0 << ((N) - _FP_W_TYPE_SIZE); \ 57 #define _FP_FRAC_SRL_2(X,N) \ argument 59 if ((N) < _FP_W_TYPE_SIZE) \ 61 X##_f0 = X##_f0 >> (N) | X##_f1 << (_FP_W_TYPE_SIZE - (N)); \ 62 X##_f1 >>= (N); \ [all …]
|
/linux-2.4.37.9/arch/ia64/lib/ |
D | memcpy.S | 55 # define N (MEM_LAT + 4) macro 56 # define Nrot ((N + 7) & ~7) 91 mov ar.ec=N 110 .rotr val[N] 111 .rotp p[N] 119 (p[N-1])st8 [dst]=val[N-1],8 192 # undef N 194 # define N (MEM_LAT + 5) /* number of stages */ macro 195 # define Nrot ((N+1 + 2 + 7) & ~7) /* number of rotating regs */ 245 mov ar.ec=N [all …]
|
/linux-2.4.37.9/crypto/ |
D | anubis.c | 465 int N, R, i, pos, r; in anubis_setkey() local 482 N = ctx->key_len >> 5; in anubis_setkey() 483 ctx->R = R = 8 + N; in anubis_setkey() 486 for (i = 0, pos = 0; i < N; i++, pos += 4) { in anubis_setkey() 502 K0 = T4[(kappa[N - 1] >> 24) ]; in anubis_setkey() 503 K1 = T4[(kappa[N - 1] >> 16) & 0xff]; in anubis_setkey() 504 K2 = T4[(kappa[N - 1] >> 8) & 0xff]; in anubis_setkey() 505 K3 = T4[(kappa[N - 1] ) & 0xff]; in anubis_setkey() 506 for (i = N - 2; i >= 0; i--) { in anubis_setkey() 540 for (i = 0; i < N; i++) { in anubis_setkey() [all …]
|
/linux-2.4.37.9/include/asm-mips64/mips-boards/ |
D | bonito64.h | 353 #define BONITO_GPIO_IOW(N) (1<<(BONITO_GPIO_GPIOW_SHIFT+(N))) argument 354 #define BONITO_GPIO_IOR(N) (1<<(BONITO_GPIO_GPIOR_SHIFT+(N))) argument 355 #define BONITO_GPIO_INR(N) (1<<(BONITO_GPIO_GPINR_SHIFT+(N))) argument 374 #define BONITO_ICU_MBOX(N) (1<<(BONITO_ICU_MBOXES_SHIFT+(N))) argument 375 #define BONITO_ICU_GPIO(N) (1<<(BONITO_ICU_GPIOS_SHIFT+(N))) argument 376 #define BONITO_ICU_GPIN(N) (1<<(BONITO_ICU_GPINS_SHIFT+(N))) argument
|
/linux-2.4.37.9/include/asm-mips/mips-boards/ |
D | bonito64.h | 353 #define BONITO_GPIO_IOW(N) (1<<(BONITO_GPIO_GPIOW_SHIFT+(N))) argument 354 #define BONITO_GPIO_IOR(N) (1<<(BONITO_GPIO_GPIOR_SHIFT+(N))) argument 355 #define BONITO_GPIO_INR(N) (1<<(BONITO_GPIO_GPINR_SHIFT+(N))) argument 374 #define BONITO_ICU_MBOX(N) (1<<(BONITO_ICU_MBOXES_SHIFT+(N))) argument 375 #define BONITO_ICU_GPIO(N) (1<<(BONITO_ICU_GPIOS_SHIFT+(N))) argument 376 #define BONITO_ICU_GPIN(N) (1<<(BONITO_ICU_GPINS_SHIFT+(N))) argument
|
/linux-2.4.37.9/arch/mips/arc/ |
D | file.c | 18 ULONG N, ULONG *Count) in ArcGetDirectoryEntry() argument 20 return ARC_CALL4(get_vdirent, FileID, Buffer, N, Count); in ArcGetDirectoryEntry() 36 ArcRead(ULONG FileID, VOID *Buffer, ULONG N, ULONG *Count) in ArcRead() argument 38 return ARC_CALL4(read, FileID, Buffer, N, Count); in ArcRead() 48 ArcWrite(ULONG FileID, PVOID Buffer, ULONG N, PULONG Count) in ArcWrite() argument 50 return ARC_CALL4(write, FileID, Buffer, N, Count); in ArcWrite()
|
/linux-2.4.37.9/net/802/pseudo/ |
D | pseudocode | 289 NORMAL15 V(S):=N(R) 294 ; V(S):=N(R) 299 NORMAL16 V(S):=N(R) 303 NORMAL17 V(S):=N(R) 415 BUSY19 V(S):=N(R) 420 ; V(S):=N(R) 424 BUSY20 V(S):=N(R) 428 BUSY21 V(S):=N(R) 510 REJECT14 V(S):=N(R) 515 ; V(S):=N(R) [all …]
|
/linux-2.4.37.9/arch/alpha/kernel/ |
D | setup.c | 100 #define N(a) (sizeof(a)/sizeof(a[0])) macro 224 for (i = 0; i < N(standard_io_resources); ++i) in reserve_std_resources() 855 if (type < N(systype_vecs)) { in get_sysvec() 858 (type - ST_API_BIAS) < N(api_vecs)) { in get_sysvec() 861 (type - ST_UNOFFICIAL_BIAS) < N(unofficial_vecs)) { in get_sysvec() 875 if (member < N(alcor_indices)) in get_sysvec() 879 if (member < N(eb164_indices)) in get_sysvec() 887 if (member < N(eb64p_indices)) in get_sysvec() 891 if (member < N(eb66_indices)) in get_sysvec() 895 if (member < N(marvel_indices)) in get_sysvec() [all …]
|
/linux-2.4.37.9/Documentation/networking/ |
D | multicast.txt | 21 3c507 NO NO NO N/A 26 arcnet NO NO NO N/A 31 de600 NO NO NO N/A 37 eexpress NO NO NO N/A 42 ibmtr NO NO NO N/A 48 seeq NO NO NO N/A 50 sk_g16 NO NO YES N/A
|
/linux-2.4.37.9/Documentation/sound/ |
D | cs46xx | 65 Use the "defaultorder=N" module parameter to change the buffer size if 92 defaultorder=N 93 where N is a value from 1 to 12 99 (2^N) * PAGE_SIZE = allocated buffer size 103 cs_debuglevel=N 105 where N is a value from 0 (no debug printfs), to 9 (maximum) 109 hercules_egpio_disable=N 110 where N is a 0 (enable egpio), or a 1 (disable egpio support) 113 initdelay=N 122 powerdown=N [all …]
|
/linux-2.4.37.9/drivers/char/rio/ |
D | daemon.h | 307 #define rIOCN(N) (RIOC|(N)) argument 308 #define rIOCR(N,T) (RIOC|(N)) argument 309 #define rIOCW(N,T) (RIOC|(N)) argument
|
/linux-2.4.37.9/drivers/message/i2o/ |
D | README | 21 AMI MegaRAID[0] YES YES N/A YES N/A 27 Intel SCU RAID FAIL[2] ??? N/A ??? FAIL[2] 28 Promise Supertrak100 YES[3] YES[3] N/A YES[3] N/A 29 Promise SX6000 YES[3] YES[3] N/A YES[3] N/A 30 Symbios FC920 YES YES[4] N/A YES YES
|
/linux-2.4.37.9/arch/x86_64/kernel/ |
D | nmi.c | 63 #define P4_ESCR_EVENT_SELECT(N) ((N)<<25) argument 67 #define P4_CCCR_THRESHOLD(N) ((N)<<20) argument 71 #define P4_CCCR_ESCR_SELECT(N) ((N)<<13) argument
|
/linux-2.4.37.9/arch/i386/kernel/ |
D | nmi.c | 52 #define P4_ESCR_EVENT_SELECT(N) ((N)<<25) argument 56 #define P4_CCCR_THRESHOLD(N) ((N)<<20) argument 60 #define P4_CCCR_ESCR_SELECT(N) ((N)<<13) argument
|
/linux-2.4.37.9/include/asm-s390/ |
D | siginfo.h | 96 #define __SI_CODE(T,N) ((T) << 16 | ((N) & 0xffff)) argument 104 #define __SI_CODE(T,N) (N) argument
|