Home
last modified time | relevance | path

Searched refs:stops (Results 1 – 25 of 179) sorted by relevance

12345678

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dget_covering_stops.cpp7 Range<float> getCoveringStops(const std::map<double, std::unique_ptr<Expression>>& stops, in getCoveringStops() argument
9 assert(!stops.empty()); in getCoveringStops()
10 auto minIt = stops.lower_bound(lower); in getCoveringStops()
11 auto maxIt = stops.lower_bound(upper); in getCoveringStops()
15 if (minIt != stops.begin() && minIt != stops.end() && minIt->first > lower) { in getCoveringStops()
19 static_cast<float>(minIt == stops.end() ? stops.rbegin()->first : minIt->first), in getCoveringStops()
20 static_cast<float>(maxIt == stops.end() ? stops.rbegin()->first : maxIt->first) in getCoveringStops()
H A Dstep.cpp16 stops(std::move(stops_)) in Step()
32 if (stops.empty()) { in evaluate()
36 auto it = stops.upper_bound(x); in evaluate()
37 if (it == stops.end()) { in evaluate()
38 return stops.rbegin()->second->evaluate(params); in evaluate()
39 } else if (it == stops.begin()) { in evaluate()
40 return stops.begin()->second->evaluate(params); in evaluate()
48 for (auto it = stops.begin(); it != stops.end(); it++) { in eachChild()
54 for (const auto &stop : stops) { in eachStop()
62 return *input == *(rhs->input) && Expression::childrenEqual(stops, rhs->stops); in operator ==()
[all …]
H A Ddsl.cpp116 std::map<double, std::unique_ptr<Expression>> stops; in step() local
117 stops[-std::numeric_limits<double>::infinity()] = std::move(output0); in step()
118 stops[input1] = std::move(output1); in step()
119 return std::make_unique<Step>(type, std::move(input), std::move(stops)); in step()
138 std::map<double, std::unique_ptr<Expression>> stops; in interpolate() local
139 stops[input1] = std::move(output1); in interpolate()
141 …ParseResult result = createInterpolate(type, interpolator, std::move(input), std::move(stops), ctx… in interpolate()
151 std::map<double, std::unique_ptr<Expression>> stops; in interpolate() local
152 stops[input1] = std::move(output1); in interpolate()
153 stops[input2] = std::move(output2); in interpolate()
[all …]
H A Dinterpolate.cpp33 if (stops.empty()) { in evaluate()
37 auto it = stops.upper_bound(x); in evaluate()
38 if (it == stops.end()) { in evaluate()
39 return stops.rbegin()->second->evaluate(params); in evaluate()
40 } else if (it == stops.begin()) { in evaluate()
41 return stops.begin()->second->evaluate(params); in evaluate()
157 std::map<double, std::unique_ptr<Expression>> stops; in parseInterpolate() local
219 stops.emplace(*label, std::move(*output)); in parseInterpolate()
227 std::move(stops), in parseInterpolate()
234 std::map<double, std::unique_ptr<Expression>> stops, in createInterpolate() argument
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/
H A Dinterpolate.hpp31 for (const auto& stop : stops) { in eachChild()
37 for (const auto& stop : stops) { in eachStop()
44 return ::mbgl::style::expression::getCoveringStops(stops, lower, upper); in getCoveringStops()
58 stops.size() != rhs->stops.size()) in operator ==()
63 return Expression::childrenEqual(stops, rhs->stops); in operator ==()
75 const std::map<double, std::unique_ptr<Expression>> stops; member in mbgl::style::expression::Interpolate
81 std::map<double, std::unique_ptr<Expression>> stops,
H A Dget_covering_stops.hpp13 Range<float> getCoveringStops(const std::map<double, std::unique_ptr<Expression>>& stops,
H A Dstep.hpp40 const std::map<double, std::unique_ptr<Expression>> stops; member in mbgl::style::expression::Step
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dfunction.cpp238 std::map<double, std::unique_ptr<Expression>> stops; in convertStops() local
262 stops.emplace(*t, std::move(*e)); in convertStops()
265 return { std::move(stops) }; in convertStops()
288 std::map<T, std::unique_ptr<Expression>> stops; in convertBranches() local
312 stops.emplace(*t, std::move(*e)); in convertBranches()
315 return { std::move(stops) }; in convertBranches()
334 …ype type, std::unique_ptr<Expression> input, std::map<double, std::unique_ptr<Expression>> stops) { in step() argument
335 return std::make_unique<Step>(type, std::move(input), std::move(stops)); in step()
338 …rpolator, std::unique_ptr<Expression> input, std::map<double, std::unique_ptr<Expression>> stops) { in interpolate() argument
340 …result = createInterpolate(type, std::move(interpolator), std::move(input), std::move(stops), ctx); in interpolate()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/esri/
H A Dgeoroutingmanagerengine_esri.cpp82 QString stops; in calculateRoute() local
86 if (!stops.isEmpty()) in calculateRoute()
87 stops += "; "; in calculateRoute()
89 stops += QString::number(coordinate.longitude()) + QLatin1Char(',') + in calculateRoute()
93 query.addQueryItem(QStringLiteral("stops"), stops); in calculateRoute()
/OK3568_Linux_fs/external/xserver/render/
H A Dpicturestr.h82 PictGradientStopPtr stops; member
88 PictGradientStopPtr stops; member
102 PictGradientStopPtr stops; member
110 PictGradientStopPtr stops; member
530 xFixed * stops, xRenderColor * colors, int *error);
539 xFixed * stops, xRenderColor * colors, int *error);
546 xFixed * stops, xRenderColor * colors, int *error);
H A Dpicture.c825 pGradient->gradient.stops = xallocarray(stopCount, sizeof(PictGradientStop)); in initGradient()
826 if (!pGradient->gradient.stops) { in initGradient()
834 pGradient->gradient.stops[i].x = stopPoints[i]; in initGradient()
835 pGradient->gradient.stops[i].color = stopColors[i]; in initGradient()
884 int nStops, xFixed * stops, xRenderColor * colors, in CreateLinearGradientPicture() argument
912 initGradient(pPicture->pSourcePict, nStops, stops, colors, error); in CreateLinearGradientPicture()
923 xFixed outerRadius, int nStops, xFixed * stops, in CreateRadialGradientPicture() argument
957 initGradient(pPicture->pSourcePict, nStops, stops, colors, error); in CreateRadialGradientPicture()
967 int nStops, xFixed * stops, xRenderColor * colors, in CreateConicalGradientPicture() argument
995 initGradient(pPicture->pSourcePict, nStops, stops, colors, error); in CreateConicalGradientPicture()
[all …]
H A Drender.c1870 xFixed *stops; in ProcRenderCreateLinearGradient() local
1885 stops = (xFixed *) (stuff + 1); in ProcRenderCreateLinearGradient()
1886 colors = (xRenderColor *) (stops + stuff->nStops); in ProcRenderCreateLinearGradient()
1889 stuff->nStops, stops, colors, in ProcRenderCreateLinearGradient()
1909 xFixed *stops; in ProcRenderCreateRadialGradient() local
1924 stops = (xFixed *) (stuff + 1); in ProcRenderCreateRadialGradient()
1925 colors = (xRenderColor *) (stops + stuff->nStops); in ProcRenderCreateRadialGradient()
1930 stuff->nStops, stops, colors, &error); in ProcRenderCreateRadialGradient()
1949 xFixed *stops; in ProcRenderCreateConicalGradient() local
1964 stops = (xFixed *) (stuff + 1); in ProcRenderCreateConicalGradient()
[all …]
/OK3568_Linux_fs/kernel/Documentation/driver-api/media/drivers/
H A Dpxa_camera.rst33 Once the last buffer is filled in, the QCI interface stops.
154 - DMA controller finishes Videobuffer2, and DMA stops
191 If DMA stops just after pxa_camera_check_link_miss() reads DDADR()
/OK3568_Linux_fs/kernel/Documentation/hwmon/
H A Damc6821.rst66 which is rw. Below this temperature fan stops.
82 Below this temperature the fan stops in
H A Dg762.rst59 integer value between 0 and 255. 0 stops the fan, 255 makes
65 entry (0 stops the fan, 255 makes it run at full speed). In closed-loop mode
/OK3568_Linux_fs/external/xserver/fb/
H A Dfbpict.c243 gradient->stops, in create_linear_gradient_image()
262 gradient->stops, in create_radial_gradient_image()
277 gradient->stops, in create_conical_gradient_image()
/OK3568_Linux_fs/buildroot/dl/ncurses/
HDncurses-6.1-20190615.patch.gz1# ncurses 6.1 - patch 20190615 - Thomas E. Dickey 2# 3# --- ...
/OK3568_Linux_fs/external/xserver/glamor/
H A Dglamor_gradient.c724 pixman_fixed_to_double(pgradient->stops[i].color.red); in _glamor_gradient_set_stops()
726 pixman_fixed_to_double(pgradient->stops[i].color.green); in _glamor_gradient_set_stops()
728 pixman_fixed_to_double(pgradient->stops[i].color.blue); in _glamor_gradient_set_stops()
730 pixman_fixed_to_double(pgradient->stops[i].color.alpha); in _glamor_gradient_set_stops()
733 (GLfloat) pixman_fixed_to_double(pgradient->stops[i].x); in _glamor_gradient_set_stops()
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/strace/strace/
H A Dptest-spacesave.patch6 If the test is successful, remove the log and exp files. This stops strace
/OK3568_Linux_fs/buildroot/package/i2pd/
H A Di2pd.service20 # i2pd stops accepting new tunnels and waits ~10 min while old ones do not die.
/OK3568_Linux_fs/kernel/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/
H A Dchcr_common.h97 q->q.stops++; in chcr_eth_txq_stop()
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/gcc/gcc/
H A D0008-libtool.patch9 This patch stops this speading to libdir in the libstdc++.la file within libtool.
/OK3568_Linux_fs/kernel/Documentation/core-api/
H A Dmemory-hotplug.rst84 MEM_ONLINE, or MEM_OFFLINE action to cancel hotplugging. It stops
87 NOTIFY_STOP stops further processing of the notification queue.
/OK3568_Linux_fs/kernel/Documentation/driver-api/thermal/
H A Dx86_pkg_temperature_thermal.rst47 Setting 0, stops sending thermal notifications.
/OK3568_Linux_fs/kernel/drivers/infiniband/hw/hfi1/
H A Dipoib.h87 atomic_t stops; member

12345678