Searched refs:intercept (Results 1 - 8 of 8) sorted by relevance
/third_party/skia/src/core/ |
H A D | SkGlyph.cpp | 292 const SkGlyph::Intercept* intercept,SkScalar* array, int* count) { in ensureIntercepts() 296 *array++ = intercept->fInterval[index] * scale + xPos; in ensureIntercepts() 307 const SkGlyph::Intercept* intercept = fPathData->fIntercept; in ensureIntercepts() 308 while (intercept) { in ensureIntercepts() 309 if (bounds[0] == intercept->fBounds[0] && bounds[1] == intercept->fBounds[1]) { in ensureIntercepts() 310 return intercept; in ensureIntercepts() 312 intercept = intercept->fNext; in ensureIntercepts() 324 SkGlyph::Intercept* intercept in ensureIntercepts() local [all...] |
H A D | SkGeometry.cpp | 1140 typedef int (SkDCubic::*InterceptProc)(double intercept, double roots[3]) const; 1142 static bool cubic_dchop_at_intercept(const SkPoint src[4], SkScalar intercept, SkPoint dst[7], 1146 int count = (cubic.set(src).*method)(intercept, roots);
|
/third_party/vulkan-loader/tests/ |
H A D | loader_unknown_ext_tests.cpp | 804 static VKAPI_ATTR uint32_t VKAPI_CALL intercept(DispatchableHandle handle, uint32_t a, uint32_t b) { in intercept() function 832 static VKAPI_ATTR uint32_t VKAPI_CALL intercept(DispatchableHandle handle, uint32_t a, uint32_t b, char c) { in intercept() function 863 static VKAPI_ATTR float VKAPI_CALL intercept(DispatchableHandle handle, int* ptr_a, int* ptr_b) { in intercept() function 898 static VKAPI_ATTR float VKAPI_CALL intercept(DispatchableHandle handle, int* ptr_a, float* ptr_b, uint32_t c) { in intercept() function 946 static VKAPI_ATTR VkResult VKAPI_CALL intercept(DispatchableHandle handle, VkPhysicalDeviceLimits* limits, uint32_t* count, in intercept() function 1002 // Find how many layers intercept this function, stop if any layer 'implements' the function, thus doesn't return in check() 1033 func.name, to_vkVoidFunction(&Function::template intercept<LayerInterceptData<LayerStruct>>)); in add_to_layer() 1060 func.name, to_vkVoidFunction(&Function::template intercept<LayerInterceptData<LayerStruct>>)); in add_to_layer()
|
/third_party/python/Lib/ |
H A D | statistics.py | 97 LinearRegression(slope=0.1, intercept=1.5) 1024 LinearRegression = namedtuple('LinearRegression', ('slope', 'intercept')) 1028 """Slope and intercept for simple linear regression. 1030 Return the slope and intercept of simple linear regression 1035 y = slope * x + intercept + noise 1037 where *slope* and *intercept* are the regression parameters that are 1049 LinearRegression(slope=3.09078914170..., intercept=1.75684970486...) 1055 Since the *intercept* will always be 0.0, the underlying linear 1062 LinearRegression(slope=3.02447542484..., intercept=0.0) 1082 intercept [all...] |
/third_party/node/lib/ |
H A D | domain.js | 420 Domain.prototype.intercept = function(cb) {
|
/third_party/python/Lib/test/ |
H A D | test_statistics.py | 2586 slope, intercept = statistics.linear_regression(x, y) 2587 self.assertAlmostEqual(intercept, true_intercept) 2593 slope, intercept = statistics.linear_regression(x, y, proportional=True) 2595 self.assertEqual(intercept, 0.0)
|
/third_party/vixl/src/aarch64/ |
H A D | simulator-aarch64.h | 281 // An entry denoting a function to intercept when branched to during 316 std::unique_ptr<BranchInterceptionAbstract> intercept = in RegisterBranchInterception() local 318 branch_interceptions_.insert(std::make_pair(addr, std::move(intercept))); in RegisterBranchInterception()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |
Completed in 42 milliseconds