/arch/frv/kernel/ |
D | traps.c | 114 unsigned long x, y, z; in atomic_operation() local 121 z = 0; in atomic_operation() 137 ret = get_user(z, p); in atomic_operation() 141 if (z != x) in atomic_operation() 146 if (__get_user(z, p) == 0) { in atomic_operation() 147 if (z != x) in atomic_operation() 166 ret = get_user(z, p); in atomic_operation() 172 if (__get_user(z, p) == 0) { in atomic_operation() 189 ret = get_user(z, p); in atomic_operation() 195 if (__get_user(z, p) == 0) { in atomic_operation() [all …]
|
/arch/mips/math-emu/ |
D | sp_maddf.c | 18 static union ieee754sp _sp_maddf(union ieee754sp z, union ieee754sp x, in _sp_maddf() argument 47 return ieee754sp_nanxcpt(z); in _sp_maddf() 53 return z; in _sp_maddf() 120 return z; in _sp_maddf() 125 return z; in _sp_maddf() 254 union ieee754sp ieee754sp_maddf(union ieee754sp z, union ieee754sp x, in ieee754sp_maddf() argument 257 return _sp_maddf(z, x, y, 0); in ieee754sp_maddf() 260 union ieee754sp ieee754sp_msubf(union ieee754sp z, union ieee754sp x, in ieee754sp_msubf() argument 263 return _sp_maddf(z, x, y, MADDF_NEGATE_PRODUCT); in ieee754sp_msubf()
|
D | dp_sqrt.c | 35 union ieee754dp y, z, t; in ieee754dp_sqrt() local 111 z = t = ieee754dp_mul(y, y); in ieee754dp_sqrt() 113 t = ieee754dp_add(t, z); in ieee754dp_sqrt() 114 z = ieee754dp_mul(ieee754dp_sub(x, z), y); in ieee754dp_sqrt() 117 t = ieee754dp_div(z, ieee754dp_add(t, x)); in ieee754dp_sqrt()
|
D | dp_maddf.c | 43 static union ieee754dp _dp_maddf(union ieee754dp z, union ieee754dp x, in _dp_maddf() argument 79 return ieee754dp_nanxcpt(z); in _dp_maddf() 85 return z; in _dp_maddf() 151 return z; in _dp_maddf() 156 return z; in _dp_maddf() 337 union ieee754dp ieee754dp_maddf(union ieee754dp z, union ieee754dp x, in ieee754dp_maddf() argument 340 return _dp_maddf(z, x, y, 0); in ieee754dp_maddf() 343 union ieee754dp ieee754dp_msubf(union ieee754dp z, union ieee754dp x, in ieee754dp_msubf() argument 346 return _dp_maddf(z, x, y, MADDF_NEGATE_PRODUCT); in ieee754dp_msubf()
|
D | ieee754int.h | 91 #define EXPLODEZSP EXPLODESP(z, zc, zs, ze, zm) 129 #define EXPLODEZDP EXPLODEDP(z, zc, zs, ze, zm) 155 #define FLUSHZDP FLUSHDP(z, zc, zs, ze, zm) 158 #define FLUSHZSP FLUSHSP(z, zc, zs, ze, zm)
|
/arch/arm/boot/dts/ |
D | omap3-gta04a3.dts | 28 st,click-single-z; 31 st,click-thresh-z = <10>; 39 st,wakeup-z-lo; 40 st,wakeup-z-hi; 43 st,min-limit-z = <3>; 46 st,max-limit-z = <32>;
|
D | omap3-overo-common-peripherals.dtsi | 65 st,click-single-z; 68 st,click-thresh-z = <10>; 75 st,wakeup-z-lo; 76 st,wakeup-z-hi; 79 st,min-limit-z = <140>; 82 st,max-limit-z = <750>;
|
D | omap3-n9.dts | 64 st,axis-z = <(-3)>; /* LIS3_INV_DEV_Z */ 68 st,min-limit-z = <3>; 72 st,max-limit-z = <46>;
|
/arch/powerpc/include/asm/ |
D | time.h | 186 ({unsigned z; asm ("mulhwu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;}) 190 ({unsigned long z; asm ("mulhdu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;})
|
/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/tile/lib/ |
D | strchr_32.c | 21 int z, g; in strchr() local 55 z = __insn_ctz(zero_matches); in strchr() 62 return (g <= z) ? ((char *)p) + (g >> 3) : NULL; in strchr()
|
D | strchr_64.c | 22 int z, g; in strchr() local 53 z = CFZ(zero_matches); in strchr() 60 return (g <= z) ? ((char *)p) + (g >> 3) : NULL; in strchr()
|
/arch/metag/lib/ |
D | muldi3.S | 12 ! B = D1Ar3:D0Ar4 = w 2^48 + x 2^32 + y 2^16 + z 2^0 19 MULD D1Re0,D1Ar1,D0Ar4 ! (a 2^48 + b 2^32)(y 2^16 + z 2^0) 23 MULW D0Re0,D0Ar2,D0Ar4 ! (d 2^0) * (z 2^0) 26 MULW D0Ar6,D0Ar2,D0Ar4 ! (c 2^16)(z 2^0)
|
/arch/x86/include/asm/ |
D | cmpxchg.h | 169 CC_SET(z) \ 170 : CC_OUT(z) (success), \ 181 CC_SET(z) \ 182 : CC_OUT(z) (success), \ 193 CC_SET(z) \ 194 : CC_OUT(z) (success), \ 205 CC_SET(z) \ 206 : CC_OUT(z) (success), \
|
/arch/alpha/lib/ |
D | csum_partial_copy.c | 24 #define extql(x,y,z) \ argument 25 __asm__ __volatile__("extql %1,%2,%0":"=r" (z):"r" (x),"r" (y)) 27 #define extqh(x,y,z) \ argument 28 __asm__ __volatile__("extqh %1,%2,%0":"=r" (z):"r" (x),"r" (y)) 30 #define mskql(x,y,z) \ argument 31 __asm__ __volatile__("mskql %1,%2,%0":"=r" (z):"r" (x),"r" (y)) 33 #define mskqh(x,y,z) \ argument 34 __asm__ __volatile__("mskqh %1,%2,%0":"=r" (z):"r" (x),"r" (y)) 36 #define insql(x,y,z) \ argument 37 __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()
|
/arch/x86/math-emu/ |
D | fpu_system.h | 107 #define FPU_access_ok(x,y,z) if ( !access_ok(x,y,z) ) \ argument 117 #define FPU_code_access_ok(z) argument 122 #define FPU_code_access_ok(z) FPU_access_ok(VERIFY_READ,(void __user *)FPU_EIP,z) 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/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/mips/include/asm/mach-lantiq/ |
D | lantiq.h | 26 #define ltq_ebu_w32_mask(x, y, z) \ argument 27 ltq_w32_mask(x, y, ltq_ebu_membase + (z))
|
/arch/blackfin/mach-common/ |
D | dpmc_modes.S | 21 R1 = W[P0](z); 40 R7 = w[p0](z); 108 R6 = W[P0](z); 114 R5 = W[P0](z); 125 R7 = W[P0](z); 146 R0 = W[P0](z);
|
/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/mips/boot/compressed/ |
D | Makefile | 71 targets += vmlinux.bin.z 72 $(obj)/vmlinux.bin.z: $(obj)/vmlinux.bin FORCE 76 OBJCOPYFLAGS_piggy.o := --add-section=.image=$(obj)/vmlinux.bin.z \ 78 $(obj)/piggy.o: $(obj)/dummy.o $(obj)/vmlinux.bin.z FORCE
|