Home
last modified time | relevance | path

Searched refs:update (Results 1 – 25 of 3521) sorted by relevance

12345678910>>...141

/external/clang/test/OpenMP/
Dtarget_update_if_messages.cpp15 #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 …]
Dtarget_update_depend_messages.cpp25 #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 …]
Dtarget_update_to_messages.cpp82 #pragma omp target update to // expected-error {{expected '(' after 'to'}} expected-error {{expecte… in tmain()
83 #pragma omp target update to( // expected-error {{expected ')'}} expected-note {{to match this '('}… in tmain()
84 #pragma omp target update to() // expected-error {{expected expression}} expected-error {{expected … in tmain()
85 #pragma omp target update() // expected-warning {{extra tokens at the end of '#pragma omp target up… in tmain()
86 #pragma omp target update to(alloc) // expected-error {{use of undeclared identifier 'alloc'}} expe… in tmain()
87 #pragma omp target update to(x) in tmain()
88 #pragma omp target update to(t[:I]) in tmain()
89 #pragma omp target update to(T) // expected-error {{'T' does not refer to a value}} expected-error … 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 …]
Dtarget_update_from_messages.cpp82 #pragma omp target update from // expected-error {{expected '(' after 'from'}} expected-error {{exp… in tmain()
83 #pragma omp target update from( // expected-error {{expected ')'}} expected-note {{to match this '(… in tmain()
84 #pragma omp target update from() // expected-error {{expected expression}} expected-error {{expecte… in tmain()
85 #pragma omp target update() // expected-warning {{extra tokens at the end of '#pragma omp target up… in tmain()
86 #pragma omp target update from(alloc) // expected-error {{use of undeclared identifier 'alloc'}} ex… in tmain()
87 #pragma omp target update from(x) in tmain()
88 #pragma omp target update from(t[:I]) in tmain()
89 #pragma omp target update from(T) // expected-error {{'T' does not refer to a value}} expected-erro… 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 …]
Dtarget_update_device_messages.cpp15 #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 …]
Datomic_update_codegen.cpp88 #pragma omp atomic update in main()
94 #pragma omp atomic update in main()
127 #pragma omp atomic update in main()
146 #pragma omp atomic update in main()
176 #pragma omp atomic update in main()
184 #pragma omp atomic update in main()
205 #pragma omp atomic update in main()
242 #pragma omp atomic update in main()
286 #pragma omp atomic update in main()
315 #pragma omp atomic update in main()
[all …]
Dtarget_update_nowait_messages.cpp6 #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 …#pragma omp target update nowait() to(i) // expected-warning {{extra tokens at the end of '#pragma… 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 … 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()
Datomic_messages.cpp156 T update() { in update() function
159 #pragma omp atomic update in update()
164 #pragma omp atomic update update in update()
170 #pragma omp atomic update in update()
174 #pragma omp atomic update in update()
178 #pragma omp atomic update in update()
192 #pragma omp atomic update in update()
196 #pragma omp atomic update in update()
200 #pragma omp atomic update in update()
204 #pragma omp atomic update in update()
[all …]
Dtarget_update_codegen.cpp52 #pragma omp target update if(1+3-5) device(arg) from(gc) in foo()
57 #pragma omp target update to(la) if(1+3-4) in foo()
79 #pragma omp target update to(arg) if(arg) device(4) in foo()
102 #pragma omp target update from(lb) in foo()
129 #pragma omp target update to(gb.b[:3]) in foo()
150 #pragma omp target update from(b[1:3]) if(a>123) device(arg) in foo()
213 #pragma omp target update to(arg) if(arg) device(4) in no_target_devices()
241 #pragma omp target update from(arg) if(arg) device(4) in device_side_scan()
Dtarget_update_messages.cpp20 …#pragma omp target update // expected-error {{expected at least one 'to' clause or 'from' clause s…
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/u-boot/arch/x86/cpu/intel_common/
Dmicrocode.c41 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()
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()
55 update->checksum = fdtdec_get_int(blob, node, "intel,checksum", 0); in microcode_decode_node()
56 update->loader_revision = fdtdec_get_int(blob, node, in microcode_decode_node()
58 update->processor_flags = fdtdec_get_int(blob, node, in microcode_decode_node()
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
DForStmt.java76 private NodeList<Expression> update; field in ForStmt
85 …on> initialization, final Expression compare, final NodeList<Expression> update, final Statement b… in ForStmt() argument
86 this(null, initialization, compare, update, body); in ForStmt()
93 …List<Expression> initialization, Expression compare, NodeList<Expression> update, Statement body) { in ForStmt() argument
97 setUpdate(update); in ForStmt()
131 return update; in getUpdate()
182 public ForStmt setUpdate(final NodeList<Expression> update) { in setUpdate() argument
183 assertNotNull(update); in setUpdate()
184 if (update == this.update) { in setUpdate()
187 notifyPropertyChange(ObservableProperty.UPDATE, this.update, update); in setUpdate()
[all …]
/external/guava/guava/src/com/google/common/hash/
DAbstractByteHasher.java43 protected abstract void update(byte b); in update() method in AbstractByteHasher
48 protected void update(byte[] b) { in update() method in AbstractByteHasher
49 update(b, 0, b.length); in update()
55 protected void update(byte[] b, int off, int len) { in update() method in AbstractByteHasher
57 update(b[i]); in update()
63 update(b); in putByte()
70 update(bytes); in putBytes()
77 update(bytes, off, len); in putBytes()
84 private Hasher update(int bytes) { in update() method in AbstractByteHasher
86 update(scratch.array(), 0, bytes); in update()
[all …]
/external/libdrm/
Dxf86drmSL.c137 static SLEntryPtr SLLocate(void *l, unsigned long key, SLEntryPtr *update) in SLLocate() argument
148 update[i] = entry; in SLLocate()
158 SLEntryPtr update[SL_MAX_LEVEL + 1]; in drmSLInsert() local
164 entry = SLLocate(list, key, update); in drmSLInsert()
172 update[level] = list->head; in drmSLInsert()
179 entry->forward[i] = update[i]->forward[i]; in drmSLInsert()
180 update[i]->forward[i] = entry; in drmSLInsert()
190 SLEntryPtr update[SL_MAX_LEVEL + 1]; in drmSLDelete() local
196 entry = SLLocate(list, key, update); in drmSLDelete()
202 if (update[i]->forward[i] == entry) in drmSLDelete()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
DForStmt.java43 private List<Expression> update; field in ForStmt
51 final List<Expression> update, final Statement body) { in ForStmt() argument
54 setUpdate(update); in ForStmt()
60 final List<Expression> update, final Statement body) { in ForStmt() argument
64 setUpdate(update); in ForStmt()
93 update = ensureNotNull(update); in getUpdate()
94 return update; in getUpdate()
116 public ForStmt setUpdate(final List<Expression> update) { in setUpdate() argument
117 this.update = update; in setUpdate()
118 setAsParentNodeOf(this.update); in setUpdate()
/external/vulkan-validation-layers/layers/
Ddescriptor_sets.cpp970 void cvdescriptorset::DescriptorSet::PerformWriteUpdate(const VkWriteDescriptorSet *update) { in PerformWriteUpdate() argument
972 auto descriptors_remaining = update->descriptorCount; in PerformWriteUpdate()
973 auto binding_being_updated = update->dstBinding; in PerformWriteUpdate()
974 auto offset = update->dstArrayElement; in PerformWriteUpdate()
981 descriptors_[global_idx + di]->WriteUpdate(update, update_index); in PerformWriteUpdate()
988 if (update->descriptorCount) some_update_ = true; in PerformWriteUpdate()
990 if (!(p_layout_->GetDescriptorBindingFlagsFromBinding(update->dstBinding) & in PerformWriteUpdate()
996 …torSet::ValidateCopyUpdate(const debug_report_data *report_data, const VkCopyDescriptorSet *update, in ValidateCopyUpdate() argument
1022 if (!p_layout_->HasBinding(update->dstBinding)) { in ValidateCopyUpdate()
1025 …<< "DescriptorSet " << set_ << " does not have copy update dest binding of " << update->dstBinding; in ValidateCopyUpdate()
[all …]
/external/tensorflow/tensorflow/core/kernels/
Ddense_update_functor.h41 typename TTypes<T>::ConstFlat update);
47 typename TTypes<T>::ConstFlat update) {
48 params.device(d) += update;
55 typename TTypes<T>::ConstFlat update) {
56 params.device(d) -= update;
63 typename TTypes<T>::ConstFlat update) {
64 params.device(d) = update;
72 typename TTypes<T>::ConstFlat update) {
73 params.device(d) += update;
80 typename TTypes<T>::ConstFlat update) {
[all …]
Ddense_update_functor.cc36 typename TTypes<string>::ConstFlat update) { in operator ()()
38 params.data()->resize(update.data()->size()); in operator ()()
39 auto work = [&params, &update](int64 start, int64 end) { in operator ()()
41 update.data()->data() + start, end - start); in operator ()()
43 d.parallelFor(update.data()->size(), in operator ()()
48 auto work = [&params, &update](int64 start, int64 end) { in operator ()()
50 params.data()[i].resize(update.data()[i].size()); in operator ()()
52 update.data()[i].data(), update.data()[i].size()); in operator ()()
56 if (update.size() > 0) { in operator ()()
60 std::max(update.data()[0].size(), sizeof(string)); in operator ()()
/external/u-boot/doc/
DREADME.update1 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/conscrypt/repackaged/openjdk-integ-tests/src/test/java/com/android/org/conscrypt/java/security/
DSignatureTest.java197 sig.update(DATA); in test_Signature()
203 sig.update(DATA); in test_Signature()
207 sig.update(DATA); in test_Signature()
285 sig.update(CONTENT); in test18566_AlgorithmOid_MissingNull_Failure()
1578 sig.update(Vector1Data); in testVerify_SHA1withRSA_Key_Success()
1592 sig.update(Vector2Data); in testVerify_SHA256withRSA_Key_Success()
1606 sig.update(Vector2Data); in testVerify_SHA384withRSA_Key_Success()
1620 sig.update(Vector2Data); in testVerify_SHA512withRSA_Key_Success()
1634 sig.update(Vector2Data); in testVerify_MD5withRSA_Key_Success()
1650 sig.update(Vector2Data); in testVerify_SHA1withRSAPSS_Key_Success()
[all …]
/external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/java/security/
DSignatureTest.java193 sig.update(DATA); in test_Signature()
199 sig.update(DATA); in test_Signature()
203 sig.update(DATA); in test_Signature()
281 sig.update(CONTENT); in test18566_AlgorithmOid_MissingNull_Failure()
1574 sig.update(Vector1Data); in testVerify_SHA1withRSA_Key_Success()
1588 sig.update(Vector2Data); in testVerify_SHA256withRSA_Key_Success()
1602 sig.update(Vector2Data); in testVerify_SHA384withRSA_Key_Success()
1616 sig.update(Vector2Data); in testVerify_SHA512withRSA_Key_Success()
1630 sig.update(Vector2Data); in testVerify_MD5withRSA_Key_Success()
1646 sig.update(Vector2Data); in testVerify_SHA1withRSAPSS_Key_Success()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
DForStmt.java39 private List<Expression> update; field in ForStmt
47 final List<Expression> update, final Statement body) { in ForStmt() argument
50 setUpdate(update); in ForStmt()
57 final List<Expression> update, final Statement body) { in ForStmt() argument
61 setUpdate(update); in ForStmt()
88 return update; in getUpdate()
106 public void setUpdate(final List<Expression> update) { in setUpdate() argument
107 this.update = update; in setUpdate()
108 setAsParentNodeOf(this.update); in setUpdate()
/external/v8/tools/clang/scripts/
Ddownload_objdump.py14 import update
16 LLVM_BUILD_DIR = update.LLVM_BUILD_DIR
25 stamp = update.ReadStampFile(STAMP_FILE)
26 return stamp.rstrip() == update.PACKAGE_VERSION
30 cds_file = 'llvmobjdump-%s.tgz' % update.PACKAGE_VERSION
31 cds_full_url = update.GetPlatformUrlPrefix(platform) + cds_file
33 update.DownloadAndUnpack(cds_full_url, update.LLVM_BUILD_DIR)
Ddownload_lld_mac.py13 import update
15 LLVM_BUILD_DIR = update.LLVM_BUILD_DIR
24 update.CLANG_REVISION)
30 remote_path = '%s/Mac/lld-%s.tgz' % (update.CDS_URL, update.PACKAGE_VERSION)
31 update.DownloadAndUnpack(remote_path, update.LLVM_BUILD_DIR)
/external/libese/tools/ese_ls_provision/
Dese_ls_provision.cpp105 static bool send_ls_update(const ls_update_t &update) { in send_ls_update() argument
115 const_cast<char *>(update.source.c_str()), in send_ls_update()
116 const_cast<char *>(update.dest.c_str()), in send_ls_update()
117 const_cast<UINT8 *>(reinterpret_cast<const UINT8*>(update.shadata.data())), in send_ls_update()
118 update.shadata.size(), in send_ls_update()
129 static bool parse_args(char* argv[], ls_update_t *update) { in parse_args() argument
135 if (!readFileToString(*argp, &update->shadata)) { in parse_args()
143 update->source = *argp; in parse_args()
149 update->dest = *argp; in parse_args()
159 ls_update_t update; in ls_update_cli() local
[all …]

12345678910>>...141