/external/jmonkeyengine/engine/src/core/com/jme3/collision/ |
D | SweepSphere.java | 154 float newT = getLowestRoot(a, b, c, t); in collideWithVertex() local 164 return newT; in collideWithVertex() 187 float newT = getLowestRoot(a, b, c, t); in collideWithSegment() local 188 if (!Float.isNaN(newT)){ in collideWithSegment() 189 float f = (EdotV * newT - EdotB) / edgeSquared; in collideWithSegment() 192 return newT; in collideWithSegment() 296 float newT; in collideWithTriangle() local 297 newT = collideWithVertex(sCenter, sVelocity, velocitySquared, v1, minT); in collideWithTriangle() 298 if (!Float.isNaN(newT)){ in collideWithTriangle() 299 minT = newT; in collideWithTriangle() [all …]
|
/external/skia/tests/ |
D | PathOpsCubicLineIntersectionIdeas.cpp | 219 double newT = binary_search(cubic, step, pt, t, &iters); in DEF_TEST() local 220 if (newT >= 0) { in DEF_TEST() 221 diff = fabs(t - newT); in DEF_TEST() 265 double newT = binary_search(cubic, 0.1, pt, t, &iters); in testOneFailure() local 266 return newT; in testOneFailure() 273 double newT = testOneFailure(failure); in DEF_TEST() local 274 SkASSERT_RELEASE(newT >= 0); in DEF_TEST() 281 double newT = testOneFailure(failure); in DEF_TEST() local 282 SkASSERT_RELEASE(newT >= 0); in DEF_TEST()
|
D | PathOpsTestCommon.cpp | 56 double newT = start + (index / parts) * (end - start); in addTs() local 57 if (newT > 0 && newT < 1) { in addTs() 58 ts->push_back(newT); in addTs()
|
/external/skia/include/private/ |
D | SkTArray.h | 144 T* newT = reinterpret_cast<T*>(this->push_back_raw(1)); in push_back() local 145 new (newT) T; in push_back() 146 return *newT; in push_back() 153 T* newT = reinterpret_cast<T*>(this->push_back_raw(1)); in push_back() local 154 new (newT) T(t); in push_back() 155 return *newT; in push_back() 162 T* newT = reinterpret_cast<T*>(this->push_back_raw(1)); in emplace_back() local 163 return *new (newT) T(std::forward<Args>(args)...); in emplace_back()
|
/external/clang/test/SemaObjC/ |
D | unused-backing-ivar-warning.m | 48 - (void) setT:(id)newT { // expected-warning {{ivar 'tIvar' which backs the property is not referen… 49 okIvar = newT;
|
/external/skia/src/pathops/ |
D | SkOpCoincidence.cpp | 111 double newT = oStartPtT->fT + oStartRange * startPart; in addExpanded() local 112 newPt = oStart->segment()->addT(newT, SkOpSegment::kAllowAlias, allocator); in addExpanded() 119 double newT = startPtT->fT + startRange * oStartPart; in addExpanded() local 120 newPt = start->segment()->addT(newT, SkOpSegment::kAllowAlias, allocator); in addExpanded()
|
D | SkPathOpsCubic.cpp | 321 double newT = binarySearch(min, max, axisIntercept, xAxis); in searchRoots() local 322 if (newT >= 0) { in searchRoots() 323 validRoots[validCount++] = newT; in searchRoots()
|
D | SkPathOpsDebug.cpp | 1149 double newT = oStartPtT->fT + oStartRange * startPart; in debugAddExpanded() local 1150 log->record(kAddExpandedCoin_Glitch, id, oStart, newT, test->pt()); in debugAddExpanded() 1153 double newT = startPtT->fT + startRange * oStartPart; in debugAddExpanded() local 1154 log->record(kAddExpandedCoin_Glitch, id, start, newT, oTest->pt()); in debugAddExpanded()
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 623 ObjCObjectPointerTypeLoc newT in actOnObjCTypeParam() local 625 newT.setStarLoc(starLoc); in actOnObjCTypeParam()
|