Home
last modified time | relevance | path

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

12345678910>>...76

/external/libdrm/tests/
Dupdatedraw.c35 struct drm_update_draw update; in set_draw_cliprects_empty() local
37 update.handle = drawable; in set_draw_cliprects_empty()
38 update.type = DRM_DRAWABLE_CLIPRECTS; in set_draw_cliprects_empty()
39 update.num = 0; in set_draw_cliprects_empty()
40 update.data = 0; in set_draw_cliprects_empty()
42 ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update); in set_draw_cliprects_empty()
50 struct drm_update_draw update; in set_draw_cliprects_empty_fail() local
52 update.handle = drawable; in set_draw_cliprects_empty_fail()
53 update.type = DRM_DRAWABLE_CLIPRECTS; in set_draw_cliprects_empty_fail()
54 update.num = 0; in set_draw_cliprects_empty_fail()
[all …]
/external/clang/test/OpenMP/
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 …]
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 …]
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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.update.configurator_3.3.100.v20100512.jar ... org/ org/eclipse/ org/eclipse/update/ org/eclipse/update/configurator/ org ...
/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/jetty/src/java/org/eclipse/jetty/client/security/
DDigestAuthentication.java81 md.update(securityRealm.getPrincipal().getBytes(StringUtil.__ISO_8859_1)); in newResponse()
82 md.update((byte)':'); in newResponse()
83 md.update(String.valueOf(details.get("realm")).getBytes(StringUtil.__ISO_8859_1)); in newResponse()
84 md.update((byte)':'); in newResponse()
85 md.update(securityRealm.getCredentials().getBytes(StringUtil.__ISO_8859_1)); in newResponse()
89 md.update(exchange.getMethod().getBytes(StringUtil.__ISO_8859_1)); in newResponse()
90 md.update((byte)':'); in newResponse()
91 md.update(exchange.getURI().getBytes(StringUtil.__ISO_8859_1)); in newResponse()
94 md.update(TypeUtil.toString(ha1,16).getBytes(StringUtil.__ISO_8859_1)); in newResponse()
95 md.update((byte)':'); in newResponse()
[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/jetty/src/java/org/eclipse/jetty/security/authentication/
DDigestAuthenticator.java361 md.update(username.getBytes(StringUtil.__ISO_8859_1)); in check()
362 md.update((byte) ':'); in check()
363 md.update(realm.getBytes(StringUtil.__ISO_8859_1)); in check()
364 md.update((byte) ':'); in check()
365 md.update(password.getBytes(StringUtil.__ISO_8859_1)); in check()
370 md.update(method.getBytes(StringUtil.__ISO_8859_1)); in check()
371 md.update((byte) ':'); in check()
372 md.update(uri.getBytes(StringUtil.__ISO_8859_1)); in check()
382 md.update(TypeUtil.toString(ha1, 16).getBytes(StringUtil.__ISO_8859_1)); in check()
383 md.update((byte) ':'); in check()
[all …]
/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/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/opencv3/samples/python2/
Dfloodfill.py39 def update(dummy=None): function
58 update()
60 update()
62 cv2.createTrackbar('lo', 'floodfill', 20, 255, update)
63 cv2.createTrackbar('hi', 'floodfill', 20, 255, update)
72 update()
76 update()
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DMessageDigest1Test.java47 md.update((byte) 1); in test_updateLB()
57 md.update(bytes, 1, 2); in test_updateLB$LILI()
63 md.update(null, 0, 1); in test_updateLB$LILI()
69 md.update(bytes, 0, bytes.length + 1); in test_updateLB$LILI()
75 md.update(bytes, Integer.MAX_VALUE, 1); in test_updateLB$LILI()
91 md.update(bytes, offset, len); in test_updateLB$LILI()
101 md.update(b); in test_updateLB$()
114 md.update(byteBuffer); in test_updateLjava_nio_ByteBuffer()
234 md.update(bytes, -1, 1); in testSHAProvider()
239 md.update(bytes, 1, -1); in testSHAProvider()
/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/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
DNullCipherTest.java100 byte[] r = c.update(b); in testUpdatebyteArray()
110 byte[] r = c.update(b, 0, 5); in testUpdatebyteArrayintint()
114 r = c.update(b, 1, 3); in testUpdatebyteArrayintint()
127 c.update(b, 0, 5, r); in testUpdatebyteArrayintintbyteArray()
137 c.update(b, 0, 5, r, 0); in testUpdatebyteArrayintintbyteArrayint()
190 new NullCipher().update(new byte[1], 1, Integer.MAX_VALUE); in testUpdatebyteArrayintint2()
212 new NullCipher().update(new byte[1], 1, Integer.MAX_VALUE, in testDoFinalbyteArrayintintbyteArray2()
225 new NullCipher().update(new byte[1], 0, 1, new byte[0]); in testDoFinalbyteArrayintintbyteArray3()
247 new NullCipher().update(new byte[1], 1, Integer.MAX_VALUE, in testDoFinalbyteArrayintintbyteArrayint2()
260 new NullCipher().update(new byte[1], 0, 1, in testDoFinalbyteArrayintintbyteArrayint3()
/external/autotest/contrib/
Dcrbug_crawler.py104 for issue_id, update in self.history.iteritems():
109 self.update(issue_id, Update(status=update.status))
112 def update(self, old_issue, update): member in UpdateManager
125 if not update.status:
126 update.status = old_update.status
127 elif (update.status not in Update.open_statuses and
128 update.status not in Update.closed_statuses):
129 raise ValueError('Unknown status %s' % update.status)
133 '%s -> %s', old_update, update)
138 issue_id=old_issue.id, comment=update.comment,
[all …]
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
Dtsig.py76 ctx.update(struct.pack('!H', ml))
77 ctx.update(request_mac)
79 ctx.update(id)
80 ctx.update(wire[2:])
82 ctx.update(keyname.to_digestable())
83 ctx.update(struct.pack('!H', dns.rdataclass.ANY))
84 ctx.update(struct.pack('!I', 0))
95 ctx.update(pre_mac)
96 ctx.update(post_mac)
98 ctx.update(time_mac)
[all …]
/external/chromium-trace/catapult/third_party/typ/typ/tests/
Dprinter_test.py31 pr.update('foo')
37 pr.update('hello world')
43 pr.update('hello world')
44 pr.update('goodbye world')
54 pr.update('foo\nbar')
55 pr.update('baz')
/external/chromium-trace/catapult/third_party/coverage/coverage/
Dmisc.py171 def update(self, v): member in Hasher
173 self.md5.update(to_bytes(str(type(v))))
175 self.md5.update(to_bytes(v))
177 self.md5.update(v)
181 self.md5.update(to_bytes(str(v)))
184 self.update(e)
188 self.update(k)
189 self.update(v[k])
197 self.update(k)
198 self.update(a)
/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/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/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/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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/
Dbootstrap.py68 update = boto.config.get('Boto', 'boto_update', 'svn:HEAD')
69 if update.startswith('svn'):
70 if update.find(':') >= 0:
71 method, version = update.split(':')
77 elif update.startswith('git'):
88 if update.find(':') >= 0:
89 method, version = update.split(':')
96 self.run('easy_install %s' % update)

12345678910>>...76