/external/pigweed/pw_persistent_ram/ |
D | persistent_test.cc | 43 auto& persistent = *(new (&buffer_) Persistent<uint32_t>()); in TEST_F() local 44 EXPECT_FALSE(persistent.has_value()); in TEST_F() 46 persistent = 42; in TEST_F() 47 ASSERT_TRUE(persistent.has_value()); in TEST_F() 48 EXPECT_EQ(42u, persistent.value()); in TEST_F() 50 persistent.~Persistent(); // Emulate shutdown / global destructors. in TEST_F() 54 auto& persistent = *(new (&buffer_) Persistent<uint32_t>()); in TEST_F() local 55 ASSERT_TRUE(persistent.has_value()); in TEST_F() 56 EXPECT_EQ(42u, persistent.value()); in TEST_F() 62 auto& persistent = *(new (&buffer_) Persistent<uint32_t>()); in TEST_F() local [all …]
|
D | persistent_buffer_test.cc | 58 auto& persistent = GetPersistentBuffer(); in TEST_F() local 59 auto writer = persistent.GetWriter(); in TEST_F() 60 EXPECT_EQ(persistent.size(), 0u); in TEST_F() 63 ASSERT_TRUE(persistent.has_value()); in TEST_F() 65 persistent.~PersistentBuffer(); // Emulate shutdown / global destructors. in TEST_F() 69 auto& persistent = GetPersistentBuffer(); in TEST_F() local 70 ASSERT_TRUE(persistent.has_value()); in TEST_F() 71 EXPECT_EQ(persistent.size(), sizeof(kExpectedNumber)); in TEST_F() 74 memcpy(&temp, persistent.data(), sizeof(temp)); in TEST_F() 86 auto& persistent = GetPersistentBuffer(); in TEST_F() local [all …]
|
D | docs.rst | 7 persistent RAM. By persistent RAM we are referring to memory which is not 21 loss of persistent data across software updates. 30 1. If persistent linker sections are provided, we recommend using our section 31 placement macro. For example imagine the persistent section name is called 36 #include "pw_persistent_ram/persistent.h" 43 2. If persistent memory ranges are provided, we recommend using a struct to wrap 51 #include "pw_persistent_ram/persistent.h" 72 In order for persistent RAM containers to be as useful as possible, any 73 invalidation of persistent RAM and the containers therein should be executed 77 The preferred way to clear Persistent RAM is to simply zero entire persistent [all …]
|
D | BUILD.gn | 30 "public/pw_persistent_ram/persistent.h", 79 target = "size_report:persistent" 84 target = "size_report:persistent"
|
/external/pigweed/pw_persistent_ram/size_report/ |
D | persistent.cc | 23 pw::persistent_ram::Persistent<uint32_t> persistent; in main() local 26 persistent.emplace(42u); in main() 29 persistent = 13u; in main() 32 persistent.reset(); in main() 35 if (persistent.has_value() && persistent.value() == 0u) { in main()
|
D | BUILD | 25 name = "persistent", 27 "persistent.cc", 33 "//pw_persistent_ram:persistent",
|
D | BUILD.gn | 24 pw_executable("persistent") { 25 sources = [ "persistent.cc" ]
|
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/ |
D | p2p_group_add.py | 50 global persistent 64 def __init__(self,interface_name,wpas_dbus_interface,persistent,frequency, argument 69 self.persistent = persistent 124 self.P2PDictionary = {'persistent':self.persistent} 159 persistent = False variable 187 persistent = False variable 189 persistent = True variable 214 persistent,frequency,persistent_group_object)
|
/external/llvm-project/lldb/examples/test/ |
D | lldbtest-stderr | 7 Test that lldb persistent variables works correctly. ... ok 16 Test that lldb persistent variables works correctly. ... ok 25 Test that lldb persistent variables works correctly. ... ok 34 Test that lldb persistent variables works correctly. ... ok
|
/external/iptables/extensions/ |
D | libip6t_DNAT.txlate | 7 …6tables-translate -t nat -A prerouting -p tcp -j DNAT --to-destination [fec0::1234]:80 --persistent 8 nft add rule ip6 nat prerouting meta l4proto tcp counter dnat to [fec0::1234]:80 persistent 10 …ranslate -t nat -A prerouting -p tcp -j DNAT --to-destination [fec0::1234]:80 --random --persistent 11 nft add rule ip6 nat prerouting meta l4proto tcp counter dnat to [fec0::1234]:80 random,persistent
|
D | libip6t_SNAT.txlate | 10 …late -t nat -A postrouting -o eth0 -p tcp -j SNAT --to [fec0::1234]:123 --random-fully --persistent 11 …ostrouting oifname "eth0" meta l4proto tcp counter snat to [fec0::1234]:123 fully-random,persistent
|
D | libipt_SNAT.txlate | 13 iptables-translate -t nat -A postrouting -o eth0 -j SNAT --to 1.2.3.4 --random --persistent 14 nft add rule ip nat postrouting oifname "eth0" counter snat to 1.2.3.4 random,persistent
|
/external/tensorflow/tensorflow/lite/toco/ |
D | allocate_transient_arrays.cc | 38 bool persistent = false; member 48 return !lifespan.persistent && lifespan.first_op == op_index; in StartsAt() 52 return !lifespan.persistent && lifespan.last_op == op_index; in EndsAt() 62 if (!lifespan.persistent) { in UpdateArrayLifespan() 81 lifespan.persistent = true; in ComputeArrayLifespans() 264 if (it != array_lifespans.end() && it->second.persistent) { in AllocateTransientArrays() 315 if (it != array_lifespans.end() && it->second.persistent) { in AllocateTransientArrays() 326 if (!array_lifespans[input].persistent) { in AllocateTransientArrays() 331 if (!array_lifespans[output].persistent) { in AllocateTransientArrays()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_debug_flush.c | 58 boolean persistent; member 213 boolean map_sync, persistent; in debug_flush_map() local 220 persistent = !map_sync || fbuf->supports_persistent || in debug_flush_map() 236 fbuf->maps[fbuf->map_count].persistent = persistent; in debug_flush_map() 237 if (!persistent) { in debug_flush_map() 247 if (!persistent) { in debug_flush_map() 282 if (!fbuf->maps[i].persistent) { in debug_flush_unmap()
|
/external/libchrome/base/message_loop/ |
D | message_loop_current.cc | 155 bool persistent, in WatchFileDescriptor() argument 160 return pump_->WatchFileDescriptor(fd, persistent, mode, controller, delegate); in WatchFileDescriptor() 223 bool persistent, in WatchFileDescriptor() argument 228 return pump_->WatchFileDescriptor(fd, persistent, mode, controller, delegate); in WatchFileDescriptor() 238 bool persistent, in WatchZxHandle() argument 243 return pump_->WatchZxHandle(handle, persistent, signals, controller, in WatchZxHandle()
|
D | message_loop_current.h | 213 bool persistent, 269 bool persistent, 278 bool persistent,
|
/external/tensorflow/tensorflow/python/eager/ |
D | backprop_test.py | 407 with backprop.GradientTape(persistent=True) as tape: 416 with backprop.GradientTape(persistent=True) as tape: 430 with backprop.GradientTape(persistent=True) as t: 509 with backprop.GradientTape(persistent=True) as t: 564 wrapped_fn = backprop.make_vjp(f, persistent=False) 574 wrapped_fn = backprop.make_vjp(f, persistent=True) 711 with backprop.GradientTape(persistent=False) as g: 721 with backprop.GradientTape(persistent=True) as g: 735 with backprop.GradientTape(persistent=True) as g: 868 with backprop.GradientTape(persistent=True) as g: [all …]
|
/external/chromium-trace/catapult/systrace/systrace/test_data/ |
D | profile-chrome_systrace_perf_chrome_data | 1 …persistent", "tid": 13885, "sf": 24}, {"name": "cycles:HG", "weight": 1131898, "ts": 196493638935.…
|
/external/llvm-project/lldb/source/Target/ |
D | ThreadPlanCallFunctionUsingABI.cpp | 62 const bool persistent = false; in SetReturnValue() local 64 abi->GetReturnValueObject(GetThread(), m_return_type, persistent); in SetReturnValue()
|
/external/tensorflow/tensorflow/python/framework/experimental/ |
D | tape.py | 30 def __init__(self, persistent=False): argument 31 self._c_tape = _tape.Tape(persistent)
|
/external/curl/tests/data/ |
D | test146 | 6 persistent connection 23 persistent FTP with different paths
|
D | test183 | 7 persistent connection 28 HTTP GET two URLs over a single proxy with persistent connection
|
/external/python/cpython2/Doc/library/ |
D | shelve.rst | 14 A "shelf" is a persistent, dictionary-like object. The difference with "dbm" 23 Open a persistent dictionary. The filename specified is the base filename for 36 persistent-dictionary entry is modified. By default modified objects are 41 the persistent dictionary, but, if many entries are accessed, it can consume 48 that the persistent data is flushed to disk. 58 persistent storage. 68 set to :const:`True`. Also empty the cache and synchronize the persistent 74 Synchronize and close the persistent *dict* object. Operations on a closed
|
/external/wpa_supplicant_8/wpa_supplicant/hidl/1.4/ |
D | p2p_iface.h | 90 bool persistent, uint32_t go_intent, connect_cb _hidl_cb) override; 97 bool persistent, SupplicantNetworkId persistent_network_id, 197 bool persistent, uint32_t freq, const hidl_array<uint8_t, 6>& peer_address, 238 bool persistent, uint32_t go_intent); 244 bool persistent, SupplicantNetworkId persistent_network_id); 315 bool persistent, uint32_t freq, const std::array<uint8_t, 6>& peer_address,
|
/external/kernel-headers/original/uapi/linux/ |
D | cdrom.h | 764 __u8 persistent : 1; member 768 __u8 persistent : 1; member 791 __u8 persistent : 1; member 795 __u8 persistent : 1; member 921 __u8 persistent:1; member 925 __u8 persistent:1; member
|