Home
last modified time | relevance | path

Searched full:retain (Results 1 – 25 of 3434) sorted by relevance

12345678910>>...138

/OK3568_Linux_fs/external/chromium/licenses/
H A DNOTICE6 * Redistributions of source code must retain the above copyright
37 * Redistributions of source code must retain the above copyright
66 1. Redistributions of source code must retain the above copyright
107 1. Redistributions of source code must retain the above copyright
136 1. Redistributions of source code must retain the above copyright
215 * Redistributions of source code must retain the above copyright
259 * Redistributions of source code must retain the above copyright
288 * Redistributions of source code must retain the above copyright
316 * Redistributions of source code must retain the above copyright
360 * Redistributions of source code must retain the above copyright
[all …]
H A DLICENSE.4535 * 1. Redistributions of source code must retain the above copyright
57 * 6. Redistributions of any form whatsoever must retain the following
109 * 1. Redistributions of source code must retain the copyright
197 * Redistributions of source code must retain the above copyright
231 * Redistributions of source code must retain the above copyright
/OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/
H A DNet-SNMP17 …* Redistributions of source code must retain the above copyright notice, this list of conditions a…
27 …* Redistributions of source code must retain the above copyright notice, this list of conditions a…
45 …* Redistributions of source code must retain the above copyright notice, this list of conditions a…
57 …* Redistributions of source code must retain the above copyright notice, this list of conditions a…
67 …* Redistributions of source code must retain the above copyright notice, this list of conditions a…
79 …* Redistributions of source code must retain the above copyright notice, this list of conditions a…
93 …1. Redistributions of source code must retain the above copyright notice, this list of conditions …
103 …* Redistributions of source code must retain the above copyright notice, this list of conditions a…
H A DSleepycat10 Redistributions of source code must retain the above copyright
44 Redistributions of source code must retain the above copyright
71 Redistributions of source code must retain the above copyright
H A DBSD-3-Clause-Attribution3 …1. Redistributions of source code must retain the above copyright notice, this list of conditions …
9 …4. Redistributions of any form whatsoever must retain the following acknowledgment: 'This product …
H A DOpenSSL11 1. Redistributions of source code must retain the above copyright
33 6. Redistributions of any form whatsoever must retain the following
84 1. Redistributions of source code must retain the copyright
/OK3568_Linux_fs/kernel/tools/testing/selftests/net/forwarding/
H A Dpedit_dsfield.sh193 "ip dsfield set $((dscp << 2)) retain 0xfc" \
212 "ip dsfield set $ecn retain 0x03" \
229 flower action pedit ex munge ip dsfield set 124 retain 0xfc \
230 action pedit ex munge ip dsfield set 1 retain 0x03
273 "ip6 traffic_class set $((dscp << 2)) retain 0xfc" \
292 "ip6 traffic_class set $ecn retain 0x3" \
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dtile_pyramid.cpp128 // Stores a list of all the tiles that we're definitely going to retain. There are two in update()
130 // use because they're still loading. In addition to that, we also need to retain all tiles that in update()
132 std::set<OverscaledTileID> retain; in update() local
136 if (retain.emplace(tile.id).second) { in update()
217 // Remove stale tiles. This goes through the (sorted!) tiles map and retain set in lockstep in update()
218 // and removes items from tiles that don't have the corresponding key in the retain set. in update()
221 auto retainIt = retain.begin(); in update()
223 if (retainIt == retain.end() || tilesIt->first < *retainIt) { in update()
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Daspeed-bmc-opp-mowgli.dts119 retain-state-shutdown;
125 retain-state-shutdown;
131 retain-state-shutdown;
137 retain-state-shutdown;
143 retain-state-shutdown;
149 retain-state-shutdown;
155 retain-state-shutdown;
161 retain-state-shutdown;
H A Daspeed-bmc-opp-witherspoon.dts117 retain-state-shutdown;
123 retain-state-shutdown;
129 retain-state-shutdown;
135 retain-state-shutdown;
141 retain-state-shutdown;
147 retain-state-shutdown;
153 retain-state-shutdown;
H A Daspeed-bmc-opp-swift.dts146 retain-state-shutdown;
152 retain-state-shutdown;
158 retain-state-shutdown;
164 retain-state-shutdown;
170 retain-state-shutdown;
176 retain-state-shutdown;
182 retain-state-shutdown;
188 retain-state-shutdown;
H A Dimx6qdl-nit6xlite.dtsi90 retain-state-suspended;
96 retain-state-suspended;
102 retain-state-suspended;
108 retain-state-suspended;
114 retain-state-suspended;
H A Daspeed-bmc-opp-mihawk.dts170 retain-state-shutdown;
176 retain-state-shutdown;
182 retain-state-shutdown;
189 retain-state-shutdown;
195 retain-state-shutdown;
201 retain-state-shutdown;
207 retain-state-shutdown;
213 retain-state-shutdown;
219 retain-state-shutdown;
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-core/plymouth/files/
H A D0001-plymouth-Add-the-retain-splash-option.patch4 Subject: [PATCH] plymouth : Add the retain-splash option
9 Adding the "retain-splash” option to tell plymouth to keep the boot
29 +ExecStart=-@PLYMOUTH_CLIENT_DIR@/plymouth quit --retain-splash
/OK3568_Linux_fs/kernel/Documentation/scsi/
H A Daic79xx.rst284 may be omitted indicating that they should retain
305 All other targets retain the default depth.
315 All other targets retain the default depth.
324 they should retain the default read streaming setting.
337 All other targets retain the default read
353 All other targets retain the default read
362 they should retain the default read streaming setting.
400 they should retain the default precompensation setting.
423 they should retain the default slew rate setting.
446 they should retain the default read streaming setting.
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Dsqlite3.cpp247 void Query::bind(int offset, const char * value, std::size_t length, bool retain) { in bind() argument
253 retain ? SQLITE_TRANSIENT : SQLITE_STATIC)); in bind()
256 void Query::bind(int offset, const std::string& value, bool retain) { in bind() argument
257 bind(offset, value.data(), value.size(), retain); in bind()
260 void Query::bindBlob(int offset, const void * value, std::size_t length, bool retain) { in bindBlob() argument
266 retain ? SQLITE_TRANSIENT : SQLITE_STATIC)); in bindBlob()
269 void Query::bindBlob(int offset, const std::vector<uint8_t>& value, bool retain) { in bindBlob() argument
270 bindBlob(offset, value.data(), value.size(), retain); in bindBlob()
H A Dsqlite3.hpp132 void bind(int offset, const char*, std::size_t length, bool retain = true);
133 void bind(int offset, const std::string&, bool retain = true);
136 void bindBlob(int offset, const void*, std::size_t length, bool retain = true);
137 void bindBlob(int offset, const std::vector<uint8_t>&, bool retain = true);
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/leds/
H A Dleds-gpio.yaml33 retain-state-suspended:
38 retain-state-shutdown:
40 Retain the state of the LED on shutdown. Useful in BMC systems, for
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dsqlite3.cpp297 void Query::bind(int offset, const char* value, std::size_t length, bool /* retain */) { in bind()
310 void Query::bind(int offset, const std::string& value, bool retain) { in bind() argument
311 bind(offset, value.data(), value.size(), retain); in bind()
314 void Query::bindBlob(int offset, const void* value_, std::size_t length, bool retain) { in bindBlob() argument
323 stmt.impl->query.bindValue(offset - 1, retain ? QByteArray(value, length) : in bindBlob()
329 void Query::bindBlob(int offset, const std::vector<uint8_t>& value, bool retain) { in bindBlob() argument
330 bindBlob(offset, value.data(), value.size(), retain); in bindBlob()
/OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/
H A Dmali_kbase_js_ctx_attr.c31 * and if so, retain that attribute on the runpool.
35 * @attribute: Atribute to check/retain
129 * kbasep_js_ctx_attr_ctx_retain_attr - Retain a certain attribute on a ctx,
134 * @attribute: Atribute to retain
220 /* Retain any existing attributes */ in kbasep_js_ctx_attr_runpool_retain_ctx()
H A Dmali_kbase_ctx_sched.h72 * kbase_ctx_sched_retain_ctx - Retain a reference to the @ref kbase_context
73 * @kctx: The context to which to retain a reference
91 * kbase_ctx_sched_retain_ctx_refcount - Retain a reference to the @ref kbase_context
92 * @kctx: The context to which to retain a reference
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/arm/
H A Dl2c2x0.yaml186 (forcibly enable), property absent (retain settings set by firmware)
193 <1> (forcibly enable), property absent (retain settings set by
202 preferably retain firmware settings)
209 preferably retain firmware settings)
/OK3568_Linux_fs/kernel/drivers/gpu/arm/midgard/
H A Dmali_kbase_ctx_sched.h59 /* kbase_ctx_sched_retain_ctx - Retain a reference to the @ref kbase_context
61 * @kctx: The context to which to retain a reference
80 * @kctx: The context to which to retain a reference
/OK3568_Linux_fs/external/security/rk_tee_user/v2/host/openssl/include/openssl/
H A Dseed.h7 * 1. Redistributions of source code must retain the above copyright
33 * 1. Redistributions of source code must retain the above copyright
55 * 6. Redistributions of any form whatsoever must retain the following
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/rockchip/
H A Drk3528-demo.dtsi94 retain-state-suspended;
95 retain-state-shutdown;
101 retain-state-suspended;
102 retain-state-shutdown;

12345678910>>...138