HomeSort by relevance Sort by last modified time
    Searched refs:todo (Results 26 - 50 of 152) sorted by null

12 3 4 5 6 7

  /external/boringssl/src/crypto/cipher_extra/
cipher_test.cc 165 size_t todo = chunk_size; local
166 if (i + todo > in->size()) {
167 todo = in->size() - i;
172 in->data() + i, todo));
174 i += todo;
  /external/libvorbis/
Makefile.am 19 todo.txt autogen.sh \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
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])
422 # and we store that fragment here in the "todo" dictionary.
    [all...]
  /external/python/cpython2/Tools/webchecker/
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])
422 # and we store that fragment here in the "todo" dictionary
    [all...]
  /prebuilts/go/darwin-x86/src/archive/tar/
example_test.go 29 {"todo.txt", "Get animal handling license."},
78 // Contents of todo.txt:
  /prebuilts/go/linux-x86/src/archive/tar/
example_test.go 29 {"todo.txt", "Get animal handling license."},
78 // Contents of todo.txt:
  /external/boringssl/src/crypto/poly1305/
poly1305_arm.c 220 unsigned int todo = 32 - st->buf_used; local
221 if (todo > in_len) {
222 todo = in_len;
224 for (i = 0; i < todo; i++) {
227 st->buf_used += todo;
228 in_len -= todo;
229 in += todo;
  /external/boringssl/src/crypto/bn_extra/
convert.c 127 int todo = BN_BYTES * 2; local
128 if (todo > in_len) {
129 todo = in_len;
134 for (j = todo; j > 0; j--) {
153 in_len -= todo;
  /art/build/
Android.cpplint.mk 20 ART_CPPLINT_FILTER := --filter=-whitespace/line_length,-build/include,-readability/function,-readability/streams,-readability/todo,-runtime/references,-runtime/sizeof,-runtime/threadsafe_fn,-runtime/printf
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
ast.py 210 todo = deque([node])
211 while todo:
212 node = todo.popleft()
213 todo.extend(iter_child_nodes(node))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ast.py 210 todo = deque([node])
211 while todo:
212 node = todo.popleft()
213 todo.extend(iter_child_nodes(node))
  /external/autotest/client/profilers/powertop/src/
Makefile 48 rm -rf .svn po/.svn DEADJOE po/DEADJOE todo.txt Lindent svn-commit.* dogit.sh git/ *.rej *.orig
  /external/boringssl/src/crypto/base64/
base64.c 147 const size_t todo = sizeof(ctx->data) - ctx->data_used; local
148 OPENSSL_memcpy(&ctx->data[ctx->data_used], in, todo);
149 in += todo;
150 in_len -= todo;
  /external/python/cpython2/Lib/
ast.py 210 todo = deque([node])
211 while todo:
212 node = todo.popleft()
213 todo.extend(iter_child_nodes(node))
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ast.py 210 todo = deque([node])
211 while todo:
212 node = todo.popleft()
213 todo.extend(iter_child_nodes(node))
  /prebuilts/gdb/linux-x86/lib/python2.7/
ast.py 210 todo = deque([node])
211 while todo:
212 node = todo.popleft()
213 todo.extend(iter_child_nodes(node))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ast.py 210 todo = deque([node])
211 while todo:
212 node = todo.popleft()
213 todo.extend(iter_child_nodes(node))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ast.py 210 todo = deque([node])
211 while todo:
212 node = todo.popleft()
213 todo.extend(iter_child_nodes(node))
  /external/boringssl/src/crypto/cmac/
cmac_test.cc 48 size_t todo = std::min(msg_len - done, static_cast<size_t>(chunk_size)); local
49 ASSERT_TRUE(CMAC_Update(ctx.get(), msg + done, todo));
50 done += todo;
  /external/libmojo/third_party/jinja2/
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/boringssl/src/ssl/
d1_both.cc 130 /* TODO(davidben): 28 comes from the size of IP + UDP header. Is this reasonable
420 /* TODO(davidben): This function has a lot of implicit outputs. Simplify the
551 /* TODO(svaldez): Move this up a layer to fix abstraction for SSL_TRANSCRIPT
593 /* TODO(davidben): No consumer implements |BIO_CTRL_DGRAM_SET_MTU| and the
674 size_t todo = CBS_len(&body); local
675 if (todo > max_out - DTLS1_HM_HEADER_LENGTH - overhead) {
676 todo = max_out - DTLS1_HM_HEADER_LENGTH - overhead;
688 !CBB_add_u24(&cbb, todo) ||
689 !CBB_add_bytes(&cbb, CBS_data(&body), todo) ||
703 if (todo == CBS_len(&body))
    [all...]
  /toolchain/binutils/binutils-2.25/gprof/
cg_print.c 167 Sym *todo, *doing, *prev;
171 todo = cyc->cg.cyc.next;
174 for (doing = todo; doing != NULL; doing = todo)
176 todo = doing->cg.cyc.next;
568 unsigned int nnames, todo, i, j;
590 for (sym_index = 1, todo = nnames; sym_index <= num_cycles; sym_index++)
591 name_sorted_syms[todo++] = &cycle_header[sym_index];
595 sym_index = (todo + 2) / 3;
602 for (j = i; j < todo; j += sym_index
166 Sym *todo, *doing, *prev; local
567 unsigned int nnames, todo, i, j; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
pgen.py 207 todo = [start]
208 for i, state in enumerate(todo):
211 if next in todo:
212 j = todo.index(next)
214 j = len(todo)
215 todo.append(next)
  /external/python/cpython2/Lib/lib2to3/pgen2/
pgen.py 207 todo = [start]
208 for i, state in enumerate(todo):
211 if next in todo:
212 j = todo.index(next)
214 j = len(todo)
215 todo.append(next)
  /external/python/cpython2/Lib/plat-mac/
buildtools.py 401 todo = os.listdir(srctree)
402 while todo:
403 this, todo = todo[0], todo[1:]
410 todo.append(os.path.join(this, t))

Completed in 1998 milliseconds

12 3 4 5 6 7