Home
last modified time | relevance | path

Searched refs:todo (Results 1 – 25 of 133) sorted by relevance

123456

/external/boringssl/src/tool/
Drand.cc68 size_t todo = sizeof(buf); in Rand() local
69 if (!forever && todo > len - done) { in Rand()
70 todo = len - done; in Rand()
72 RAND_bytes(buf, todo); in Rand()
75 for (unsigned i = 0; i < todo; i++) { in Rand()
79 if (fwrite(hex_buf, todo*2, 1, stdout) != 1) { in Rand()
83 if (fwrite(buf, todo, 1, stdout) != 1) { in Rand()
87 done += todo; in Rand()
/external/eigen/unsupported/Eigen/src/BVH/
DBVAlgorithms.h28 std::vector<Index> todo(1, root); in intersect_helper()
30 while(!todo.empty()) { in intersect_helper()
31 tree.getChildren(todo.back(), vBegin, vEnd, oBegin, oEnd); in intersect_helper()
32 todo.pop_back(); in intersect_helper()
36 todo.push_back(*vBegin); in intersect_helper()
109 …std::vector<std::pair<Index1, Index2> > todo(1, std::make_pair(tree1.getRootIndex(), tree2.getRoot… in BVIntersect()
111 while(!todo.empty()) { in BVIntersect()
112 tree1.getChildren(todo.back().first, vBegin1, vEnd1, oBegin1, oEnd1); in BVIntersect()
113 tree2.getChildren(todo.back().second, vBegin2, vEnd2, oBegin2, oEnd2); in BVIntersect()
114 todo.pop_back(); in BVIntersect()
[all …]
/external/boringssl/src/crypto/bn/
Drandom.c255 size_t done, todo, attempt; in BN_generate_dsa_nonce() local
279 todo = sizeof(priv->d[0]) * priv->top; in BN_generate_dsa_nonce()
280 if (todo > sizeof(private_bytes)) { in BN_generate_dsa_nonce()
287 memcpy(private_bytes, priv->d, todo); in BN_generate_dsa_nonce()
288 memset(private_bytes + todo, 0, sizeof(private_bytes) - todo); in BN_generate_dsa_nonce()
303 todo = num_k_bytes - done; in BN_generate_dsa_nonce()
304 if (todo > SHA512_DIGEST_LENGTH) { in BN_generate_dsa_nonce()
305 todo = SHA512_DIGEST_LENGTH; in BN_generate_dsa_nonce()
307 memcpy(k_bytes + done, digest, todo); in BN_generate_dsa_nonce()
308 done += todo; in BN_generate_dsa_nonce()
/external/boringssl/src/crypto/rand/
Durandom.c145 size_t todo; in CRYPTO_sysrand() local
218 todo = rand_bytes_per_buf - buf->used; in CRYPTO_sysrand()
219 if (todo > requested) { in CRYPTO_sysrand()
220 todo = requested; in CRYPTO_sysrand()
222 memcpy(out, &buf->rand[buf->used], todo); in CRYPTO_sysrand()
223 requested -= todo; in CRYPTO_sysrand()
224 out += todo; in CRYPTO_sysrand()
225 buf->used += todo; in CRYPTO_sysrand()
Drand.c119 size_t todo = remaining; in RAND_bytes() local
120 if (todo > kMaxBytesPerCall) { in RAND_bytes()
121 todo = kMaxBytesPerCall; in RAND_bytes()
123 CRYPTO_chacha_20(buf, buf, todo, state->key, in RAND_bytes()
125 buf += todo; in RAND_bytes()
126 remaining -= todo; in RAND_bytes()
/external/boringssl/src/crypto/hkdf/
Dhkdf.c61 size_t todo; in HKDF() local
73 todo = digest_len; in HKDF()
74 if (done + todo > out_len) { in HKDF()
75 todo = out_len - done; in HKDF()
77 memcpy(out_key + done, previous, todo); in HKDF()
78 done += todo; in HKDF()
/external/elfutils/src/tests/
Darextract.c39 size_t todo; in main() local
106 todo = arhdr->ar_size; in main()
107 while (todo > 0) in main()
110 ssize_t n = pread (fd, buf, MIN (sizeof buf, todo), offset); in main()
121 todo -= n; in main()
125 if (todo != 0) in main()
/external/boringssl/src/crypto/chacha/
Dchacha_generic.c92 size_t todo, i; in CRYPTO_chacha_20() local
122 todo = sizeof(buf); in CRYPTO_chacha_20()
123 if (in_len < todo) { in CRYPTO_chacha_20()
124 todo = in_len; in CRYPTO_chacha_20()
128 for (i = 0; i < todo; i++) { in CRYPTO_chacha_20()
132 out += todo; in CRYPTO_chacha_20()
133 in += todo; in CRYPTO_chacha_20()
134 in_len -= todo; in CRYPTO_chacha_20()
/external/toybox/lib/
Dxwrap.c343 struct string_list *todo, *done = 0; in xabspath() local
351 splitpath(path, splitpath(temp, &todo)); in xabspath()
353 } else splitpath(path, &todo); in xabspath()
356 while (todo) { in xabspath()
357 struct string_list *new = llist_pop(&todo), **tail; in xabspath()
386 if ((exact || todo) && errno != EINVAL) goto error; in xabspath()
389 if (errno == EINVAL && !todo) break; in xabspath()
393 if (fd == -1 && (exact || todo || errno != ENOENT)) goto error; in xabspath()
414 *tail = todo; in xabspath()
415 todo = new; in xabspath()
[all …]
/external/boringssl/src/crypto/cmac/
Dcmac.c174 size_t todo = AES_BLOCK_SIZE - ctx->block_used; in CMAC_Update() local
175 if (in_len < todo) { in CMAC_Update()
176 todo = in_len; in CMAC_Update()
179 memcpy(ctx->block + ctx->block_used, in, todo); in CMAC_Update()
180 in += todo; in CMAC_Update()
181 in_len -= todo; in CMAC_Update()
182 ctx->block_used += todo; in CMAC_Update()
Dcmac_test.cc63 size_t todo = std::min(msg_len - done, static_cast<size_t>(chunk_size)); in test() local
64 if (!CMAC_Update(ctx.get(), msg + done, todo)) { in test()
69 done += todo; in test()
/external/toybox/scripts/
Dmkstatus.py95 todo = [] variable
99 elif "pending" in reverse[j]: todo.append('<strike>%s</strike>' % j)
100 else: todo.append(categorize(reverse,j,i))
102 if todo:
109 outfile.write(" ".join(todo))
/external/v8/benchmarks/
Ddeltablue.js651 var todo = sources;
652 while (todo.size() > 0) {
653 var c = todo.removeFirst();
657 this.addConstraintsConsumingTo(c.output(), todo);
692 var todo = new OrderedCollection();
693 todo.add(c);
694 while (todo.size() > 0) {
695 var d = todo.removeFirst();
701 this.addConstraintsConsumingTo(d.output(), todo);
717 var todo = new OrderedCollection();
[all …]
/external/boringssl/src/crypto/poly1305/
Dpoly1305.c227 unsigned int todo = 16 - state->buf_used; in CRYPTO_poly1305_update() local
228 if (todo > in_len) { in CRYPTO_poly1305_update()
229 todo = in_len; in CRYPTO_poly1305_update()
231 for (i = 0; i < todo; i++) { in CRYPTO_poly1305_update()
234 state->buf_used += todo; in CRYPTO_poly1305_update()
235 in_len -= todo; in CRYPTO_poly1305_update()
236 in += todo; in CRYPTO_poly1305_update()
245 size_t todo = in_len & ~0xf; in CRYPTO_poly1305_update() local
246 poly1305_update(state, in, todo); in CRYPTO_poly1305_update()
247 in += todo; in CRYPTO_poly1305_update()
Dpoly1305_arm.c217 unsigned int todo = 32 - st->buf_used; in CRYPTO_poly1305_update_neon() local
218 if (todo > in_len) { in CRYPTO_poly1305_update_neon()
219 todo = in_len; in CRYPTO_poly1305_update_neon()
221 for (i = 0; i < todo; i++) { in CRYPTO_poly1305_update_neon()
224 st->buf_used += todo; in CRYPTO_poly1305_update_neon()
225 in_len -= todo; in CRYPTO_poly1305_update_neon()
226 in += todo; in CRYPTO_poly1305_update_neon()
/external/gptfdisk/
Dgptpart.cc199 int todo ; local
202 todo = 0 ;
210 todo = 1 ;
214 todo = 2 ;
218 todo = 3 ;
220 while ( todo > 0 ) {
232 todo -- ;
/external/boringssl/src/ssl/test/runner/
Dprf.go37 todo := len(b)
38 if j+todo > len(result) {
39 todo = len(result) - j
41 copy(result[j:j+todo], b)
42 j += todo
/external/mksh/src/
Dcheck.pl400 local(@todo) = ();
407 push(@todo, $file) if $file =~ /^[^.].*\.t$/;
411 foreach $file (@todo) {
720 local(@todo) = ();
728 push(@todo, $file) if $file ne '.' && $file ne '..';
731 foreach $file (@todo) {
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt057autoAST44.g4 /* @todo */
/external/deqp/framework/delibs/cmake/
Dtoolchain-android-r5.cmake23 # \todo [pyry] Detect host type
44 # crtbegin_so.o & crtend_so.o \todo [pyry] Is there some special CMake variable for these?
/external/llvm/lib/CodeGen/
DMachineVerifier.cpp1186 SmallPtrSet<const MachineBasicBlock*, 8> todo; in calcRegsPassed() local
1195 todo.insert(*SuI); in calcRegsPassed()
1201 while (!todo.empty()) { in calcRegsPassed()
1202 const MachineBasicBlock *MBB = *todo.begin(); in calcRegsPassed()
1203 todo.erase(MBB); in calcRegsPassed()
1211 todo.insert(*SuI); in calcRegsPassed()
1221 SmallPtrSet<const MachineBasicBlock*, 8> todo; in calcRegsRequired() local
1228 todo.insert(*PrI); in calcRegsRequired()
1234 while (!todo.empty()) { in calcRegsRequired()
1235 const MachineBasicBlock *MBB = *todo.begin(); in calcRegsRequired()
[all …]
/external/icu/icu4j/main/classes/core/.settings/
Dorg.eclipse.jdt.ui.prefs9todo} Auto-generated catch block\n${exception_var}.printStackTrace();</template><template autoinse…
/external/antlr/antlr-3.4/runtime/Python/unittests/
Dtestbase.py23 replacement.todo = reason
/external/selinux/policycoreutils/mcstrans/
DChangeLog5 * Moved todo comments to TODO file
/external/mesa3d/src/mesa/drivers/dri/common/xmlpool/
Des.po72 msgstr "Método inicial de reducción de color"
84 msgstr "Método de redondeo de colores"
96 msgstr "Método de suavizado de color"
140 msgstr "Método para limitar la latencia de rénder"

123456