/arch/frv/kernel/ |
D | traps.c | 113 unsigned long x, y, z; in atomic_operation() local 120 z = 0; in atomic_operation() 136 ret = get_user(z, p); in atomic_operation() 140 if (z != x) in atomic_operation() 145 if (__get_user(z, p) == 0) { in atomic_operation() 146 if (z != x) in atomic_operation() 165 ret = get_user(z, p); in atomic_operation() 171 if (__get_user(z, p) == 0) { in atomic_operation() 188 ret = get_user(z, p); in atomic_operation() 194 if (__get_user(z, p) == 0) { in atomic_operation() [all …]
|
/arch/powerpc/include/asm/ |
D | time.h | 179 ({unsigned z; asm ("mulhwu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;}) 183 ({unsigned long z; asm ("mulhdu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;})
|
/arch/mips/math-emu/ |
D | dp_sqrt.c | 40 ieee754dp y, z, t; in ieee754dp_sqrt() local 112 z = t = ieee754dp_mul(y, y); in ieee754dp_sqrt() 114 t = ieee754dp_add(t, z); in ieee754dp_sqrt() 115 z = ieee754dp_mul(ieee754dp_sub(x, z), y); in ieee754dp_sqrt() 118 t = ieee754dp_div(z, ieee754dp_add(t, x)); in ieee754dp_sqrt()
|
/arch/tile/lib/ |
D | strchr_32.c | 23 int z, g; in strchr() local 57 z = __insn_ctz(zero_matches); in strchr() 64 return (g <= z) ? ((char *)p) + (g >> 3) : NULL; in strchr()
|
D | strchr_64.c | 23 int z, g; in strchr() local 58 z = __insn_ctz(zero_matches); in strchr() 65 return (g <= z) ? ((char *)p) + (g >> 3) : NULL; in strchr()
|
/arch/arm/nwfpe/ |
D | softfloat.c | 75 int32 z; in roundAndPackInt32() local 97 z = absZ; in roundAndPackInt32() 98 if ( zSign ) z = - z; in roundAndPackInt32() 99 if ( ( absZ>>32 ) || ( z && ( ( z < 0 ) ^ zSign ) ) ) { in roundAndPackInt32() 104 return z; in roundAndPackInt32() 530 floatx80 z; in packFloatx80() local 532 z.low = zSig; in packFloatx80() 533 z.high = ( ( (bits16) zSign )<<15 ) + zExp; in packFloatx80() 534 z.__padding = 0; in packFloatx80() 535 return z; in packFloatx80() [all …]
|
D | softfloat-specialize | 111 commonNaNT z; 114 z.sign = a>>31; 115 z.low = 0; 116 z.high = ( (bits64) a )<<41; 117 return z; 205 commonNaNT z; 208 z.sign = a>>63; 209 z.low = 0; 210 z.high = a<<12; 211 return z; [all …]
|
D | softfloat-macros | 44 bits32 z; 46 z = a; 49 z = ( a>>count ) | ( ( a<<( ( - count ) & 31 ) ) != 0 ); 52 z = ( a != 0 ); 54 *zPtr = z; 69 bits64 z; 73 z = a; 76 z = ( a>>count ) | ( ( a<<( ( - count ) & 63 ) ) != 0 ); 79 z = ( a != 0 ); 82 *zPtr = z; [all …]
|
/arch/x86/math-emu/ |
D | fpu_system.h | 65 #define FPU_access_ok(x,y,z) if ( !access_ok(x,y,z) ) \ argument 75 #define FPU_code_access_ok(z) argument 80 #define FPU_code_access_ok(z) FPU_access_ok(VERIFY_READ,(void __user *)FPU_EIP,z) argument
|
/arch/alpha/lib/ |
D | csum_partial_copy.c | 23 #define extql(x,y,z) \ argument 24 __asm__ __volatile__("extql %1,%2,%0":"=r" (z):"r" (x),"r" (y)) 26 #define extqh(x,y,z) \ argument 27 __asm__ __volatile__("extqh %1,%2,%0":"=r" (z):"r" (x),"r" (y)) 29 #define mskql(x,y,z) \ argument 30 __asm__ __volatile__("mskql %1,%2,%0":"=r" (z):"r" (x),"r" (y)) 32 #define mskqh(x,y,z) \ argument 33 __asm__ __volatile__("mskqh %1,%2,%0":"=r" (z):"r" (x),"r" (y)) 35 #define insql(x,y,z) \ argument 36 __asm__ __volatile__("insql %1,%2,%0":"=r" (z):"r" (x),"r" (y)) [all …]
|
/arch/arm/vfp/ |
D | vfp.h | 115 u64 mh, ml, remh, reml, termh, terml, z; in vfp_estimate_div128to64() local 121 z = 0xffffffff00000000ULL; in vfp_estimate_div128to64() 123 z = nh; in vfp_estimate_div128to64() 124 do_div(z, mh); in vfp_estimate_div128to64() 125 z <<= 32; in vfp_estimate_div128to64() 127 mul64to128(&termh, &terml, m, z); in vfp_estimate_div128to64() 131 z -= 0x100000000ULL; in vfp_estimate_div128to64() 136 z |= 0xffffffff; in vfp_estimate_div128to64() 139 z |= remh; in vfp_estimate_div128to64() 141 return z; in vfp_estimate_div128to64()
|
D | vfpsingle.c | 290 u32 z, a; in vfp_estimate_sqrt_significand() local 299 z = 0x4000 + (a >> 17) - sqrt_oddadjust[index]; in vfp_estimate_sqrt_significand() 300 z = ((a / z) << 14) + (z << 15); in vfp_estimate_sqrt_significand() 303 z = 0x8000 + (a >> 17) - sqrt_evenadjust[index]; in vfp_estimate_sqrt_significand() 304 z = a / z + z; in vfp_estimate_sqrt_significand() 305 z = (z >= 0x20000) ? 0xffff8000 : (z << 15); in vfp_estimate_sqrt_significand() 306 if (z <= a) in vfp_estimate_sqrt_significand() 311 do_div(v, z); in vfp_estimate_sqrt_significand() 312 return v + (z >> 1); in vfp_estimate_sqrt_significand()
|
/arch/arm/mach-shark/include/mach/ |
D | uncompress.h | 26 static void putn(unsigned long z) in putn() argument 34 x='0'+((z>>((7-i)*4))&0xf); in putn()
|
/arch/arm/mach-ks8695/include/mach/ |
D | regs-switch.h | 28 #define KS8695_SEPXCZ(x,z) (0x0c + (((x)-1)*3 + ((z)-1))*4) /* Port Configuration Registers */ argument
|
/arch/blackfin/kernel/ |
D | kgdb_test.c | 52 noinline int kgdb_test(char *name, int len, int count, int z) in kgdb_test() argument 54 pr_alert("kgdb name(%d): %s, %d, %d\n", len, name, count, z); in kgdb_test() 55 count = z; in kgdb_test()
|
/arch/mips/boot/compressed/ |
D | Makefile | 48 targets += vmlinux.bin.z 49 $(obj)/vmlinux.bin.z: $(obj)/vmlinux.bin FORCE 53 OBJCOPYFLAGS_piggy.o := --add-section=.image=$(obj)/vmlinux.bin.z \ 55 $(obj)/piggy.o: $(obj)/dummy.o $(obj)/vmlinux.bin.z FORCE
|
/arch/sh/kernel/cpu/sh4/ |
D | softfloat.c | 151 bits64 z; in shift64RightJamming() local 154 z = a; in shift64RightJamming() 156 z = (a >> count) | ((a << ((-count) & 63)) != 0); in shift64RightJamming() 158 z = (a != 0); in shift64RightJamming() 160 *zPtr = z; in shift64RightJamming() 349 bits32 z; in shift32RightJamming() local 351 z = a; in shift32RightJamming() 353 z = (a >> count) | ((a << ((-count) & 31)) != 0); in shift32RightJamming() 355 z = (a != 0); in shift32RightJamming() 357 *zPtr = z; in shift32RightJamming() [all …]
|
/arch/blackfin/include/asm/ |
D | io.h | 29 DECLARE_BFIN_RAW_READX(b, u8, b, (z)) 31 DECLARE_BFIN_RAW_READX(w, u16, w, (z))
|
/arch/m68k/fpsp040/ |
D | ssinh.S | 26 | y = |X|, sgn = sign(X), and z = expm1(Y), 27 | sinh(X) = sgn*(1/2)*( z + z/(1+z) ).
|
D | stanh.S | 26 | sgn := sign(X), y := 2|X|, z := expm1(Y), and 27 | tanh(X) = sgn*( z/(2+z) ). 36 | sgn := sign(X), y := 2|X|, z := exp(Y), 37 | tanh(X) = sgn - [ sgn*2/(1+z) ].
|
D | sacos.S | 26 | z := (1-X) / (1+X) 27 | acos(X) = 2 * atan( sqrt(z) ).
|
D | scosh.S | 26 | y = |X|, z = exp(Y), and 27 | cosh(X) = (1/2)*( z + 1/z ).
|
/arch/blackfin/mach-common/ |
D | head.S | 181 r0 = (EVT_IVG15 | EVT_IVHW | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU) (z); 183 r0 = EVT_IVG15 (z); 217 r0 = 0xAD6(z);
|
/arch/mips/include/asm/octeon/ |
D | octeon-model.h | 247 #define __OCTEON_MATCH_MASK__(x, y, z) (((x) & (z)) == ((y) & (z))) argument
|
/arch/ia64/kernel/ |
D | relocate_kernel.S | 138 tbit.z p0, p6=r30, 0;; // 0x1 dest page 142 tbit.z p0, p6=r30, 1;; // 0x2 indirect page 146 tbit.z p0, p6=r30, 2;; // 0x4 end flag 149 tbit.z p6, p0=r30, 3;; // 0x8 source page
|