Home
last modified time | relevance | path

Searched refs:degree (Results 1 – 4 of 4) sorted by relevance

/developtools/integration_verification/cases/smoke/basic/screenshot32/xdevice_smoke/testcases/
Dtest_case.py81 degree = 0
84 degree = degree + (1 - abs(hist1[i] - hist2[i]) / max(hist1[i], hist2[i]))
86 degree = degree + 1
87 degree = degree / len(hist1)
88 return degree
/developtools/smartperf_host/ide/src/base-ui/chart/pie/
DLitChartPie.ts265 let degree = this.computeDegree(x, y); variable
267 it.hover = degree >= it.startDegree! && degree <= it.endDegree!;
317 let degree = this.computeDegree(x, y); variable
319 if (degree >= it.startDegree! && degree <= it.endDegree!) {
340 let degree = (360 * Math.atan(y / x)) / (2 * Math.PI); variable
342 degree = degree;
344 degree = 180 + degree;
346 degree = 180 + degree;
348 degree = 270 + (90 + degree);
350 return degree;
/developtools/integration_verification/cases/smoke/basic/screenshot32/resource/
Dcapturescreentest.py191 degree = 0
194 degree = degree + (1 - abs(hist1[i] - hist2[i]) / max(hist1[i], hist2[i]))
196 degree = degree + 1
197 degree = degree / len(hist1)
198 return degree
/developtools/profiler/hiebpf/include/
Dvmlinux.h3496 unsigned int degree; member