HomeSort by relevance Sort by last modified time
    Searched full:tmid (Results 1 - 5 of 5) sorted by null

  /external/skia/src/core/
SkCubicClipper.cpp 86 SkScalar tMid = (tPos + tNeg) / 2;
87 SkScalar y01 = SkScalarInterp(ycrv[0], ycrv[1], tMid);
88 SkScalar y12 = SkScalarInterp(ycrv[1], ycrv[2], tMid);
89 SkScalar y23 = SkScalarInterp(ycrv[2], ycrv[3], tMid);
90 SkScalar y012 = SkScalarInterp(y01, y12, tMid);
91 SkScalar y123 = SkScalarInterp(y12, y23, tMid);
92 SkScalar y0123 = SkScalarInterp(y012, y123, tMid);
94 *t = tMid;
97 if (y0123 < 0) tNeg = tMid;
98 else tPos = tMid;
    [all...]
  /art/runtime/
trace.cc 95 static TraceAction DecodeTraceAction(uint32_t tmid) {
96 return static_cast<TraceAction>(tmid & kTraceMethodActionMask);
99 ArtMethod* Trace::DecodeTraceMethod(uint32_t tmid) {
101 return unique_methods_[tmid >> TraceActionBits];
121 uint32_t tmid = (EncodeTraceMethod(method) << TraceActionBits) | action; local
122 DCHECK_EQ(method, DecodeTraceMethod(tmid));
123 return tmid;
629 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid)); local
630 ArtMethod* method = DecodeTraceMethod(tmid);
981 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid)); local
    [all...]
trace.h 225 ArtMethod* DecodeTraceMethod(uint32_t tmid) LOCKS_EXCLUDED(unique_methods_lock_);
  /external/libcxxabi/src/Unwind/
UnwindCursor.hpp 913 //if ( log ) fprintf(stderr, "\tmid=%d, low=%d, high=%d, *mid=0x%08X\n",
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
UnwindCursor.hpp 905 //if ( log ) fprintf(stderr, "\tmid=%d, low=%d, high=%d, *mid=0x%08X\n",
    [all...]

Completed in 282 milliseconds