/external/eigen/unsupported/Eigen/src/BVH/ |
D | BVAlgorithms.h | 28 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/tool/ |
D | rand.cc | 68 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/boringssl/src/crypto/bn/ |
D | random.c | 255 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()
|
D | convert.c | 256 int todo = BN_BYTES * 2; in decode_hex() local 257 if (todo > in_len) { in decode_hex() 258 todo = in_len; in decode_hex() 263 for (j = todo; j > 0; j--) { in decode_hex() 282 in_len -= todo; in decode_hex()
|
/external/toybox/scripts/ |
D | mkstatus.py | 83 todo=[] variable 93 else: todo.append(out) 107 …><h2><a href=#todo>Not started yet</a></h2><blockquote><p>%s</p></blockquote>\n" % "\n".join(todo)) 114 todo = [] variable 118 if j in pending: todo.append('<strike>%s</strike>' % j) 119 else: todo.append(categorize(reverse,j,i)) 121 if todo: 128 outfile.write(" ".join(todo))
|
/external/boringssl/src/crypto/hkdf/ |
D | hkdf.c | 61 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/tests/ |
D | arextract.c | 39 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/ |
D | chacha_generic.c | 92 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/ |
D | xwrap.c | 399 struct string_list *todo, *done = 0; in xabspath() local 407 splitpath(path, splitpath(temp, &todo)); in xabspath() 409 } else splitpath(path, &todo); in xabspath() 412 while (todo) { in xabspath() 413 struct string_list *new = llist_pop(&todo), **tail; in xabspath() 442 if ((exact || todo) && errno != EINVAL) goto error; in xabspath() 445 if (errno == EINVAL && !todo) break; in xabspath() 449 if (fd == -1 && (exact || todo || errno != ENOENT)) goto error; in xabspath() 470 *tail = todo; in xabspath() 471 todo = new; in xabspath() [all …]
|
/external/boringssl/src/crypto/cmac/ |
D | cmac.c | 174 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()
|
D | cmac_test.cc | 60 size_t todo = std::min(msg_len - done, static_cast<size_t>(chunk_size)); in test() local 61 if (!CMAC_Update(ctx.get(), msg + done, todo)) { in test() 66 done += todo; in test()
|
/external/boringssl/src/crypto/rand/ |
D | rand.c | 158 size_t todo = remaining; in RAND_bytes() local 159 if (todo > kMaxBytesPerCall) { in RAND_bytes() 160 todo = kMaxBytesPerCall; in RAND_bytes() 165 CRYPTO_chacha_20(buf, buf, todo, state->key, nonce, 0); in RAND_bytes() 166 buf += todo; in RAND_bytes() 167 remaining -= todo; in RAND_bytes()
|
/external/v8/benchmarks/ |
D | deltablue.js | 651 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/ |
D | poly1305.c | 227 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()
|
D | poly1305_arm.c | 217 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/opencv3/3rdparty/jinja2/ |
D | nodes.py | 200 todo = deque([self]) 201 while todo: 202 node = todo.popleft() 205 todo.extend(node.iter_child_nodes()) 210 todo = deque([self]) 211 while todo: 212 node = todo.popleft() 216 todo.extend(node.iter_child_nodes()) 221 todo = deque([self]) 222 while todo: [all …]
|
/external/gptfdisk/ |
D | gptpart.cc | 199 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/ |
D | d1_both.c | 355 size_t todo = dtls1_max_record_size(ssl); in dtls1_do_handshake_write() local 356 if (todo < DTLS1_HM_HEADER_LENGTH + 1) { in dtls1_do_handshake_write() 362 todo -= DTLS1_HM_HEADER_LENGTH; in dtls1_do_handshake_write() 364 if (todo > (size_t)ssl->init_num) { in dtls1_do_handshake_write() 365 todo = ssl->init_num; in dtls1_do_handshake_write() 367 if (todo >= (1u << 24)) { in dtls1_do_handshake_write() 368 todo = (1u << 24) - 1; in dtls1_do_handshake_write() 377 !CBB_add_u24(&cbb, todo) || in dtls1_do_handshake_write() 379 &cbb, (const uint8_t *)ssl->init_buf->data + ssl->init_off, todo) || in dtls1_do_handshake_write() 391 ssl->init_off += todo; in dtls1_do_handshake_write() [all …]
|
/external/boringssl/src/ssl/test/runner/ |
D | prf.go | 37 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/ |
D | check.pl | 403 local(@todo) = (); 410 push(@todo, $file) if $file =~ /^[^.].*\.t$/; 414 foreach $file (@todo) { 723 local(@todo) = (); 731 push(@todo, $file) if $file ne '.' && $file ne '..'; 734 foreach $file (@todo) {
|
/external/libchrome/crypto/third_party/nss/ |
D | sha512.cc | 410 unsigned int todo = SHA256_BLOCK_LENGTH - inBuf; in SHA256_Update() local 411 if (inputLen < todo) in SHA256_Update() 412 todo = inputLen; in SHA256_Update() 413 memcpy(B + inBuf, input, todo); in SHA256_Update() 414 input += todo; in SHA256_Update() 415 inputLen -= todo; in SHA256_Update() 416 if (inBuf + todo == SHA256_BLOCK_LENGTH) in SHA256_Update() 1063 unsigned int todo = SHA512_BLOCK_LENGTH - inBuf; 1064 if (inputLen < todo) 1065 todo = inputLen; [all …]
|
/external/deqp/framework/delibs/cmake/ |
D | toolchain-android-r5.cmake | 23 # \todo [pyry] Detect host type 44 # crtbegin_so.o & crtend_so.o \todo [pyry] Is there some special CMake variable for these?
|
/external/icu/icu4j/demos/.settings/ |
D | org.eclipse.jdt.ui.prefs | 6 …todo} Auto-generated catch block\r\n${exception_var}.printStackTrace();</template><template autoin…
|
/external/icu/icu4j/main/classes/core/.settings/ |
D | org.eclipse.jdt.ui.prefs | 9 …todo} Auto-generated catch block\n${exception_var}.printStackTrace();</template><template autoinse…
|
/external/icu/icu4j/main/tests/core/.settings/ |
D | org.eclipse.jdt.ui.prefs | 9 …todo} Auto-generated catch block\n${exception_var}.printStackTrace();</template><template autoinse…
|