/external/clang/test/OpenMP/ |
D | target_update_if_messages.cpp | 15 #pragma omp target update to(n) if // expected-error {{expected '(' after 'if'}} in tmain() 16 #pragma omp target update from(n) if ( // expected-error {{expected expression}} expected-error {{e… in tmain() 17 #pragma omp target update to(n) if () // expected-error {{expected expression}} in tmain() 18 #pragma omp target update from(n) if (argc // expected-error {{expected ')'}} expected-note {{to ma… in tmain() 19 #pragma omp target update to(n) if (argc)) // expected-warning {{extra tokens at the end of '#pragm… in tmain() 20 #pragma omp target update from(n) if (argc > 0 ? argv[1] : argv[2]) in tmain() 21 #pragma omp target update to(n) if (foobool(argc)), if (true) // expected-error {{directive '#pragm… in tmain() 22 #pragma omp target update from(n) if (S) // expected-error {{'S' does not refer to a value}} in tmain() 23 #pragma omp target update to(n) if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{t… in tmain() 24 #pragma omp target update from(n) if (argc argc) // expected-error {{expected ')'}} expected-note {… in tmain() [all …]
|
D | target_update_to_messages.cpp | 82 …update to // expected-error {{expected '(' after 'to'}} expected-error {{expected at least one 'to… in tmain() 83 …update to( // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {… in tmain() 84 …update to() // expected-error {{expected expression}} expected-error {{expected at least one 'to' … in tmain() 85 …update() // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}… in tmain() 86 …update to(alloc) // expected-error {{use of undeclared identifier 'alloc'}} expected-error {{expec… in tmain() 87 #pragma omp target update to(x) in tmain() 88 #pragma omp target update to(t[:I]) in tmain() 89 …update to(T) // expected-error {{'T' does not refer to a value}} expected-error {{expected at leas… in tmain() 90 #pragma omp target update to(I) // expected-error 2 {{expected expression containing only member ac… in tmain() 91 #pragma omp target update to(S2::S2s) in tmain() [all …]
|
D | target_update_from_messages.cpp | 82 …update from // expected-error {{expected '(' after 'from'}} expected-error {{expected at least one… in tmain() 83 …update from( // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error… in tmain() 84 …update from() // expected-error {{expected expression}} expected-error {{expected at least one 'to… in tmain() 85 …update() // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}… in tmain() 86 …update from(alloc) // expected-error {{use of undeclared identifier 'alloc'}} expected-error {{exp… in tmain() 87 #pragma omp target update from(x) in tmain() 88 #pragma omp target update from(t[:I]) in tmain() 89 …update from(T) // expected-error {{'T' does not refer to a value}} expected-error {{expected at le… in tmain() 90 #pragma omp target update from(I) // expected-error 2 {{expected expression containing only member … in tmain() 91 #pragma omp target update from(S2::S2s) in tmain() [all …]
|
D | target_update_depend_messages.cpp | 25 #pragma omp depend target update to(z) // expected-error{{expected an OpenMP directive}} in tmain() 26 #pragma omp depend(out:argc) target update to(z) // expected-error{{expected an OpenMP directive}} in tmain() 27 …#pragma omp target depend(in:argc) update to(z) // expected-error{{unexpected OpenMP clause 'updat… in tmain() 30 #pragma omp target update to(z) depend // expected-error {{expected '(' after 'depend'}} in tmain() 31 …#pragma omp target update to(z) depend( // expected-error {{expected 'in', 'out' or 'inout' in Ope… in tmain() 32 …#pragma omp target update to(z) depend() // expected-error {{expected 'in', 'out' or 'inout' in Op… in tmain() 33 …#pragma omp target update to(z) depend(argc // expected-error {{expected 'in', 'out' or 'inout' in… in tmain() 34 …#pragma omp target update to(z) depend(source : argc) // expected-error {{expected 'in', 'out' or … in tmain() 35 …#pragma omp target update to(z) depend(source) // expected-error {{expected expression}} expected-… in tmain() 36 …#pragma omp target update to(z) depend(in : argc)) // expected-warning {{extra tokens at the end o… in tmain() [all …]
|
D | target_update_device_messages.cpp | 15 #pragma omp target update to(i) device // expected-error {{expected '(' after 'device'}} in tmain() 16 #pragma omp target update to(i) device ( // expected-error {{expected expression}} expected-error {… in tmain() 17 #pragma omp target update to(i) device () // expected-error {{expected expression}} in tmain() 18 #pragma omp target update to(i) device (argc // expected-error {{expected ')'}} expected-note {{to … in tmain() 19 #pragma omp target update to(i) device (argc)) // expected-warning {{extra tokens at the end of '#p… in tmain() 20 #pragma omp target update from(i) device (argc > 0 ? argv[1] : argv[2]) // expected-error {{express… in tmain() 21 #pragma omp target update from(i) device (argc + argc) in tmain() 22 #pragma omp target update from(i) device (argc), device (argc+1) // expected-error {{directive '#pr… in tmain() 23 #pragma omp target update from(i) device (S1) // expected-error {{'S1' does not refer to a value}} in tmain() 24 #pragma omp target update from(i) device (3.14) // expected-error 2 {{expression must have integral… in tmain() [all …]
|
D | target_update_nowait_messages.cpp | 6 #pragma omp nowait target update to(i) // expected-error {{expected an OpenMP directive}} in main() 7 …#pragma omp target nowait update to(i) // expected-error {{unexpected OpenMP clause 'update' in di… in main() 9 …update nowait() to(i) // expected-warning {{extra tokens at the end of '#pragma omp target update'… in main() 10 …#pragma omp target update to(i) nowait( // expected-warning {{extra tokens at the end of '#pragma … in main() 11 …#pragma omp target update to(i) nowait (argc)) // expected-warning {{extra tokens at the end of '#… in main() 12 #pragma omp target update to(i) nowait device (-10u) in main() 13 …pragma omp target update to(i) nowait (3.14) device (-10u) // expected-warning {{extra tokens at t… in main() 14 …#pragma omp target update to(i) nowait nowait // expected-error {{directive '#pragma omp target up… in main() 15 …#pragma omp target update nowait to(i) nowait // expected-error {{directive '#pragma omp target up… in main()
|
D | target_update_messages.cpp | 20 …pragma omp target update // expected-error {{expected at least one 'to' clause or 'from' clause sp… 21 …#pragma omp target update to(m) { // expected-warning {{extra tokens at the end of '#pragma omp ta… 22 …#pragma omp target update to(m) ( // expected-warning {{extra tokens at the end of '#pragma omp ta… 23 …#pragma omp target update to(m) [ // expected-warning {{extra tokens at the end of '#pragma omp ta… 24 …#pragma omp target update to(m) ] // expected-warning {{extra tokens at the end of '#pragma omp ta… 25 …#pragma omp target update to(m) ) // expected-warning {{extra tokens at the end of '#pragma omp ta… 27 #pragma omp target update from(m) // OK
|
/external/python/google-api-python-client/docs/dyn/ |
D | replicapoolupdater_v1beta1.rollingUpdates.html | 79 …class="firstline">Cancels an update. The update must be PAUSED before it can be cancelled. This ha… 82 <p class="firstline">Returns information about an update.</p> 85 <p class="firstline">Inserts and starts a new update.</p> 91 <p class="firstline">Lists the current status for each instance within a given update.</p> 100 …"firstline">Pauses the update in state from ROLLING_FORWARD or ROLLING_BACK. Has no effect if invo… 103 <p class="firstline">Continues an update in PAUSED state. Has no effect if invoked when the state o… 106 …firstline">Rolls back the update in state from ROLLING_FORWARD or PAUSED. Has no effect if invoked… 110 …<pre>Cancels an update. The update must be PAUSED before it can be cancelled. This has no effect i… 114 zone: string, The name of the zone in which the update's target resides. (required) 115 rollingUpdate: string, The name of the update. (required) [all …]
|
/external/u-boot/arch/x86/cpu/intel_common/ |
D | microcode.c | 6 * Microcode update for Intel PIII and later CPUs 25 * whether the update is applicable or not. We also use the same structure 41 struct microcode_update *update) in microcode_decode_node() argument 43 update->data = fdt_getprop(blob, node, "data", &update->size); in microcode_decode_node() 44 if (!update->data) in microcode_decode_node() 47 update->header_version = fdtdec_get_int(blob, node, in microcode_decode_node() 49 update->update_revision = fdtdec_get_int(blob, node, in microcode_decode_node() 50 "intel,update-revision", 0); in microcode_decode_node() 51 update->date_code = fdtdec_get_int(blob, node, in microcode_decode_node() 53 update->processor_signature = fdtdec_get_int(blob, node, in microcode_decode_node() [all …]
|
/external/vixl/src/aarch64/ |
D | instrument-aarch64.cc | 157 void Instrument::Update() { in Update() function in vixl::aarch64::Instrument 259 Update(); in VisitPCRelAddressing() 267 Update(); in VisitAddSubImmediate() 275 Update(); in VisitLogicalImmediate() 282 Update(); in VisitMoveWideImmediate() 296 Update(); in VisitBitfield() 304 Update(); in VisitExtract() 312 Update(); in VisitUnconditionalBranch() 320 Update(); in VisitUnconditionalBranchToRegister() 328 Update(); in VisitCompareBranch() [all …]
|
/external/autotest/server/site_tests/firmware_Cr50Update/ |
D | firmware_Cr50Update.py | 15 Verify a dut can update to the given image. 17 Copy the new image onto the device and clear the update state to force 18 cr50-update to run. The test will fail if Cr50 does not update or if the 19 update script encounters any errors. 21 @param image: the location of the update image 52 # Make sure ccd is disabled so it won't interfere with the update 63 # info and add them to the update order 72 logging.info("Update %s", self.update_order) 87 # Update to the dev image 94 Normal updates will use the cr50-update script to update. If a rollback [all …]
|
/external/v8/src/arm64/ |
D | instrument-arm64.cc | 141 void Instrument::Update() { in Update() function in v8::internal::Instrument 233 Update(); in VisitPCRelAddressing() 240 Update(); in VisitAddSubImmediate() 247 Update(); in VisitLogicalImmediate() 254 Update(); in VisitMoveWideImmediate() 267 Update(); in VisitBitfield() 274 Update(); in VisitExtract() 281 Update(); in VisitUnconditionalBranch() 288 Update(); in VisitUnconditionalBranchToRegister() 295 Update(); in VisitCompareBranch() [all …]
|
/external/autotest/server/site_tests/autoupdate_EndToEndTest/ |
D | autoupdate_EndToEndTest.py | 32 """Complete update test between two Chrome OS releases. 37 1. Stages the source (full) and target update payload on the central 40 3. Then starts the target update by calling cros_au RPC on the devserver. 43 6. Starts an update pointing to this localhost devserver. 44 7. Watches as the DUT applies the update to rootfs and stateful. 45 8. Reboots and repeats steps 5-6, ensuring that the next update check 47 9. Returns the hostlogs collected during each update check for 48 verification against expected update events. 51 UpdateEngineTest: base class for comparing expected update events against 53 UpdateEngineEvent: class representing a single expected update engine event. [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | scatter_functor.h | 49 template <typename Params, typename Update> 50 static void Run(Params p, Update u) { 53 template <typename Params, typename Update> 54 static void RunScalar(Params p, Update u) { 60 template <typename Params, typename Update> 61 static void Run(Params p, Update u) { 64 template <typename Params, typename Update> 65 static void RunScalar(Params p, Update u) { 71 template <typename Params, typename Update> 72 static void Run(Params p, Update u) { [all …]
|
/external/autotest/client/cros/update_engine/ |
D | update_engine_util.py | 22 # Update engine status lines. 29 # Update engine statuses. 85 """Checks if the update has started.""" 101 raise error.TestFail('Update status was idle while trying to ' 107 raise error.TestFail('Update status reported error: %s' % 111 raise error.TestFail('Update status was NEEDS_REBOOT while ' 121 """Waits for the update to retry until failure.""" 127 logging.debug('Found log entry for failed update.') 133 raise error.TestFail('Update did not fail as expected. Timeout' 139 Checks if the update has completed. [all …]
|
/external/u-boot/doc/ |
D | README.update | 1 Automatic software update from a TFTP server 10 boot. The update file should be a FIT file, and can contain one or more 11 updates. Each update in the update file has an address in NOR Flash where it 13 TFTP transfer is successful, the hash of each update is verified, and if the 14 verification is positive, the update is stored in Flash. 16 The auto-update feature is enabled by the CONFIG_UPDATE_TFTP macro: 21 Note that when enabling auto-update, Flash support must be turned on. Also, 27 The auto-update feature uses the following configuration knobs: 31 Normally, TFTP transfer of the update file is done to the address specified 48 Since the update file is in FIT format, it is created from an *.its file using [all …]
|
/external/autotest/server/cros/ |
D | autoupdater.py | 31 # Local stateful update path is relative to the CrOS source directory. 34 # A list of update engine client states that occur after an update is triggered. 51 # auto update. 58 # stateful means that on successul update it will be removed. Thus, if 60 # previous attempt to update. 67 # we create this immediately after any update completes. 72 # to update. This file is used by the CrOS shutdown code to detect and 91 """Raised when the RootFS fails to update.""" 95 """Raised when the stateful partition fails to update.""" 99 """Update failure with an attributed cause.""" [all …]
|
/external/vulkan-validation-layers/layers/ |
D | descriptor_sets.cpp | 332 …// Really this is just searching for the binding in which the update begins and adjusting offset … in VerifyUpdateConsistency() 350 …<< " descriptors being updated but this update oversteps the bounds of this binding and the next b… in VerifyUpdateConsistency() 351 "not consistent with current binding so this update is invalid."; in VerifyUpdateConsistency() 703 // that any update buffers are valid, and that any dynamic offsets are within the bounds of their … 771 … << " uses buffer " << buffer << " with update range of VK_WHOLE_SIZE has dynamic offset " in ValidateDrawState() 803 … // Image view must have been destroyed since initial update. Could potentially flag the descriptor in ValidateDrawState() 913 // For given bindings, place any update buffers or images into the passed-in unordered_sets 969 // Perform write update in given update struct 970 void cvdescriptorset::DescriptorSet::PerformWriteUpdate(const VkWriteDescriptorSet *update) { in PerformWriteUpdate() argument 971 // Perform update on a per-binding basis as consecutive updates roll over to next binding in PerformWriteUpdate() [all …]
|
/external/autotest/server/site_tests/autoupdate_ForcedOOBEUpdate/ |
D | autoupdate_ForcedOOBEUpdate.py | 25 # Cancel any update still in progress. 27 logging.debug('Canceling the in-progress update.') 28 self._host.run('restart update-engine') 33 """Wait for the update that started to complete. 35 Repeated check status of update. It should move from DOWNLOADING to 50 raise error.TestFail('OOBE update did not finish in %d ' 60 @param cellular: True to do the update over a cellualar connection. 62 @param interrupt: True to interrupt the update in the middle. 94 # Call client test to start the forced OOBE update. 103 # Choose a random downloaded progress to interrupt the update. [all …]
|
/external/tensorflow/tensorflow/core/lib/core/ |
D | status_test.cc | 60 TEST(Status, Update) { in TEST() argument 62 s.Update(Status::OK()); in TEST() 65 s.Update(a); in TEST() 68 s.Update(b); in TEST() 70 s.Update(Status::OK()); in TEST() 104 c.Update(internal); in TEST() 105 c.Update(Status::OK()); in TEST() 106 c.Update(Status::OK()); in TEST() 107 c.Update(Status::OK()); in TEST() 117 c.Update(internal); in TEST() [all …]
|
/external/autotest/client/site_tests/policy_DeviceAutoUpdateDisabled/ |
D | policy_DeviceAutoUpdateDisabled.py | 25 Try to update and poll for start (or lack of start) to the update. 26 Check whether an update request was sent. 28 @param should_update: True or False whether the device should update. 31 # Log time is only in second accuracy. Assume no update request has 34 logging.info('Update test start time: %s', start_time) 43 raise error.TestFail('Update started when it should not have!') 46 logging.info('Last update time: %s', update_time) 49 raise error.TestFail('No update request was sent!') 51 raise error.TestFail('Update request was sent!') 58 @param case: True, False, or None for the value of the update policy. [all …]
|
/external/elfutils/po/ |
D | ChangeLog | 3 * *.po: Update for 0.176. 7 * *.po: Update for 0.172. 11 * *.po: Update for 0.171. 19 * *.po: Update for 0.170. 23 * *.po: Update for 0.169. 31 * *.po: Update for 0.168. 44 * *.po: Update for 0.167. 53 * *.po: Update for 0.166. 61 * *.po: Update for 0.165. 69 * *.po: Update for 0.164. [all …]
|
/external/snakeyaml/src/changes/ |
D | changes.xml | 10 <action dev="asomov" type="update" issue="332"> 13 <action dev="asomov" type="update"> 16 <action dev="asomov" type="update"> 17 Update plugin versions (2016-02-19) 24 <action dev="asomov" type="update" issue="329"> 27 <action dev="asomov" type="update" issue="326"> 30 <action dev="maslovalex" type="update" issue="310"> 34 <action dev="asomov" type="update" issue="320"> 55 <action dev="asomov" type="update"> 70 <action dev="asomov" type="update"> [all …]
|
/external/autotest/server/cros/update_engine/ |
D | update_engine_test.py | 28 During a rootfs update, there are several events that are fired (e.g. 34 from update_engine from the update. This hostlog is a json list of 35 events fired during the update. It is accessed by the api/hostlog URL on the 36 devserver during the update. 38 We can also verify the hostlog of a one-time update event that is fired 39 after rebooting after an update. 57 # Version we tell the DUT it is on before update. 60 # Expected hostlog events during update: 4 during rootfs 98 """Creates a list of expected events fired during a rootfs update. 100 There are 4 events fired during a rootfs update. We will create these [all …]
|
/external/autotest/client/cros/enterprise/ |
D | enterprise_au_context.py | 17 # device rebooted after an update since last check. 31 @param image_url: Url of update image. 32 @param image_size: Size of the update. 33 @param sha256: Sha256 hash of the update. 58 Check for an update and wait until it starts. 62 @raises: error.TestFail when update does not start after timeout. 69 """Polling function: True or False if update has started.""" 77 exception=error.TestFail('Update did not start!')) 82 Get the contents of all the update requests from the most recent log. 92 Get the time of the last update request from most recent logfile. [all …]
|