/external/tensorflow/tensorflow/python/kernel_tests/distributions/ |
D | normal_test.py | 37 from tensorflow.python.ops.distributions import normal as normal_lib 105 normal = normal_lib.NormalWithSoftplusScale(loc=mu, scale=rho) 106 self.assertAllEqual(self.evaluate(mu), self.evaluate(normal.loc)) 108 self.evaluate(nn_ops.softplus(rho)), self.evaluate(normal.scale)) 116 normal = normal_lib.Normal(loc=mu, scale=sigma) 118 log_pdf = normal.log_prob(x) 120 self.evaluate(normal.batch_shape_tensor()), log_pdf.get_shape()) 122 self.evaluate(normal.batch_shape_tensor()), 124 self.assertAllEqual(normal.batch_shape, log_pdf.get_shape()) 125 self.assertAllEqual(normal.batch_shape, self.evaluate(log_pdf).shape) [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | compare-3way.ll | 12 ; CHECK: br i1 [[TMP1]], label %normal, label %unreached 18 br i1 %cmp, label %unreached, label %normal 19 normal: 28 ; CHECK: br i1 false, label %unreached, label %normal 34 br i1 %cmp, label %unreached, label %normal 35 normal: 44 ; CHECK: br i1 true, label %unreached, label %normal 50 br i1 %cmp, label %unreached, label %normal 51 normal: 61 ; CHECK: br i1 [[TMP1]], label %unreached, label %normal [all …]
|
/external/eigen/Eigen/src/Geometry/ |
D | Hyperplane.h | 70 normal() = n; in Hyperplane() 81 normal() = n; in Hyperplane() 91 result.normal() = (p1 - p0).unitOrthogonal(); in Through() 92 result.offset() = -p0.dot(result.normal()); in Through() 104 result.normal() = v0.cross(v1); in Through() 105 RealScalar norm = result.normal().norm(); in Through() 110 result.normal() = svd.matrixV().col(2); in Through() 113 result.normal() /= norm; in Through() 114 result.offset() = -p0.dot(result.normal()); in Through() 125 normal() = parametrized.direction().unitOrthogonal(); in Hyperplane() [all …]
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | hlsl.structIoFourWay.frag.out | 6 …p structure{ temp float f, temp float g, temp float d, temp 4-component vector of float normal}) 8 …n structure{ temp float f, temp float g, temp float d, temp 4-component vector of float normal}) 11 …p structure{ temp float f, temp float g, temp float d, temp 4-component vector of float normal}) 18 …p structure{ temp float f, temp float g, temp float d, temp 4-component vector of float normal}) 24 …p structure{ temp float f, temp float g, temp float d, temp 4-component vector of float normal}) 30 …p structure{ temp float f, temp float g, temp float d, temp 4-component vector of float normal}) 35 0:15 normal: direct index for structure ( temp 4-component vector of float) 36 …p structure{ temp float f, temp float g, temp float d, temp 4-component vector of float normal}) 39 0:? 't.normal' (layout( location=3) in 4-component vector of float) 41 …p structure{ temp float f, temp float g, temp float d, temp 4-component vector of float normal}) [all …]
|
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/ |
D | distribution_test.py | 68 normal = tfd.Normal(loc=1., scale=2., validate_args=True) 69 self.assertEqual(normal.parameters, normal.copy().parameters) 76 normal = tfd.Normal(loc=1., scale=2., validate_args=True) 77 unused_normal_copy = normal.copy(validate_args=False) 78 base_params = normal.parameters.copy() 79 copy_params = normal.copy(validate_args=False).parameters.copy() 89 normal = tfd.Normal(mu, sigma, validate_args=True) 90 self.assertTrue(tensor_util.constant_value(normal.is_scalar_event())) 91 self.assertTrue(tensor_util.constant_value(normal.is_scalar_batch())) 93 normal = tfd.Normal([mu], [sigma], validate_args=True) [all …]
|
/external/libkmsxx/kmscube/ |
D | cube-gles2.cpp | 243 float normal[9]; in draw() local 244 normal[0] = modelview.m[0][0]; in draw() 245 normal[1] = modelview.m[0][1]; in draw() 246 normal[2] = modelview.m[0][2]; in draw() 247 normal[3] = modelview.m[1][0]; in draw() 248 normal[4] = modelview.m[1][1]; in draw() 249 normal[5] = modelview.m[1][2]; in draw() 250 normal[6] = modelview.m[2][0]; in draw() 251 normal[7] = modelview.m[2][1]; in draw() 252 normal[8] = modelview.m[2][2]; in draw() [all …]
|
/external/skqp/src/core/ |
D | SkStrokerPriv.cpp | 15 static void ButtCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, in ButtCapper() argument 20 static void RoundCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, in RoundCapper() argument 23 SkPointPriv::RotateCW(normal, ¶llel); in RoundCapper() 27 path->conicTo(projectedCenter + normal, projectedCenter, SK_ScalarRoot2Over2); in RoundCapper() 28 path->conicTo(projectedCenter - normal, stop, SK_ScalarRoot2Over2); in RoundCapper() 31 static void SquareCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, in SquareCapper() argument 34 SkPointPriv::RotateCW(normal, ¶llel); in SquareCapper() 37 path->setLastPt(pivot.fX + normal.fX + parallel.fX, pivot.fY + normal.fY + parallel.fY); in SquareCapper() 38 path->lineTo(pivot.fX - normal.fX + parallel.fX, pivot.fY - normal.fY + parallel.fY); in SquareCapper() 40 path->lineTo(pivot.fX + normal.fX + parallel.fX, pivot.fY + normal.fY + parallel.fY); in SquareCapper() [all …]
|
/external/skia/src/core/ |
D | SkStrokerPriv.cpp | 15 static void ButtCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, in ButtCapper() argument 20 static void RoundCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, in RoundCapper() argument 23 SkPointPriv::RotateCW(normal, ¶llel); in RoundCapper() 27 path->conicTo(projectedCenter + normal, projectedCenter, SK_ScalarRoot2Over2); in RoundCapper() 28 path->conicTo(projectedCenter - normal, stop, SK_ScalarRoot2Over2); in RoundCapper() 31 static void SquareCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, in SquareCapper() argument 34 SkPointPriv::RotateCW(normal, ¶llel); in SquareCapper() 37 path->setLastPt(pivot.fX + normal.fX + parallel.fX, pivot.fY + normal.fY + parallel.fY); in SquareCapper() 38 path->lineTo(pivot.fX - normal.fX + parallel.fX, pivot.fY - normal.fY + parallel.fY); in SquareCapper() 40 path->lineTo(pivot.fX + normal.fX + parallel.fX, pivot.fY + normal.fY + parallel.fY); in SquareCapper() [all …]
|
/external/icu/icu4c/source/data/zone/ |
D | ia.txt | 593 ls{"hora normal de Alaska"} 598 ls{"hora normal central"} 603 ls{"hora normal del est"} 608 ls{"hora normal del montanias"} 613 ls{"hora normal pacific"} 618 ls{"hora normal atlantic"} 623 ls{"hora normal del Azores"} 628 ls{"hora normal de Cuba"} 633 ls{"hora normal de Europa central"} 638 ls{"hora normal de Europa oriental"} [all …]
|
/external/autotest/client/site_tests/graphics_SanAngeles/src/ |
D | shader.c | 87 static void computeNormalMatrix(Matrix4x4 m, Matrix3x3 normal) in computeNormalMatrix() argument 93 normal[0*3+0] = invDet * (m[1*4+1] * m[2*4+2] - m[2*4+1] * m[1*4+2]); in computeNormalMatrix() 94 normal[1*3+0] = invDet * -(m[0*4+1] * m[2*4+2] - m[0*4+2] * m[2*4+1]); in computeNormalMatrix() 95 normal[2*3+0] = invDet * (m[0*4+1] * m[1*4+2] - m[0*4+2] * m[1*4+1]); in computeNormalMatrix() 96 normal[0*3+1] = invDet * -(m[1*4+0] * m[2*4+2] - m[1*4+2] * m[2*4+0]); in computeNormalMatrix() 97 normal[1*3+1] = invDet * (m[0*4+0] * m[2*4+2] - m[0*4+2] * m[2*4+0]); in computeNormalMatrix() 98 normal[2*3+1] = invDet * -(m[0*4+0] * m[1*4+2] - m[1*4+0] * m[0*4+2]); in computeNormalMatrix() 99 normal[0*3+2] = invDet * (m[1*4+0] * m[2*4+1] - m[2*4+0] * m[1*4+1]); in computeNormalMatrix() 100 normal[1*3+2] = invDet * -(m[0*4+0] * m[2*4+1] - m[2*4+0] * m[0*4+1]); in computeNormalMatrix() 101 normal[2*3+2] = invDet * (m[0*4+0] * m[1*4+1] - m[1*4+0] * m[0*4+1]); in computeNormalMatrix() [all …]
|
/external/mesa3d/src/mesa/tnl/ |
D | t_vb_texgen.c | 99 const GLvector4f *normal, in build_m3() argument 105 const GLfloat *norm = normal->start; in build_m3() 108 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(norm,normal->stride)) { in build_m3() 126 const GLvector4f *normal, in build_m2() argument 133 GLfloat *norm = normal->start; in build_m2() 136 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(norm,normal->stride)) { in build_m2() 156 const GLvector4f *normal, 175 const GLvector4f *normal, in build_f3() argument 182 GLfloat *norm = normal->start; in build_f3() 195 STRIDE_F(norm, normal->stride); in build_f3() [all …]
|
D | t_vb_normals.c | 42 GLvector4f normal; member 70 &store->normal ); /* resulting normals */ in run_normal_stage() 73 store->normal.stride = 4 * sizeof(GLfloat); in run_normal_stage() 76 store->normal.stride = 0; in run_normal_stage() 79 VB->AttribPtr[_TNL_ATTRIB_NORMAL] = &store->normal; in run_normal_stage() 158 _mesa_vector4f_alloc( &store->normal, 0, tnl->vb.Size, 32 ); in alloc_normal_data() 171 _mesa_vector4f_free( &store->normal ); in free_normal_data()
|
D | t_vb_lighttmp.h | 59 const GLfloat *normal = (GLfloat *)VB->AttribPtr[_TNL_ATTRIB_NORMAL]->data; in TAG() local 88 for (j = 0; j < nr; j++,STRIDE_F(vertex,vstride),STRIDE_F(normal,nstride)) { in TAG() 162 n_dot_VP = DOT3( normal, VP ); in TAG() 206 n_dot_h = correction * DOT3(normal, h); in TAG() 245 const GLfloat *normal = (GLfloat *)VB->AttribPtr[_TNL_ATTRIB_NORMAL]->data; in TAG() local 269 for (j = 0; j < nr; j++,STRIDE_F(vertex,vstride),STRIDE_F(normal,nstride)) { in TAG() 341 n_dot_VP = DOT3( normal, VP ); in TAG() 386 n_dot_h = correction * DOT3(normal, h); in TAG() 421 const GLfloat *normal = (GLfloat *)VB->AttribPtr[_TNL_ATTRIB_NORMAL]->data; in TAG() local 456 for (j = 0; j < nr; j++, STRIDE_F(normal,nstride)) { in TAG() [all …]
|
/external/tensorflow/tensorflow/python/ops/ |
D | stateful_random_ops_test.py | 80 expected_normal1 = gen.normal(shape) 81 expected_normal2 = gen.normal(shape) 91 r = g_seeded.normal(shape) 92 r = (r, g_unseeded.normal(shape)) 114 r1 = gen1.normal(shape) 115 r2 = gen2.normal(shape) 128 random.get_global_generator().normal((3,)) 139 a = random.get_global_generator().normal(shape) 141 b = random.get_global_generator().normal(shape) 147 return random.get_global_generator().normal(shape) [all …]
|
/external/llvm/test/Bitcode/ |
D | operand-bundles.ll | 67 …64 100, i32 %x), "bar"(float 0.000000e+00, i64 100, i32 %l) ] to label %normal unwind label %exce… 72 br label %normal 73 normal: 83 invoke void @callee0() to label %normal unwind label %exception 88 br label %normal 90 normal: 113 invoke void @callee0() [ "foo"() ] to label %normal unwind label %exception 118 br label %normal 119 normal: 128 …i64 100, i32 %x), "foo"(i32 42, float 0.000000e+00, i32 %l) ] to label %normal unwind label %exce… [all …]
|
D | use-list-order2.ll | 10 invoke void @llvm.donothing() to label %normal unwind label %exception 13 br label %normal 14 normal: 23 invoke void @llvm.donothing() to label %normal unwind label %exception 26 br label %normal 27 normal:
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bitcode/ |
D | operand-bundles.ll | 67 …64 100, i32 %x), "bar"(float 0.000000e+00, i64 100, i32 %l) ] to label %normal unwind label %exce… 72 br label %normal 73 normal: 83 invoke void @callee0() to label %normal unwind label %exception 88 br label %normal 90 normal: 113 invoke void @callee0() [ "foo"() ] to label %normal unwind label %exception 118 br label %normal 119 normal: 128 …i64 100, i32 %x), "foo"(i32 42, float 0.000000e+00, i32 %l) ] to label %normal unwind label %exce… [all …]
|
D | use-list-order2.ll | 10 invoke void @llvm.donothing() to label %normal unwind label %exception 13 br label %normal 14 normal: 23 invoke void @llvm.donothing() to label %normal unwind label %exception 26 br label %normal 27 normal:
|
/external/perfetto/ui/src/assets/ |
D | typefaces.scss | 4 font-style: normal; 12 font-style: normal; 20 font-style: normal; 27 font-style: normal; 35 font-style: normal; 43 font-style: normal; 51 font-weight: normal; 52 font-style: normal; 55 letter-spacing: normal; 59 word-wrap: normal;
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | SolidSurfaceComponent.java | 75 public void addSurface(Vector2 startPoint, Vector2 endPoint, Vector2 normal) { in addSurface() argument 78 mNormals.add(normal); in addSurface() 95 Vector2 normal = mNormal; in update() local 118 normal.set(normals.get(x)); in update() 120 normal.flipHorizontal(0); in update() 124 normal.flipVertical(0); in update() 127 collision.addTemporarySurface(start, end, normal, parentObject); in update()
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | normal_unittest.cc | 42 Normal normal(fs, &db, bgn, &expand); in TEST() local 57 Normal normal(fs, &db, bgn, &expand); in TEST() local 69 normal.Process(input, 0, kModeExpand, mute_factor_array.get(), &output)); in TEST() 82 normal.Process(input, in TEST() 103 Normal normal(fs, &db, bgn, &expand); in TEST() local 116 normal.Process( in TEST()
|
/external/pcre/dist2/testdata/ |
D | testinput6 | 1154 [^\\\x80-\xff\n\015()] * # normal* 1158 [^\\\x80-\xff\n\015()] * # normal* 1159 (?: \\ [^\x80-\xff] [^\\\x80-\xff\n\015()] * )* # (special normal*)* 1162 [^\\\x80-\xff\n\015()] * # normal* 1174 [^\\\x80-\xff\n\015"] * # normal 1175 (?: \\ [^\x80-\xff] [^\\\x80-\xff\n\015"] * )* # ( special normal* )* 1182 [^\\\x80-\xff\n\015()] * # normal* 1186 [^\\\x80-\xff\n\015()] * # normal* 1187 (?: \\ [^\x80-\xff] [^\\\x80-\xff\n\015()] * )* # (special normal*)* 1190 [^\\\x80-\xff\n\015()] * # normal* [all …]
|
/external/tensorflow/tensorflow/contrib/distributions/python/ops/ |
D | normal_conjugate_posteriors.py | 22 from tensorflow.python.ops.distributions import normal 67 if not isinstance(prior, normal.Normal): 79 return normal.Normal( 133 if not isinstance(prior, normal.Normal): 145 return normal.Normal(
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/ |
D | PoissonDistributionImpl.java | 52 private NormalDistribution normal; field in PoissonDistributionImpl 159 setNormalAndMeanInternal(normal, p); in setMean() 176 normal = z; in setNormalAndMeanInternal() 177 normal.setMean(p); in setNormalAndMeanInternal() 178 normal.setStandardDeviation(FastMath.sqrt(p)); in setNormalAndMeanInternal() 239 return normal.cumulativeProbability(x + 0.5); in normalApproximateProbability()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/JumpThreading/ |
D | assume.ll | 70 br i1 %notnull, label %normal, label %error 72 normal: 93 br i1 %notnull, label %normal, label %error 95 normal: 115 br i1 %notnull, label %normal, label %error 117 normal: 140 br i1 %notnull, label %normal, label %error 142 normal: 170 br i1 %notnull, label %normal, label %error 172 normal: [all …]
|