/external/grpc-grpc/tools/buildgen/plugins/ |
D | expand_filegroups.py | 68 todo = list(filegroups_list) 71 while todo: 73 todo), "infinite loop in filegroup uses clauses: %r" % [ 74 t['name'] for t in todo 77 cur = todo[0] 78 todo = todo[1:] 86 todo.append(cur) 113 todo = thing_deps(thing) 114 while todo: 115 cur = todo[0] [all …]
|
/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 | 69 size_t todo = sizeof(buf); in Rand() local 70 if (!forever && todo > len - done) { in Rand() 71 todo = len - done; in Rand() 73 RAND_bytes(buf, todo); in Rand() 76 for (unsigned i = 0; i < todo; i++) { in Rand() 80 if (fwrite(hex_buf, todo*2, 1, stdout) != 1) { in Rand() 84 if (fwrite(buf, todo, 1, stdout) != 1) { in Rand() 88 done += todo; in Rand()
|
/external/boringssl/src/crypto/fipsmodule/modes/ |
D | polyval.c | 70 size_t todo = in_len; in CRYPTO_POLYVAL_update_blocks() local 71 if (todo > sizeof(reversed)) { in CRYPTO_POLYVAL_update_blocks() 72 todo = sizeof(reversed); in CRYPTO_POLYVAL_update_blocks() 74 OPENSSL_memcpy(reversed, in, todo); in CRYPTO_POLYVAL_update_blocks() 75 in += todo; in CRYPTO_POLYVAL_update_blocks() 76 in_len -= todo; in CRYPTO_POLYVAL_update_blocks() 78 size_t blocks = todo / sizeof(polyval_block); in CRYPTO_POLYVAL_update_blocks() 83 ctx->ghash(ctx->S.u, ctx->Htable, (const uint8_t *) reversed, todo); in CRYPTO_POLYVAL_update_blocks()
|
/external/boringssl/src/crypto/evp/ |
D | pbkdf.c | 80 size_t todo = md_len; in PKCS5_PBKDF2_HMAC() local 81 if (todo > key_len) { in PKCS5_PBKDF2_HMAC() 82 todo = key_len; in PKCS5_PBKDF2_HMAC() 100 OPENSSL_memcpy(out_key, digest_tmp, todo); in PKCS5_PBKDF2_HMAC() 108 for (size_t k = 0; k < todo; k++) { in PKCS5_PBKDF2_HMAC() 113 key_len -= todo; in PKCS5_PBKDF2_HMAC() 114 out_key += todo; in PKCS5_PBKDF2_HMAC()
|
/external/boringssl/src/crypto/fipsmodule/rand/ |
D | ctrdrbg.c | 158 size_t todo = kChunkSize; in CTR_DRBG_generate() local 159 if (todo > out_len) { in CTR_DRBG_generate() 160 todo = out_len; in CTR_DRBG_generate() 163 todo &= ~(AES_BLOCK_SIZE-1); in CTR_DRBG_generate() 164 const size_t num_blocks = todo / AES_BLOCK_SIZE; in CTR_DRBG_generate() 167 OPENSSL_memset(out, 0, todo); in CTR_DRBG_generate() 172 for (size_t i = 0; i < todo; i += AES_BLOCK_SIZE) { in CTR_DRBG_generate() 178 out += todo; in CTR_DRBG_generate() 179 out_len -= todo; in CTR_DRBG_generate()
|
D | rand.c | 316 size_t todo = out_len; in RAND_bytes_with_additional_data() local 317 if (todo > CTR_DRBG_MAX_GENERATE_LENGTH) { in RAND_bytes_with_additional_data() 318 todo = CTR_DRBG_MAX_GENERATE_LENGTH; in RAND_bytes_with_additional_data() 321 if (!CTR_DRBG_generate(&state->drbg, out, todo, additional_data, in RAND_bytes_with_additional_data() 326 out += todo; in RAND_bytes_with_additional_data() 327 out_len -= todo; in RAND_bytes_with_additional_data()
|
/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/python/cpython2/Demo/threads/ |
D | find.py | 46 self.todo = thread.allocate() 47 self.todo.acquire() 57 self.todo.release() 60 self.todo.acquire() 64 self.todo.release() 71 self.todo.release() 78 self.todo.release() 97 self.todo.acquire()
|
/external/boringssl/src/decrepit/cfb/ |
D | cfb_test.cc | 64 size_t todo = stride; in TEST() local 65 if (todo > input_len - done) { in TEST() 66 todo = input_len - done; in TEST() 71 test.plaintext + done, todo)); in TEST() 72 ASSERT_EQ(static_cast<size_t>(out_bytes), todo); in TEST() 74 done += todo; in TEST()
|
/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.c | 143 size_t todo, i; in CRYPTO_chacha_20() local 166 todo = sizeof(buf); in CRYPTO_chacha_20() 167 if (in_len < todo) { in CRYPTO_chacha_20() 168 todo = in_len; in CRYPTO_chacha_20() 172 for (i = 0; i < todo; i++) { in CRYPTO_chacha_20() 176 out += todo; in CRYPTO_chacha_20() 177 in += todo; in CRYPTO_chacha_20() 178 in_len -= todo; in CRYPTO_chacha_20()
|
/external/boringssl/src/crypto/hkdf/ |
D | hkdf.c | 84 size_t todo; in HKDF_expand() local 96 todo = digest_len; in HKDF_expand() 97 if (done + todo > out_len) { in HKDF_expand() 98 todo = out_len - done; in HKDF_expand() 100 OPENSSL_memcpy(out_key + done, previous, todo); in HKDF_expand() 101 done += todo; in HKDF_expand()
|
/external/u-boot/arch/arm/mach-exynos/ |
D | spl_boot.c | 64 static void spi_rx_tx(struct exynos_spi *regs, int todo, in spi_rx_tx() argument 71 out_bytes = todo; in spi_rx_tx() 72 in_bytes = todo; in spi_rx_tx() 75 writel(((todo * 8) / 32) | SPI_PACKET_CNT_EN, ®s->pkt_cnt); in spi_rx_tx() 108 int upto, todo; in exynos_spi_copy() local 152 for (upto = 0, i = 0; upto < uboot_size; upto += todo, i++) { in exynos_spi_copy() 153 todo = min(uboot_size - upto, (unsigned int)(1 << 15)); in exynos_spi_copy() 154 spi_rx_tx(regs, todo, (void *)(uboot_addr), in exynos_spi_copy()
|
/external/boringssl/src/decrepit/ripemd/ |
D | ripemd_test.cc | 80 size_t todo = stride; in TEST() local 81 if (todo > remaining) { in TEST() 82 todo = remaining; in TEST() 85 RIPEMD160_Update(&ctx, &test.input[done], todo); in TEST() 86 done += todo; in TEST()
|
/external/boringssl/src/crypto/poly1305/ |
D | poly1305_test.cc | 39 size_t todo = 16; in TestSIMD() local 40 if (todo > in.size()) { in TestSIMD() 41 todo = in.size(); in TestSIMD() 43 CRYPTO_poly1305_update(&state, in.data(), todo); in TestSIMD() 44 done += todo; in TestSIMD()
|
D | poly1305.c | 214 unsigned todo = 16 - state->buf_used; in CRYPTO_poly1305_update() local 215 if (todo > in_len) { in CRYPTO_poly1305_update() 216 todo = (unsigned)in_len; in CRYPTO_poly1305_update() 218 for (i = 0; i < todo; i++) { in CRYPTO_poly1305_update() 221 state->buf_used += todo; in CRYPTO_poly1305_update() 222 in_len -= todo; in CRYPTO_poly1305_update() 223 in += todo; in CRYPTO_poly1305_update() 232 size_t todo = in_len & ~0xf; in CRYPTO_poly1305_update() local 233 poly1305_update(state, in, todo); in CRYPTO_poly1305_update() 234 in += todo; in CRYPTO_poly1305_update()
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | mbox.py | 212 todo = [] 216 todo.append(string.atoi(scanparser.group(1))) 217 mhf.removemessages(todo) 219 fixfocus(min(todo), itop) 240 todo = [] 244 todo.append(string.atoi(scanparser.group(1))) 249 mhf.refilemessages(todo, tofolder) 251 fixfocus(min(todo), itop)
|
/external/toybox/lib/ |
D | xwrap.c | 524 struct string_list *todo, *done = 0; in xabspath() local 532 splitpath(path, splitpath(temp, &todo)); in xabspath() 534 } else splitpath(path, &todo); in xabspath() 537 while (todo) { in xabspath() 538 struct string_list *new = llist_pop(&todo), **tail; in xabspath() 575 if (errno == EINVAL && !todo) break; in xabspath() 580 if (errno != EINVAL && (exact || todo)) goto error; in xabspath() 583 if (fd == -1 && (exact || todo || errno != ENOENT)) goto error; in xabspath() 604 *tail = todo; in xabspath() 605 todo = new; in xabspath() [all …]
|
/external/boringssl/src/crypto/cmac/ |
D | cmac.c | 211 size_t todo = block_size - ctx->block_used; in CMAC_Update() local 212 if (in_len < todo) { in CMAC_Update() 213 todo = in_len; in CMAC_Update() 216 OPENSSL_memcpy(ctx->block + ctx->block_used, in, todo); in CMAC_Update() 217 in += todo; in CMAC_Update() 218 in_len -= todo; in CMAC_Update() 219 ctx->block_used += todo; in CMAC_Update()
|
/external/kmod/shared/ |
D | util.c | 199 size_t todo = buflen - 1; in read_str_safe() local 205 ssize_t r = read(fd, buf + done, todo); in read_str_safe() 210 todo -= r; in read_str_safe() 218 } while (todo > 0); in read_str_safe() 226 size_t todo = buflen; in write_str_safe() local 232 ssize_t r = write(fd, buf + done, todo); in write_str_safe() 237 todo -= r; in write_str_safe() 245 } while (todo > 0); in write_str_safe()
|
/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/bcc/src/cc/frontends/p4/compiler/ |
D | ebpfProgram.py | 485 todo = nodestoadd.pop() 486 if todo in done: 488 if todo is None: 491 print("Generating ", todo.name) 493 done.add(todo) 494 self.generateControlFlowNode(serializer, todo, nextEntryPoint) 496 for n in todo.next_.values(): 500 todo = set() 502 todo.add(e) 503 self.generatePipelineInternal(serializer, todo, self.egressEntry) [all …]
|
/external/python/cpython2/Tools/webchecker/ |
D | webchecker.py | 276 self.todo = {} 303 return (self.roots, self.todo, self.done, self.bad, self.round) 307 (self.roots, self.todo, self.done, self.bad, self.round) = state 342 while self.todo: 345 urls = self.todo.keys() 353 len(self.todo)+len(self.done), 354 len(self.todo), len(self.done), 359 if not self.todo: s = "Final" 396 " from", self.todo[url_pair]) 457 if self.todo.has_key(url): [all …]
|
/external/u-boot/drivers/spi/ |
D | exynos_spi.c | 95 static int spi_rx_tx(struct exynos_spi_priv *priv, int todo, in spi_rx_tx() argument 108 out_bytes = in_bytes = todo; in spi_rx_tx() 118 if (!((todo | (uintptr_t)rxp | (uintptr_t)txp) & 3) && in spi_rx_tx() 126 spi_request_bytes(regs, todo, step); in spi_rx_tx() 326 int upto, todo; in exynos_spi_xfer() local 346 for (upto = 0; !ret && upto < bytelen; upto += todo) { in exynos_spi_xfer() 347 todo = min(bytelen - upto, (1 << 16) - 4); in exynos_spi_xfer() 348 ret = spi_rx_tx(priv, todo, &din, &dout, flags); in exynos_spi_xfer()
|