Searched defs:kd (Results 1 - 17 of 17) sorted by relevance

/external/skia/gm/
H A Dimagefilterscropexpand.cpp64 SkScalar kd = SkIntToScalar(2); local
126 kd,
H A Dimagefiltersscaled.cpp88 SkScalar kd = SkIntToScalar(2); variable
111 SkLightingImageFilter::MakePointLitDiffuse(pointLocation, white, surfaceScale, kd,
114 cutoffAngle, white, surfaceScale, kd,
H A Dlighting.cpp81 SkScalar kd = SkIntToScalar(2); variable
99 kd,
107 kd,
118 kd,
/external/openssh/regress/unittests/sshkey/
H A Dtest_sshkey.c179 struct sshkey *k1, *k2, *k3, *k4, *kr, *kd, *kf; local
305 ASSERT_INT_EQ(sshkey_generate(KEY_DSA, 1024, &kd), 0);
306 ASSERT_PTR_NE(kd, NULL);
307 ASSERT_PTR_NE(kd->dsa, NULL);
308 ASSERT_PTR_NE(kd->dsa->g, NULL);
309 ASSERT_PTR_NE(kd->dsa->priv_key, NULL);
347 ASSERT_INT_EQ(sshkey_demote(kd, &k1), 0);
349 ASSERT_PTR_NE(kd, k1);
357 ASSERT_INT_EQ(sshkey_equal(kd, k1), 1);
394 ASSERT_INT_EQ(sshkey_equal(kd, k
[all...]
/external/skia/bench/
H A DLightingBench.cpp70 static SkScalar kd = SkIntToScalar(2); local
71 return kd;
/external/gemmlowp/test/
H A Dcorrectness_meta_gemm.cc215 int kd, std::uint8_t* scratch, std::uint8_t* left,
220 for (int k = ki; k < kx; k += kd) {
229 int kd, std::uint8_t* scratch, std::uint8_t* left,
234 for (int k = ki; k < kx; k += kd) {
243 int kd, std::uint8_t* scratch, std::uint8_t* left,
248 for (int k = ki; k < kx; k += kd) {
214 q_suite(int mi, int ni, int ki, int mx, int nx, int kx, int md, int nd, int kd, std::uint8_t* scratch, std::uint8_t* left, std::uint8_t* right, std::uint8_t* result, gemmlowp::WorkersPool* pool, int t) argument
228 f_suite(int mi, int ni, int ki, int mx, int nx, int kx, int md, int nd, int kd, std::uint8_t* scratch, std::uint8_t* left, std::uint8_t* right, float* result, gemmlowp::WorkersPool* pool, int t) argument
242 i32_suite(int mi, int ni, int ki, int mx, int nx, int kx, int md, int nd, int kd, std::uint8_t* scratch, std::uint8_t* left, std::uint8_t* right, std::int32_t* result, gemmlowp::WorkersPool* pool, int t) argument
/external/libpcap/
H A Dpcap-dlpi.c1746 register int kd; local
1765 kd = open("/dev/kmem", O_RDONLY);
1766 if (kd < 0) {
1771 if (dlpi_kread(kd, nl[NL_IFNET].n_value,
1773 close(kd);
1777 if (dlpi_kread(kd, (off_t)addr,
1779 dlpi_kread(kd, (off_t)ifnet.if_name,
1781 (void)close(kd);
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorContractionThreadPool.h1013 const double kd = static_cast<double>(bk); local
1027 TensorOpCost cost = TensorOpCost(0, 0, kd * computeBandwidth, true, packed_size);
1037 TensorOpCost lhsCost = this->m_leftImpl.costPerCoeff(true) * (kd / n);
1038 TensorOpCost rhsCost = this->m_rightImpl.costPerCoeff(true) * (kd / m);
/external/skia/fuzz/
H A DFilterFuzz.cpp686 SkScalar ss, kd; local
687 fuzz->next(&ss, &kd);
692 ? SkLightingImageFilter::MakeDistantLitDiffuse(p, c, ss, kd, fil)
693 : SkLightingImageFilter::MakeDistantLitSpecular(p, c, ss, kd, shininess, fil);
699 SkScalar ss, kd; local
700 fuzz->next(&ss, &kd);
705 ? SkLightingImageFilter::MakePointLitDiffuse(p, c, ss, kd, fil)
706 : SkLightingImageFilter::MakePointLitSpecular(p, c, ss, kd, shininess, fil);
712 SkScalar se, ca, ss, kd; local
713 fuzz->next(&se, &ca, &ss, &kd);
[all...]
/external/skia/src/effects/
H A DSkLightingImageFilter.cpp153 DiffuseLightingType(SkScalar kd) argument
154 : fKD(kd) {}
526 SkScalar kd,
532 SkScalar kd() const { return fKD; } function in class:SkDiffuseLightingImageFilter
536 SkScalar kd,
629 SkScalar kd,
634 surfaceScale, matrix, kd, boundaryMode, srcBounds));
639 SkScalar kd() const { return fKD; } function in class:GrDiffuseLightingEffect
652 SkScalar kd,
1146 SkScalar kd,
625 Make(sk_sp<GrTextureProxy> proxy, const SkImageFilterLight* light, SkScalar surfaceScale, const SkMatrix& matrix, SkScalar kd, BoundaryMode boundaryMode, const SkIRect* srcBounds) argument
1143 MakeDistantLitDiffuse(const SkPoint3& direction, SkColor lightColor, SkScalar surfaceScale, SkScalar kd, sk_sp<SkImageFilter> input, const CropRect* cropRect) argument
1154 MakePointLitDiffuse(const SkPoint3& location, SkColor lightColor, SkScalar surfaceScale, SkScalar kd, sk_sp<SkImageFilter> input, const CropRect* cropRect) argument
1165 MakeSpotLitDiffuse(const SkPoint3& location, const SkPoint3& target, SkScalar specularExponent, SkScalar cutoffAngle, SkColor lightColor, SkScalar surfaceScale, SkScalar kd, sk_sp<SkImageFilter> input, const CropRect* cropRect) argument
1228 Make(sk_sp<SkImageFilterLight> light, SkScalar surfaceScale, SkScalar kd, sk_sp<SkImageFilter> input, const CropRect* cropRect) argument
1248 SkDiffuseLightingImageFilter(sk_sp<SkImageFilterLight> light, SkScalar surfaceScale, SkScalar kd, sk_sp<SkImageFilter> input, const CropRect* cropRect) argument
1261 SkScalar kd = buffer.readScalar(); local
1710 GrDiffuseLightingEffect(sk_sp<GrTextureProxy> proxy, const SkImageFilterLight* light, SkScalar surfaceScale, const SkMatrix& matrix, SkScalar kd, BoundaryMode boundaryMode, const SkIRect* srcBounds) argument
1769 SkScalar kd = d->fRandom->nextUScalar1(); local
1920 const char* kd; local
[all...]
/external/f2fs-tools/include/
H A Df2fs_fs.h283 int32_t kd; member in struct:f2fs_configuration
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 367 milliseconds