Searched refs:update (Results 1 - 25 of 1038) sorted by relevance

1234567891011>>

/external/clang/test/OpenMP/
H A Dtarget_update_if_messages.cpp15 #pragma omp target update to(n) if // expected-error {{expected '(' after 'if'}}
16 #pragma omp target update from(n) if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target update to(n) if () // expected-error {{expected expression}}
18 #pragma omp target update from(n) if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
19 #pragma omp target update to(n) if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
20 #pragma omp target update from(n) if (argc > 0 ? argv[1] : argv[2])
21 #pragma omp target update to(n) if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target update' cannot contain more than one 'if' clause}}
22 #pragma omp target update fro
[all...]
H A Dtarget_update_messages.cpp20 #pragma omp target update // expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
21 #pragma omp target update to(m) { // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
22 #pragma omp target update to(m) ( // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
23 #pragma omp target update to(m) [ // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
24 #pragma omp target update to(m) ] // expected-warning {{extra tokens at the end of '#pragma omp target update' ar
[all...]
H A Dtarget_update_nowait_messages.cpp6 #pragma omp nowait target update to(i) // expected-error {{expected an OpenMP directive}}
7 #pragma omp target nowait update to(i) // expected-error {{unexpected OpenMP clause 'update' in directive '#pragma omp target'}} expected-error {{unexpected OpenMP clause 'to' in directive '#pragma omp target'}}
9 #pragma omp target update nowait() to(i) // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
10 #pragma omp target update to(i) nowait( // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
11 #pragma omp target update to(i) nowait (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target update' ar
[all...]
H A Dtarget_update_depend_messages.cpp25 #pragma omp depend target update to(z) // expected-error{{expected an OpenMP directive}}
26 #pragma omp depend(out:argc) target update to(z) // expected-error{{expected an OpenMP directive}}
27 #pragma omp target depend(in:argc) update to(z) // expected-error{{unexpected OpenMP clause 'update' in directive '#pragma omp target'}} expected-error{{unexpected OpenMP clause 'to' in directive '#pragma omp target'}}
30 #pragma omp target update to(z) depend // expected-error {{expected '(' after 'depend'}}
31 #pragma omp target update to(z) depend( // expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-error {{expected ')'}} expected-note {{to match this '('}} expected-warning {{missing ':' after dependency type - ignoring}}
32 #pragma omp target update to(z) depend() // expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-warning {{missing ':' after dependency type - ignoring}}
33 #pragma omp target update to(z) depend(argc // expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-warning {{missing ':' after dependency type - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
34 #pragma omp target update to(z) depend(source : argc) // expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}}
35 #pragma omp target update t
[all...]
H A Dtarget_update_device_messages.cpp15 #pragma omp target update to(i) device // expected-error {{expected '(' after 'device'}}
16 #pragma omp target update to(i) device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target update to(i) device () // expected-error {{expected expression}}
18 #pragma omp target update to(i) device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
19 #pragma omp target update to(i) device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}}
20 #pragma omp target update from(i) device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
21 #pragma omp target update from(i) device (argc + argc)
22 #pragma omp target update from(i) device (argc), device (argc+1) // expected-error {{directive '#pragma omp target update' canno
[all...]
H A Dtarget_update_from_messages.cpp82 #pragma omp target update from // expected-error {{expected '(' after 'from'}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
83 #pragma omp target update from( // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{expected expression}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
84 #pragma omp target update from() // expected-error {{expected expression}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
85 #pragma omp target update() // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
86 #pragma omp target update fro
[all...]
H A Dtarget_update_to_messages.cpp82 #pragma omp target update to // expected-error {{expected '(' after 'to'}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
83 #pragma omp target update to( // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{expected expression}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
84 #pragma omp target update to() // expected-error {{expected expression}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
85 #pragma omp target update() // expected-warning {{extra tokens at the end of '#pragma omp target update' are ignored}} expected-error {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
86 #pragma omp target update t
[all...]
H A Dtarget_update_codegen.cpp52 #pragma omp target update if(1+3-5) device(arg) from(gc)
57 #pragma omp target update to(la) if(1+3-4)
79 #pragma omp target update to(arg) if(arg) device(4)
102 #pragma omp target update from(lb)
129 #pragma omp target update to(gb.b[:3])
150 #pragma omp target update from(b[1:3]) if(a>123) device(arg)
213 #pragma omp target update to(arg) if(arg) device(4)
241 #pragma omp target update from(arg) if(arg) device(4)
H A Dtarget_update_ast_print.cpp16 #pragma omp target update to(a) if(l>5) device(l) nowait depend(inout:l)
18 #pragma omp target update from(b) if(l<5) device(l-1) nowait depend(inout:l)
24 // CHECK-NEXT: #pragma omp target update to(a) if(l > 5) device(l) nowait depend(inout : l)
25 // CHECK-NEXT: #pragma omp target update from(b) if(l < 5) device(l - 1) nowait depend(inout : l)
29 // CHECK-NEXT: #pragma omp target update to(a) if(l > 5) device(l) nowait depend(inout : l)
30 // CHECK-NEXT: #pragma omp target update from(b) if(l < 5) device(l - 1) nowait depend(inout : l)
34 // CHECK-NEXT: #pragma omp target update to(a) if(l > 5) device(l) nowait depend(inout : l)
35 // CHECK-NEXT: #pragma omp target update from(b) if(l < 5) device(l - 1) nowait depend(inout : l)
45 #pragma omp target update to(a) if(f>0.0) device(n) nowait depend(in:n)
46 // CHECK-NEXT: #pragma omp target update t
[all...]
H A Datomic_update_codegen.cpp88 #pragma omp atomic update
94 #pragma omp atomic update
127 #pragma omp atomic update
146 #pragma omp atomic update
176 #pragma omp atomic update
184 #pragma omp atomic update
205 #pragma omp atomic update
242 #pragma omp atomic update
286 #pragma omp atomic update
315 #pragma omp atomic update
[all...]
/external/e2fsprogs/debian/
H A De2fsprogs.postinst6 if [ -x /usr/sbin/update-initramfs -a \
8 update-initramfs -u
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DDigest.java23 * update the message digest with a single byte.
27 public void update(byte in); method in interface:Digest
30 * update the message digest with a block of bytes.
36 public void update(byte[] in, int inOff, int len); method in interface:Digest
H A DSigner.java17 * update the internal digest with the byte b
19 public void update(byte b); method in interface:Signer
22 * update the internal digest with the byte array in
24 public void update(byte[] in, int off, int len); method in interface:Signer
H A DMac.java39 public void update(byte in) method in interface:Mac
49 public void update(byte[] in, int inOff, int len) method in interface:Mac
/external/libopus/
H A Dversion.mk1 # static version string; update manually every release.
/external/replicaisland/src/com/replica/replicaisland/
H A DMainLoop.java34 public void update(float timeDelta, BaseObject parent) { method in class:MainLoop
35 mTimeSystem.update(timeDelta, parent);
37 super.update(newTimeDelta, parent);
H A DBaseObject.java22 * an ObjectManager, and anything that requires an update per frame should be derived from
34 * @param timeDelta The duration since the last update (in seconds).
37 public void update(float timeDelta, BaseObject parent) { method in class:BaseObject
/external/guava/guava/src/com/google/common/hash/
H A DAbstractByteHasher.java43 protected abstract void update(byte b); method in class:AbstractByteHasher
48 protected void update(byte[] b) { method in class:AbstractByteHasher
49 update(b, 0, b.length);
55 protected void update(byte[] b, int off, int len) { method in class:AbstractByteHasher
57 update(b[i]);
63 update(b);
70 update(bytes);
77 update(bytes, off, len);
84 private Hasher update(int bytes) { method in class:AbstractByteHasher
86 update(scratc
[all...]
/external/libdrm/tests/
H A Dupdatedraw.c35 struct drm_update_draw update; local
37 update.handle = drawable;
38 update.type = DRM_DRAWABLE_CLIPRECTS;
39 update.num = 0;
40 update.data = 0;
42 ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update);
50 struct drm_update_draw update; local
52 update.handle = drawable;
53 update.type = DRM_DRAWABLE_CLIPRECTS;
54 update
65 struct drm_update_draw update; local
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/
H A Drakefile13 spec_extras.update(
/external/bison/build-aux/
H A DMakefile.am20 update-b4-copyright
/external/lzma/Java/Tukaani/src/org/tukaani/xz/check/
H A DCheck.java19 public abstract void update(byte[] buf, int off, int len); method in class:Check
22 public void update(byte[] buf) { method in class:Check
23 update(buf, 0, buf.length);
H A DNone.java18 public void update(byte[] buf, int off, int len) {} method in class:None
H A DCRC32.java20 public void update(byte[] buf, int off, int len) { method in class:CRC32
21 state.update(buf, off, len);
H A DSHA256.java21 public void update(byte[] buf, int off, int len) { method in class:SHA256
22 sha256.update(buf, off, len);

Completed in 2814 milliseconds

1234567891011>>