/external/libpcap/ |
D | CREDITS | 4 Bill Fenner <fenner at research dot att dot com> 5 Denis Ovsienko <denis at ovsienko dot info> 6 Fulvio Risso <risso at polito dot it> 7 Guy Harris <guy at alum dot mit dot edu> 8 Hannes Gredler <hannes at juniper dot net> 9 Michael Richardson <mcr at sandelman dot ottawa dot on dot ca> 10 Francois-Xavier Le Bail <fx dot lebail at yahoo dot com> 14 Akos Vandra <axos88 at gmail dot com> 15 Alan Bawden <Alan at LCS dot MIT dot EDU> 16 Albert Chin <china at thewrittenword dot com> [all …]
|
/external/tcpdump/ |
D | CREDITS | 4 Bill Fenner <fenner at research dot att dot com> 5 Denis Ovsienko <denis at ovsienko dot info> 6 Fulvio Risso <risso at polito dot it> 7 Guy Harris <guy at alum dot mit dot edu> 8 Hannes Gredler <hannes at gredler dot at> 9 Michael Richardson <mcr at sandelman dot ottawa dot on dot ca> 10 Francois-Xavier Le Bail <fx dot lebail at yahoo dot com> 14 Aaron Campbell <aaron at arbor dot net> 15 A Costa <agcosta at gis dot net> 16 Albert Chin <china at thewrittenword dot com> [all …]
|
/external/python/cpython3/Lib/test/test_email/data/ |
D | msg_43.txt | 26 …dot.ca.gov, xxxxxxxxxxxxx@dot.ca.gov, xxxxxxxxxx@dot.ca.gov, xxxxxxxx@dot.ca.gov, xxxxxxxxxx@dot.c… 41 Reporting-MTA: dns; sacspam01.dot.ca.gov 42 Received-From-MTA: smtp; sacspam01.dot.ca.gov ([127.0.0.1]) 45 Final-Recipient: rfc822; xxxxxxx@dot.ca.gov 51 Final-Recipient: rfc822; xxxxxxxxxxxxx@dot.ca.gov 57 Final-Recipient: rfc822; xxxxxxxxxx@dot.ca.gov 63 Final-Recipient: rfc822; xxxxxxxx@dot.ca.gov 69 Final-Recipient: rfc822; xxxxxxxxxx@dot.ca.gov 75 Final-Recipient: rfc822; xxxxxx@dot.ca.gov 81 Final-Recipient: rfc822; xxxxxxxxxx@dot.ca.gov [all …]
|
/external/python/cpython2/Lib/email/test/data/ |
D | msg_43.txt | 26 …dot.ca.gov, xxxxxxxxxxxxx@dot.ca.gov, xxxxxxxxxx@dot.ca.gov, xxxxxxxx@dot.ca.gov, xxxxxxxxxx@dot.c… 41 Reporting-MTA: dns; sacspam01.dot.ca.gov 42 Received-From-MTA: smtp; sacspam01.dot.ca.gov ([127.0.0.1]) 45 Final-Recipient: rfc822; xxxxxxx@dot.ca.gov 51 Final-Recipient: rfc822; xxxxxxxxxxxxx@dot.ca.gov 57 Final-Recipient: rfc822; xxxxxxxxxx@dot.ca.gov 63 Final-Recipient: rfc822; xxxxxxxx@dot.ca.gov 69 Final-Recipient: rfc822; xxxxxxxxxx@dot.ca.gov 75 Final-Recipient: rfc822; xxxxxx@dot.ca.gov 81 Final-Recipient: rfc822; xxxxxxxxxx@dot.ca.gov [all …]
|
/external/mesa3d/src/mesa/program/ |
D | program_lexer.l | 161 dot "."[ \t]* 238 {dot}ambient { return AMBIENT; } 239 {dot}attenuation { return ATTENUATION; } 240 {dot}back { return BACK; } 241 {dot}clip { return_token_or_DOT(require_ARB_vp, CLIP); } 242 {dot}color { return COLOR; } 243 {dot}depth { return_token_or_DOT(require_ARB_fp, DEPTH); } 244 {dot}diffuse { return DIFFUSE; } 245 {dot}direction { return DIRECTION; } 246 {dot}emission { return EMISSION; } [all …]
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | normalize_dot.inl | 20 glm::dot(x, y) * 21 glm::inversesqrt(glm::dot(x, x) * 22 glm::dot(y, y)); 33 glm::dot(x, y) * 34 glm::inversesqrt(glm::dot(x, x) * 35 glm::dot(y, y)); 46 glm::dot(x, y) * 47 glm::inversesqrt(glm::dot(x, x) * 48 glm::dot(y, y)); 59 glm::dot(x, y) * [all …]
|
D | intersect.inl | 24 typename genType::value_type d = glm::dot(dir, planeNormal); 29 intersectionDistance = glm::dot(planeOrig - orig, planeNormal) / d; 49 typename genType::value_type a = glm::dot(e1, p); 58 baryPosition.x = f * glm::dot(s, p); 65 baryPosition.y = f * glm::dot(dir, q); 71 baryPosition.z = f * glm::dot(e2, q); 91 // float det = dot(edge1, pvec); 97 // position.y = dot(tvec, pvec); 103 // position.z = dot(dir, qvec); 107 // position.x = dot(edge2, qvec); [all …]
|
/external/skqp/tests/ |
D | Point3Test.cpp | 55 SkScalar dot = xAxis.dot(yAxis); in test_dot() local 56 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 0.0f)); in test_dot() 58 dot = yAxis.dot(zAxis); in test_dot() 59 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 0.0f)); in test_dot() 61 dot = zAxis.dot(xAxis); in test_dot() 62 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 0.0f)); in test_dot() 67 dot = v.dot(v); in test_dot() 68 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 1.0f)); in test_dot() 72 dot = xAxis.dot(v); in test_dot() 73 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, SK_ScalarRoot2Over2)); in test_dot() [all …]
|
/external/skia/tests/ |
D | Point3Test.cpp | 55 SkScalar dot = xAxis.dot(yAxis); in test_dot() local 56 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 0.0f)); in test_dot() 58 dot = yAxis.dot(zAxis); in test_dot() 59 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 0.0f)); in test_dot() 61 dot = zAxis.dot(xAxis); in test_dot() 62 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 0.0f)); in test_dot() 67 dot = v.dot(v); in test_dot() 68 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, 1.0f)); in test_dot() 72 dot = xAxis.dot(v); in test_dot() 73 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dot, SK_ScalarRoot2Over2)); in test_dot() [all …]
|
/external/eigen/test/ |
D | adjoint.cpp | 19 …test_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj… in run() 20 VERIFY(test_isApproxWithRef(v3.dot(s1 * v1 + s2 * v2), s1*v3.dot(v1)+s2*v3.dot(v2), 0)); in run() 23 VERIFY(test_isApproxWithRef(v1.dot(square * v2), (square.adjoint() * v1).dot(v2), 0)); in run() 34 …test_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj… in run() 35 VERIFY(test_isApproxWithRef(v3.dot(s1 * v1 + s2 * v2), s1*v3.dot(v1)+s2*v3.dot(v2), ref)); in run() 59 …VERIFY(internal::isMuchSmallerThan(abs(v1.dot(square * v2) - (square.adjoint() * v1).dot(v2)), ref… in run() 104 VERIFY_IS_APPROX(numext::conj(v1.dot(v2)), v2.dot(v1)); in adjoint() 105 VERIFY_IS_APPROX(numext::real(v1.dot(v1)), v1.squaredNorm()); in adjoint() 109 VERIFY_IS_MUCH_SMALLER_THAN(abs(vzero.dot(v1)), static_cast<RealScalar>(1)); in adjoint() 145 VERIFY_IS_APPROX(v1.dot(rv1.template cast<Scalar>()), v1.dot(rv1)); in adjoint() [all …]
|
D | geo_orthomethods.cpp | 32 VERIFY_IS_MUCH_SMALLER_THAN(v1.cross(v2).dot(v1), Scalar(1)); in orthomethods_3() 33 VERIFY_IS_MUCH_SMALLER_THAN(v1.dot(v1.cross(v2)), Scalar(1)); in orthomethods_3() 34 VERIFY_IS_MUCH_SMALLER_THAN(v1.cross(v2).dot(v2), Scalar(1)); in orthomethods_3() 35 VERIFY_IS_MUCH_SMALLER_THAN(v2.dot(v1.cross(v2)), Scalar(1)); in orthomethods_3() 36 VERIFY_IS_MUCH_SMALLER_THAN(v1.cross(Vector3::Random()).dot(v1), Scalar(1)); in orthomethods_3() 71 VERIFY_IS_MUCH_SMALLER_THAN(v40.cross3(Vector4::Random()).dot(v40), Scalar(1)); in orthomethods_3() 91 VERIFY_IS_MUCH_SMALLER_THAN(v0.unitOrthogonal().dot(v0), Scalar(1)); in orthomethods() 99 VERIFY_IS_MUCH_SMALLER_THAN(v0.unitOrthogonal().dot(v0), Scalar(1)); in orthomethods()
|
/external/vulkan-validation-layers/libs/glm/gtc/ |
D | noise.inl | 46 T pW = static_cast<T>(1.5) - dot(abs(pXYZ), detail::tvec3<T, P>(1)); 77 …vec4<T, P> norm = taylorInvSqrt(detail::tvec4<T, P>(dot(g00, g00), dot(g01, g01), dot(g10, g10), d… 83 T n00 = dot(g00, detail::tvec2<T, P>(fx.x, fy.x)); 84 T n10 = dot(g10, detail::tvec2<T, P>(fx.y, fy.y)); 85 T n01 = dot(g01, detail::tvec2<T, P>(fx.z, fy.z)); 86 T n11 = dot(g11, detail::tvec2<T, P>(fx.w, fy.w)); 138 …orm0 = detail::taylorInvSqrt(detail::tvec4<T, P>(dot(g000, g000), dot(g010, g010), dot(g100, g100)… 143 …orm1 = detail::taylorInvSqrt(detail::tvec4<T, P>(dot(g001, g001), dot(g011, g011), dot(g101, g101)… 149 T n000 = dot(g000, Pf0); 150 T n100 = dot(g100, detail::tvec3<T, P>(Pf1.x, Pf0.y, Pf0.z)); [all …]
|
/external/ppp/pppd/plugins/pppoatm/ |
D | text2atm.c | 78 int count,pos,dot; in do_try_nsap() local 82 count = dot = 0; in do_try_nsap() 86 dot = 1; in do_try_nsap() 89 else if (!dot) return FATAL; /* two dots in a row */ in do_try_nsap() 90 else dot = 0; in do_try_nsap() 96 if (!dot || *text == '0') return FATAL; in do_try_nsap() 114 for (dot = 0; *text; text++) in do_try_nsap() 122 dot = 1; in do_try_nsap() 128 if (!dot) return FATAL; /* two dots in a row */ in do_try_nsap() 129 dot = 0; in do_try_nsap() [all …]
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | DOTGenerator.java | 72 ST dot = null; in getDOT() local 75 dot = stlib.getInstanceOf("dfa"); in getDOT() 76 dot.add("startState", in getDOT() 78 dot.add("useBox", in getDOT() 80 walkCreatingDFADOT(dot, (DFAState)startState); in getDOT() 83 dot = stlib.getInstanceOf("nfa"); in getDOT() 84 dot.add("startState", in getDOT() 86 walkRuleNFACreatingDOT(dot, startState); in getDOT() 88 dot.add("rankdir", rankdir); in getDOT() 89 return dot.toString(); in getDOT() [all …]
|
/external/python/cpython3/Modules/_decimal/libmpdec/ |
D | io.c | 325 #define EXTRACT_DIGIT(s, x, d, dot) \ argument 326 if (s == dot) *s++ = '.'; *s++ = '0' + (char)(x / d); x %= d 328 word_to_string(char *s, mpd_uint_t x, int n, char *dot) in word_to_string() argument 332 case 20: EXTRACT_DIGIT(s, x, 10000000000000000000ULL, dot); /* GCOV_NOT_REACHED */ in word_to_string() 333 case 19: EXTRACT_DIGIT(s, x, 1000000000000000000ULL, dot); in word_to_string() 334 case 18: EXTRACT_DIGIT(s, x, 100000000000000000ULL, dot); in word_to_string() 335 case 17: EXTRACT_DIGIT(s, x, 10000000000000000ULL, dot); in word_to_string() 336 case 16: EXTRACT_DIGIT(s, x, 1000000000000000ULL, dot); in word_to_string() 337 case 15: EXTRACT_DIGIT(s, x, 100000000000000ULL, dot); in word_to_string() 338 case 14: EXTRACT_DIGIT(s, x, 10000000000000ULL, dot); in word_to_string() [all …]
|
/external/tensorflow/tensorflow/python/keras/_impl/keras/utils/ |
D | vis_utils.py | 72 dot = pydot.Dot() 73 dot.set('rankdir', rankdir) 74 dot.set('concentrate', True) 75 dot.set_node_defaults(shape='record') 116 dot.add_node(node) 127 dot.add_edge(pydot.Edge(inbound_layer_id, layer_id)) 128 return dot 149 dot = model_to_dot(model, show_shapes, show_layer_names, rankdir) 155 dot.write(to_file, format=extension)
|
/external/vulkan-validation-layers/libs/glm/detail/ |
D | func_noise.inl | 39 T pW = static_cast<T>(1.5) - dot(abs(pXYZ), detail::tvec3<T, P>(1)); 89 detail::tvec2<T, P> i = floor(v + dot(v, detail::tvec2<T, P>(C[1]))); 90 detail::tvec2<T, P> x0 = v - i + dot(i, detail::tvec2<T, P>(C[0])); 109 dot(x0, x0), 110 dot(detail::tvec2<T, P>(x12.x, x12.y), detail::tvec2<T, P>(x12.x, x12.y)), 111 dot(detail::tvec2<T, P>(x12.z, x12.w), detail::tvec2<T, P>(x12.z, x12.w))), T(0)); 134 return T(130) * dot(m, g); 144 detail::tvec3<T, P> i(floor(v + dot(v, detail::tvec3<T, P>(C.y)))); 145 detail::tvec3<T, P> x0(v - i + dot(i, detail::tvec3<T, P>(C.x))); 200 …::tvec4<T, P> norm = taylorInvSqrt(detail::tvec4<T, P>(dot(p0, p0), dot(p1, p1), dot(p2, p2), dot(… [all …]
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
D | ConstrainedConjGrad.h | 77 alpha = rho / p.dot(q); in pseudo_inverse() 81 rho = r.dot(r); in pseudo_inverse() 121 iter.setRhsNorm(sqrt(b.dot(b))); // gael vect_sp(PS, b, b) in constrained_cg() 138 Scalar al = C.row(i).dot(x) - f.coeff(i); in constrained_cg() 146 Scalar bb = CINV.row(i).dot(z); in constrained_cg() 158 rho = r.dot(z); in constrained_cg() 164 else gamma = (std::max)(0.0, (rho - old_z.dot(z)) / rho_1); in constrained_cg() 170 lambda = rho / q.dot(p); in constrained_cg() 175 Scalar bb = C.row(i).dot(p) - f[i]; in constrained_cg() 177 lambda = (std::min)(lambda, (f.coeff(i)-C.row(i).dot(x)) / bb); in constrained_cg()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | transpose_folding.cc | 35 const HloInstruction& dot, in CanFoldOperandsIntoDot() argument 38 if (HloOpcode::kDot != dot.opcode()) { in CanFoldOperandsIntoDot() 43 for (int64 i = 0; i < dot.operand_count(); ++i) { in CanFoldOperandsIntoDot() 44 auto& operand = *dot.operand(i); in CanFoldOperandsIntoDot() 50 return transposable_gemm_operands(dot, operand_set); in CanFoldOperandsIntoDot() 80 auto* dot = pair.first; in FoldTransposeIntoDot() local 81 std::vector<HloInstruction*> instructions_to_fuse(1, dot); in FoldTransposeIntoDot() 83 instructions_to_fuse.push_back(dot->mutable_operand(operand_index)); in FoldTransposeIntoDot() 91 dot->parent()->CreateFusionInstruction( in FoldTransposeIntoDot()
|
D | dot_decomposer.cc | 32 Status DecomposeBatchDot(HloInstruction* dot) { in DecomposeBatchDot() argument 33 auto computation = dot->parent(); in DecomposeBatchDot() 34 const DotDimensionNumbers& dnums = dot->dot_dimension_numbers(); in DecomposeBatchDot() 35 HloInstruction* lhs = dot->mutable_operand(0); in DecomposeBatchDot() 36 HloInstruction* rhs = dot->mutable_operand(1); in DecomposeBatchDot() 39 const Shape& dot_shape = dot->shape(); in DecomposeBatchDot() 155 return computation->ReplaceInstruction(dot, new_dot); in DecomposeBatchDot() 177 for (auto* dot : batch_dots) { in Run() local 178 TF_RETURN_IF_ERROR(DecomposeBatchDot(dot)); in Run()
|
/external/e2fsprogs/intl/ |
D | localcharset.c | 339 const char *dot = strchr (locale, '.'); in locale_charset() local 341 if (dot != NULL) in locale_charset() 345 dot++; in locale_charset() 347 modifier = strchr (dot, '@'); in locale_charset() 349 return dot; in locale_charset() 350 if (modifier - dot < sizeof (buf)) in locale_charset() 352 memcpy (buf, dot, modifier - dot); in locale_charset() 353 buf [modifier - dot] = '\0'; in locale_charset()
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | cpu_layout_assignment.cc | 130 const HloInstruction* dot = instruction; in AddBackendConstraints() local 136 Shape output_shape(RowMajorShape(dot->shape())); in AddBackendConstraints() 138 const HloInstruction* lhs_instruction = dot->operand(0); in AddBackendConstraints() 140 TF_RETURN_IF_ERROR(constraints->SetOperandLayout(lhs_shape, dot, 0)); in AddBackendConstraints() 144 if (dot->operand_count() > 1) { in AddBackendConstraints() 145 const HloInstruction* rhs_instruction = dot->operand(1); in AddBackendConstraints() 147 TF_RETURN_IF_ERROR(constraints->SetOperandLayout(rhs_shape, dot, 1)); in AddBackendConstraints() 151 TF_RETURN_IF_ERROR(constraints->SetInstructionLayout(output_shape, dot)); in AddBackendConstraints()
|
/external/skia/src/core/ |
D | SkDraw_vertices.cpp | 32 fMat[ 0] = a.dot(0, b.getScaleX(), b.getSkewY()); in setConcat() 33 fMat[ 1] = a.dot(1, b.getScaleX(), b.getSkewY()); in setConcat() 34 fMat[ 2] = a.dot(2, b.getScaleX(), b.getSkewY()); in setConcat() 35 fMat[ 3] = a.dot(3, b.getScaleX(), b.getSkewY()); in setConcat() 37 fMat[ 4] = a.dot(0, b.getSkewX(), b.getScaleY()); in setConcat() 38 fMat[ 5] = a.dot(1, b.getSkewX(), b.getScaleY()); in setConcat() 39 fMat[ 6] = a.dot(2, b.getSkewX(), b.getScaleY()); in setConcat() 40 fMat[ 7] = a.dot(3, b.getSkewX(), b.getScaleY()); in setConcat() 42 fMat[ 8] = a.dot(0, b.getTranslateX(), b.getTranslateY()) + a.fMat[ 8]; in setConcat() 43 fMat[ 9] = a.dot(1, b.getTranslateX(), b.getTranslateY()) + a.fMat[ 9]; in setConcat() [all …]
|
/external/skqp/src/core/ |
D | SkDraw_vertices.cpp | 32 fMat[ 0] = a.dot(0, b.getScaleX(), b.getSkewY()); in setConcat() 33 fMat[ 1] = a.dot(1, b.getScaleX(), b.getSkewY()); in setConcat() 34 fMat[ 2] = a.dot(2, b.getScaleX(), b.getSkewY()); in setConcat() 35 fMat[ 3] = a.dot(3, b.getScaleX(), b.getSkewY()); in setConcat() 37 fMat[ 4] = a.dot(0, b.getSkewX(), b.getScaleY()); in setConcat() 38 fMat[ 5] = a.dot(1, b.getSkewX(), b.getScaleY()); in setConcat() 39 fMat[ 6] = a.dot(2, b.getSkewX(), b.getScaleY()); in setConcat() 40 fMat[ 7] = a.dot(3, b.getSkewX(), b.getScaleY()); in setConcat() 42 fMat[ 8] = a.dot(0, b.getTranslateX(), b.getTranslateY()) + a.fMat[ 8]; in setConcat() 43 fMat[ 9] = a.dot(1, b.getTranslateX(), b.getTranslateY()) + a.fMat[ 9]; in setConcat() [all …]
|
/external/curl/lib/ |
D | curl_gethostname.c | 62 char *dot; in Curl_gethostname() 93 dot = strchr(name, '.'); in Curl_gethostname() 94 if(dot) in Curl_gethostname() 95 *dot = '\0'; in Curl_gethostname()
|