Home
last modified time | relevance | path

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

12345678910>>...80

/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_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_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_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_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
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()
Datomic_messages.c109 #pragma omp atomic update in updateint()
121 #pragma omp atomic update in updateint()
125 #pragma omp atomic update in updateint()
129 #pragma omp atomic update in updateint()
141 #pragma omp atomic update in updateint()
143 #pragma omp atomic update in updateint()
147 #pragma omp atomic update in updateint()
151 #pragma omp atomic update in updateint()
155 #pragma omp atomic update in updateint()
159 #pragma omp atomic update in updateint()
[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/vulkan-validation-layers/layers/
Ddescriptor_sets.cpp537 void cvdescriptorset::DescriptorSet::PerformWriteUpdate(const VkWriteDescriptorSet *update) { in PerformWriteUpdate() argument
538 …auto start_idx = p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding) + update->dstArrayE… in PerformWriteUpdate()
540 for (uint32_t di = 0; di < update->descriptorCount; ++di) { in PerformWriteUpdate()
541 descriptors_[start_idx + di]->WriteUpdate(update, di); in PerformWriteUpdate()
543 if (update->descriptorCount) in PerformWriteUpdate()
549 …torSet::ValidateCopyUpdate(const debug_report_data *report_data, const VkCopyDescriptorSet *update, in ValidateCopyUpdate() argument
562 if (!p_layout_->HasBinding(update->dstBinding)) { in ValidateCopyUpdate()
565 …criptorSet " << set_ << " does not have copy update dest binding of " << update->dstBinding << "."; in ValidateCopyUpdate()
569 if (!src_set->HasBinding(update->srcBinding)) { in ValidateCopyUpdate()
572 …scriptorSet " << set_ << " does not have copy update src binding of " << update->srcBinding << "."; in ValidateCopyUpdate()
[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/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 …]
/external/tcpdump/tests/
Dbabel1.out3 …:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (110) update/prefix/id nh update update/prefix/id update
10 …::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (52) update/prefix/id update/prefix update/pr…
17 IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (28) update/prefix/id
22 IP6 fe80::68d3:1235:d068:1f9e.6697 > ff02::1:6.6697: babel 2 (28) update/prefix/id
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
DHMac.java125 digest.update(key, 0, keyLength); in init()
149 ((Digest)opadState).update(outputBuf, 0, blockLength); in init()
152 digest.update(inputPad, 0, inputPad.length); in init()
165 public void update( in update() method in HMac
168 digest.update(in); in update()
171 public void update( in update() method in HMac
176 digest.update(in, inOff, len); in update()
188 digest.update(outputBuf, blockLength, digest.getDigestSize()); in doFinal()
192 digest.update(outputBuf, 0, outputBuf.length); in doFinal()
208 digest.update(inputPad, 0, inputPad.length); in doFinal()
[all …]
/external/testng/
DNOTES30 The program arguments are (replace the update site directory appropriately):
33update-site -site file:/usr/local/cbeust/java/testng-eclipse-update-site/site.xml -metadataReposi…
36update-site -site file:/Users/cbeust/java/testng-eclipse-update-site/site.xml -metadataRepository…
38 This will generate the site in ~/java/testng-eclipse-update-site
/external/r8/src/main/java/com/android/tools/r8/utils/
DInternalOptions.java194 private boolean update(boolean previous, String text, String[] patterns) { in update() method in InternalOptions.AttributeRemovalOptions
232 innerClasses = update(innerClasses, INNER_CLASSES, patterns); in applyPattern()
233 enclosingMethod = update(enclosingMethod, ENCLOSING_METHOD, patterns); in applyPattern()
234 signature = update(signature, SIGNATURE, patterns); in applyPattern()
235 exceptions = update(exceptions, EXCEPTIONS, patterns); in applyPattern()
236 sourceDebugExtension = update(sourceDebugExtension, SOURCE_DEBUG_EXTENSION, patterns); in applyPattern()
237 runtimeVisibleAnnotations = update(runtimeVisibleAnnotations, RUNTIME_VISIBLE_ANNOTATIONS, in applyPattern()
239 runtimeInvisibleAnnotations = update(runtimeInvisibleAnnotations, in applyPattern()
241 runtimeVisibleParameterAnnotations = update(runtimeVisibleParameterAnnotations, in applyPattern()
243 runtimeInvisibleParamterAnnotations = update(runtimeInvisibleParamterAnnotations, in applyPattern()
[all …]
/external/e2fsprogs/po/
DRules-quot5 .SUFFIXES: .insert-header .po-update-en
8 $(MAKE) en@quot.po-update
10 $(MAKE) en@boldquot.po-update
12 en@quot.po-update: en@quot.po-update-en
13 en@boldquot.po-update: en@boldquot.po-update-en
15 .insert-header.po-update-en:
16 @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \
/external/libexif/po/
DRules-quot5 .SUFFIXES: .insert-header .po-update-en
8 $(MAKE) en@quot.po-update
10 $(MAKE) en@boldquot.po-update
12 en@quot.po-update: en@quot.po-update-en
13 en@boldquot.po-update: en@boldquot.po-update-en
15 .insert-header.po-update-en:
16 @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \
/external/elfutils/po/
DRules-quot5 .SUFFIXES: .insert-header .po-update-en
8 $(MAKE) en@quot.po-update
10 $(MAKE) en@boldquot.po-update
12 en@quot.po-update: en@quot.po-update-en
13 en@boldquot.po-update: en@boldquot.po-update-en
15 .insert-header.po-update-en:
16 @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \
/external/bison/runtime-po/
DRules-quot5 .SUFFIXES: .insert-header .po-update-en
8 $(MAKE) en@quot.po-update
10 $(MAKE) en@boldquot.po-update
12 en@quot.po-update: en@quot.po-update-en
13 en@boldquot.po-update: en@boldquot.po-update-en
15 .insert-header.po-update-en:
16 @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \
/external/bison/po/
DRules-quot5 .SUFFIXES: .insert-header .po-update-en
8 $(MAKE) en@quot.po-update
10 $(MAKE) en@boldquot.po-update
12 en@quot.po-update: en@quot.po-update-en
13 en@boldquot.po-update: en@boldquot.po-update-en
15 .insert-header.po-update-en:
16 @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \
/external/curl/packages/vms/
Dmake_pcsi_curl_kit_name.com143 $ update = f$element(0, "-", raw_update)
144 $ if update .eqs. "0" then update = ""
164 $ if update .nes. "" .or. patch .nes. ""
166 $! The presence of a patch implies an update
167 $ if update .eqs. "" .and. patch .nes. "" then update = "0"
168 $ version = version + "-" + update + patch

12345678910>>...80