/external/dng_sdk/source/ |
D | dng_resample.h | 149 const real32 *Weights32 (uint32 fract) const in Weights32() argument 154 if (fract >= kResampleSubsampleCount) in Weights32() 161 return fWeights32->Buffer_real32 () + fract * fWeightStep; in Weights32() 165 const int16 *Weights16 (uint32 fract) const in Weights16() argument 170 if (fract >= kResampleSubsampleCount) in Weights16() 177 return fWeights16->Buffer_int16 () + fract * fWeightStep; in Weights16() 238 const real32 *Weights32 (dng_point fract) const in Weights32() argument 243 if (fract.v < 0 || fract.h < 0 in Weights32() 244 || fract.v >= static_cast<int32>(kResampleSubsampleCount2D) in Weights32() 245 || fract.h >= static_cast<int32>(kResampleSubsampleCount2D)) in Weights32() [all …]
|
D | dng_abort_sniffer.h | 141 real64 fract); 151 virtual void UpdateProgress (real64 fract); 179 real64 fract = 0.0) 185 fSniffer->StartTask (name, fract); in fSniffer() 206 void UpdateProgress (real64 fract) in UpdateProgress() argument 209 fSniffer->UpdateProgress (fract); in UpdateProgress()
|
D | dng_1d_table.cpp | 168 real64 fract = 0.0; in Expand16() local 173 table16 [j] = (uint16) (base + slope * fract); in Expand16() 175 fract += step; in Expand16() 177 if (fract > 1.0) in Expand16() 181 fract -= 1.0; in Expand16()
|
/external/llvm-project/llvm/test/Transforms/InstSimplify/ConstProp/AMDGPU/ |
D | fract.ll | 4 declare half @llvm.amdgcn.fract.f16(half) 5 declare float @llvm.amdgcn.fract.f32(float) 6 declare double @llvm.amdgcn.fract.f64(double) 23 %p0 = call half @llvm.amdgcn.fract.f16(half +0.0) 25 %n0 = call half @llvm.amdgcn.fract.f16(half -0.0) 27 %p1 = call half @llvm.amdgcn.fract.f16(half +1.0) 29 %n1 = call half @llvm.amdgcn.fract.f16(half -1.0) 31 %p225 = call half @llvm.amdgcn.fract.f16(half +2.25) 33 %n6125 = call half @llvm.amdgcn.fract.f16(half -6.125) 35 %ptiny = call half @llvm.amdgcn.fract.f16(half 0xH0400) ; +min normal [all …]
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | llvm.amdgcn.fract.ll | 4 declare float @llvm.amdgcn.fract.f32(float) #0 5 declare double @llvm.amdgcn.fract.f64(double) #0 10 %fract = call float @llvm.amdgcn.fract.f32(float %src) 11 store float %fract, float addrspace(1)* %out 18 %fract = call double @llvm.amdgcn.fract.f64(double %src) 19 store double %fract, double addrspace(1)* %out 28 %fract = call float @llvm.amdgcn.fract.f32(float undef) 29 store float %fract, float addrspace(1)* %out
|
D | fract.ll | 20 %fract = fsub float %x, %floor.x 21 store float %fract, float addrspace(1)* %out 36 %fract = fsub float %x.neg, %floor.x.neg 37 store float %fract, float addrspace(1)* %out 53 %fract = fsub float %neg.abs.x, %floor.neg.abs.x 54 store float %fract, float addrspace(1)* %out 67 %fract = fsub float %x, %floor.x 69 store volatile float %fract, float addrspace(1)* %out
|
/external/llvm-project/llvm/test/CodeGen/AMDGPU/ |
D | llvm.amdgcn.fract.ll | 4 declare float @llvm.amdgcn.fract.f32(float) #0 5 declare double @llvm.amdgcn.fract.f64(double) #0 10 %fract = call float @llvm.amdgcn.fract.f32(float %src) 11 store float %fract, float addrspace(1)* %out 18 %fract = call double @llvm.amdgcn.fract.f64(double %src) 19 store double %fract, double addrspace(1)* %out 27 %fract = call float @llvm.amdgcn.fract.f32(float undef) 28 store float %fract, float addrspace(1)* %out
|
D | fract.ll | 20 %fract = fsub float %x, %floor.x 21 store float %fract, float addrspace(1)* %out 36 %fract = fsub float %x.neg, %floor.x.neg 37 store float %fract, float addrspace(1)* %out 53 %fract = fsub float %neg.abs.x, %floor.neg.abs.x 54 store float %fract, float addrspace(1)* %out 67 %fract = fsub float %x, %floor.x 69 store volatile float %fract, float addrspace(1)* %out
|
/external/skia/resources/sksl/intrinsics/ |
D | Fract.sksl | 6 return (fract(input.x) == expected.x && 7 fract(input.xy) == expected.xy && 8 fract(input.xyz) == expected.xyz && 9 fract(input.xyzw) == expected.xyzw && 10 fract(constVal.x) == expected.x && 11 fract(constVal.xy) == expected.xy && 12 fract(constVal.xyz) == expected.xyz && 13 fract(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
/external/OpenCL-CTS/test_common/harness/ |
D | compat.h | 383 #define HEX_FLT(sm, int, fract, se, exp) \ argument 384 sm ldexpf((float)(0x##int##fract##UL), \ 386 - ilogbf((float)(0x##int##fract##UL))) 387 #define HEX_DBL(sm, int, fract, se, exp) \ argument 388 sm ldexp((double)(0x##int##fract##ULL), \ 390 - ilogb((double)(0x##int##fract##ULL))) 391 #define HEX_LDBL(sm, int, fract, se, exp) \ argument 392 sm ldexpl((long double)(0x##int##fract##ULL), \ 394 - ilogbl((long double)(0x##int##fract##ULL))) 398 #define HEX_FLT(sm, int, fract, se, exp) sm 0x##int##.##fract##p##se##exp##F argument [all …]
|
/external/openssh/openbsd-compat/ |
D | fmt_scaled.c | 221 long long abval, fract = 0; in fmt_scaled() local 239 fract = (i == 0) ? 0 : abval % scale_factors[i]; in fmt_scaled() 242 fract /= scale_factors[i - 1]; in fmt_scaled() 247 fract = (10 * fract + 512) / 1024; in fmt_scaled() 249 if (fract >= 10) { in fmt_scaled() 254 fract = 0; in fmt_scaled() 255 } else if (fract < 0) { in fmt_scaled() 257 fract = 0; in fmt_scaled() 263 if (fract >= 5) { in fmt_scaled() 273 number, fract, scale_chars[unit]); in fmt_scaled()
|
/external/ppp/pppd/plugins/pppoatm/ |
D | text2qos.c | 30 unsigned int rate,fract; in __t2q_get_rate() local 38 power = fract = 0; in __t2q_get_rate() 41 fract = fract*10+*end-48; in __t2q_get_rate() 54 while (power && fract) in __t2q_get_rate() 56 fract /= 10; in __t2q_get_rate() 60 fract *= 10; in __t2q_get_rate() 63 rate += fract; in __t2q_get_rate()
|
/external/libhevc/common/arm/ |
D | ihevc_intra_pred_chroma_mode_27_to_33.s | 151 vand q2,q1,q3 @dup_const_fract(fract = pos & (31)) 175 vsub.u8 d30,d1,d31 @32-fract(dup_const_32_fract) 186 vsub.u8 d28,d1,d29 @(ii)32-fract(dup_const_32_fract) 200 vsub.u8 d26,d1,d27 @(iii)32-fract(dup_const_32_fract) 219 vsub.u8 d24,d1,d25 @(iv)32-fract(dup_const_32_fract) 236 vsub.u8 d30,d1,d31 @(v)32-fract(dup_const_32_fract) 253 vsub.u8 d28,d1,d29 @(vi)32-fract(dup_const_32_fract) 266 vsub.u8 d26,d1,d27 @(vii)32-fract(dup_const_32_fract) 282 vand q2,q1,q3 @dup_const_fract(fract = pos & (31)) 296 vsub.u8 d24,d1,d25 @(viii)32-fract(dup_const_32_fract) [all …]
|
D | ihevc_intra_pred_luma_mode_27_to_33.s | 154 vand q2,q1,q3 @dup_const_fract(fract = pos & (31)) 177 vsub.u8 d30,d1,d31 @32-fract(dup_const_32_fract) 188 vsub.u8 d28,d1,d29 @(ii)32-fract(dup_const_32_fract) 202 vsub.u8 d26,d1,d27 @(iii)32-fract(dup_const_32_fract) 220 vsub.u8 d24,d1,d25 @(iv)32-fract(dup_const_32_fract) 237 vsub.u8 d30,d1,d31 @(v)32-fract(dup_const_32_fract) 254 vsub.u8 d28,d1,d29 @(vi)32-fract(dup_const_32_fract) 267 vsub.u8 d26,d1,d27 @(vii)32-fract(dup_const_32_fract) 283 vand q2,q1,q3 @dup_const_fract(fract = pos & (31)) 296 vsub.u8 d24,d1,d25 @(viii)32-fract(dup_const_32_fract) [all …]
|
D | ihevc_intra_pred_filters_luma_mode_19_to_25.s | 266 vand q2,q1,q3 @dup_const_fract(fract = pos & (31)) 287 vsub.u8 d30,d1,d31 @32-fract(dup_const_32_fract) 297 vsub.u8 d28,d1,d29 @(ii)32-fract(dup_const_32_fract) 311 vsub.u8 d26,d1,d27 @(iii)32-fract(dup_const_32_fract) 329 vsub.u8 d24,d1,d25 @(iv)32-fract(dup_const_32_fract) 344 vsub.u8 d30,d1,d31 @(v)32-fract(dup_const_32_fract) 360 vsub.u8 d28,d1,d29 @(vi)32-fract(dup_const_32_fract) 373 vsub.u8 d26,d1,d27 @(vii)32-fract(dup_const_32_fract) 389 vand q2,q1,q3 @dup_const_fract(fract = pos & (31)) 402 vsub.u8 d24,d1,d25 @(viii)32-fract(dup_const_32_fract) [all …]
|
D | ihevc_intra_pred_filters_neon_intr.c | 2100 WORD32 pos, fract = 100, fract_prev; in ihevc_intra_pred_luma_mode_3_to_9_neonintr() local 2128 fract_prev = fract; in ihevc_intra_pred_luma_mode_3_to_9_neonintr() 2131 fract = pos & (31); in ihevc_intra_pred_luma_mode_3_to_9_neonintr() 2133 if(fract_prev < fract) in ihevc_intra_pred_luma_mode_3_to_9_neonintr() 2139 dup_const_fract = vdup_n_u8((uint8_t)fract); in ihevc_intra_pred_luma_mode_3_to_9_neonintr() 2140 dup_const_32_fract = vdup_n_u8((uint8_t)(32 - fract)); in ihevc_intra_pred_luma_mode_3_to_9_neonintr() 2216 fract_prev = fract; in ihevc_intra_pred_luma_mode_3_to_9_neonintr() 2218 fract = pos & (31); in ihevc_intra_pred_luma_mode_3_to_9_neonintr() 2219 if(fract_prev < fract) in ihevc_intra_pred_luma_mode_3_to_9_neonintr() 2224 dup_fract = vdup_n_u8((uint8_t)fract); in ihevc_intra_pred_luma_mode_3_to_9_neonintr() [all …]
|
D | ihevc_intra_pred_filters_chroma_mode_19_to_25.s | 261 vand q2,q1,q3 @dup_const_fract(fract = pos & (31)) 284 vsub.u8 d30,d1,d31 @32-fract(dup_const_32_fract) 294 vsub.u8 d28,d1,d29 @(ii)32-fract(dup_const_32_fract) 308 vsub.u8 d26,d1,d27 @(iii)32-fract(dup_const_32_fract) 327 vsub.u8 d24,d1,d25 @(iv)32-fract(dup_const_32_fract) 342 vsub.u8 d30,d1,d31 @(v)32-fract(dup_const_32_fract) 358 vsub.u8 d28,d1,d29 @(vi)32-fract(dup_const_32_fract) 374 vsub.u8 d26,d1,d27 @(vii)32-fract(dup_const_32_fract) 390 vand q2,q1,q3 @dup_const_fract(fract = pos & (31)) 405 vsub.u8 d24,d1,d25 @(viii)32-fract(dup_const_32_fract) [all …]
|
/external/skia/tests/sksl/intrinsics/ |
D | Fract.glsl | 8 …return ((((((fract(input.x) == expected.x && fract(input.xy) == expected.xy) && fract(input.xyz) =…
|
D | Fract.metal | 19 …fract(_uniforms.input.x) == _uniforms.expected.x && all(fract(_uniforms.input.xy) == _uniforms.exp…
|
/external/mesa3d/src/gallium/drivers/radeonsi/glsl_tests/ |
D | fract.glsl | 6 ; The amdgcn.fract intrinsic can be used only if LLVM passes are able to move it. 8 ; FUNC-LABEL: {{^}}@fract: 16 #shader fs fract 20 gl_FragColor.x = fract(f);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
D | SimpleBigDecimal.java | 193 BigInteger fract = bigInt.subtract(floorBigInt.shiftLeft(scale)); in toString() local 196 fract = ECConstants.ONE.shiftLeft(scale).subtract(fract); in toString() 199 if ((floorBigInt.signum() == -1) && (!(fract.equals(ECConstants.ZERO)))) in toString() 206 String fractStr = fract.toString(2); in toString()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/ec/ |
D | SimpleBigDecimal.java | 194 BigInteger fract = bigInt.subtract(floorBigInt.shiftLeft(scale)); in toString() local 197 fract = ECConstants.ONE.shiftLeft(scale).subtract(fract); in toString() 200 if ((floorBigInt.signum() == -1) && (!(fract.equals(ECConstants.ZERO)))) in toString() 207 String fractStr = fract.toString(2); in toString()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/ |
D | SimpleBigDecimal.java | 194 BigInteger fract = bigInt.subtract(floorBigInt.shiftLeft(scale)); in toString() local 197 fract = ECConstants.ONE.shiftLeft(scale).subtract(fract); in toString() 200 if ((floorBigInt.signum() == -1) && (!(fract.equals(ECConstants.ZERO)))) in toString() 207 String fractStr = fract.toString(2); in toString()
|
/external/llvm-project/llvm/test/CodeGen/AMDGPU/GlobalISel/ |
D | legalize-fcos.mir | 16 ; SI: [[INT:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s32) 23 ; VI: [[INT:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s32) 47 ; SI: [[INT:%[0-9]+]]:_(s64) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s64) 54 ; VI: [[INT:%[0-9]+]]:_(s64) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s64) 79 ; SI: [[INT:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s32) 89 ; VI: [[INT:%[0-9]+]]:_(s16) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s16) 119 ; SI: [[INT:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s32) 122 ; SI: [[INT2:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL1]](s32) 131 ; VI: [[INT:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s32) 134 ; VI: [[INT2:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL1]](s32) [all …]
|
D | legalize-fsin.mir | 16 ; SI: [[INT:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s32) 23 ; VI: [[INT:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s32) 47 ; SI: [[INT:%[0-9]+]]:_(s64) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s64) 54 ; VI: [[INT:%[0-9]+]]:_(s64) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s64) 79 ; SI: [[INT:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s32) 89 ; VI: [[INT:%[0-9]+]]:_(s16) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s16) 119 ; SI: [[INT:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s32) 122 ; SI: [[INT2:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL1]](s32) 131 ; VI: [[INT:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL]](s32) 134 ; VI: [[INT2:%[0-9]+]]:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.fract), [[FMUL1]](s32) [all …]
|