Searched refs:todo (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Drandom.c252 size_t done, todo, attempt; local
276 todo = sizeof(priv->d[0]) * priv->top;
277 if (todo > sizeof(private_bytes)) {
284 memcpy(private_bytes, priv->d, todo);
285 memset(private_bytes + todo, 0, sizeof(private_bytes) - todo);
300 todo = num_k_bytes - done;
301 if (todo > SHA512_DIGEST_LENGTH) {
302 todo = SHA512_DIGEST_LENGTH;
304 memcpy(k_bytes + done, digest, todo);
[all...]
/external/eigen/unsupported/Eigen/src/BVH/
H A DBVAlgorithms.h28 std::vector<Index> todo(1, root);
30 while(!todo.empty()) {
31 tree.getChildren(todo.back(), vBegin, vEnd, oBegin, oEnd);
32 todo.pop_back();
36 todo.push_back(*vBegin);
109 std::vector<std::pair<Index1, Index2> > todo(1, std::make_pair(tree1.getRootIndex(), tree2.getRootIndex()));
111 while(!todo.empty()) {
112 tree1.getChildren(todo.back().first, vBegin1, vEnd1, oBegin1, oEnd1);
113 tree2.getChildren(todo.back().second, vBegin2, vEnd2, oBegin2, oEnd2);
114 todo
159 std::priority_queue<QueueElement, std::vector<QueueElement>, std::greater<QueueElement> > todo; //smallest is at the top local
252 std::priority_queue<QueueElement, std::vector<QueueElement>, std::greater<QueueElement> > todo; //smallest is at the top local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/chacha/
H A Dchacha_generic.c88 size_t todo, i; local
119 todo = sizeof(buf);
120 if (in_len < todo) {
121 todo = in_len;
125 for (i = 0; i < todo; i++) {
129 out += todo;
130 in += todo;
131 in_len -= todo;
/external/chromium_org/third_party/boringssl/src/crypto/rand/
H A Durandom.c141 size_t todo; local
211 todo = rand_bytes_per_buf - buf->used;
212 if (todo > requested) {
213 todo = requested;
215 memcpy(out, &buf->rand[buf->used], todo);
216 requested -= todo;
217 out += todo;
218 buf->used += todo;
/external/openssl/crypto/bn/
H A Dbn_rand.c323 unsigned done, todo; local
335 todo = sizeof(priv->d[0])*priv->top;
336 if (todo > sizeof(private_bytes))
344 memcpy(private_bytes, priv->d, todo);
345 memset(private_bytes + todo, 0, sizeof(private_bytes) - todo);
357 todo = num_k_bytes - done;
358 if (todo > SHA512_DIGEST_LENGTH)
359 todo = SHA512_DIGEST_LENGTH;
360 memcpy(k_bytes + done, digest, todo);
[all...]
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtestbase.py23 replacement.todo = reason
/external/chromium_org/ppapi/
H A DPRESUBMIT.py52 todo = []
76 todo.append(filename)
78 if todo:
81 long_text='\n'.join(todo))]
89 todo = []
109 todo.append(filename)
111 if todo:
114 long_text='\n'.join(todo))]
/external/chromium_org/third_party/boringssl/src/crypto/poly1305/
H A Dpoly1305.c223 unsigned int todo = 16 - state->buf_used; local
224 if (todo > in_len)
225 todo = in_len;
226 for (i = 0; i < todo; i++)
228 state->buf_used += todo;
229 in_len -= todo;
230 in += todo;
239 size_t todo = in_len & ~0xf; local
240 poly1305_update(state, in, todo);
241 in += todo;
[all...]
H A Dpoly1305_arm.c208 unsigned int todo = 32 - st->buf_used; local
209 if (todo > in_len)
210 todo = in_len;
211 for (i = 0; i < todo; i++)
213 st->buf_used += todo;
214 in_len -= todo;
215 in += todo;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-deltablue.js645 var todo = sources;
646 while (todo.size() > 0) {
647 var c = todo.removeFirst();
651 this.addConstraintsConsumingTo(c.output(), todo);
686 var todo = new OrderedCollection();
687 todo.add(c);
688 while (todo.size() > 0) {
689 var d = todo.removeFirst();
695 this.addConstraintsConsumingTo(d.output(), todo);
711 var todo
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-deltablue.js645 var todo = sources;
646 while (todo.size() > 0) {
647 var c = todo.removeFirst();
651 this.addConstraintsConsumingTo(c.output(), todo);
686 var todo = new OrderedCollection();
687 todo.add(c);
688 while (todo.size() > 0) {
689 var d = todo.removeFirst();
695 this.addConstraintsConsumingTo(d.output(), todo);
711 var todo
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-deltablue.js645 var todo = sources;
646 while (todo.size() > 0) {
647 var c = todo.removeFirst();
651 this.addConstraintsConsumingTo(c.output(), todo);
686 var todo = new OrderedCollection();
687 todo.add(c);
688 while (todo.size() > 0) {
689 var d = todo.removeFirst();
695 this.addConstraintsConsumingTo(d.output(), todo);
711 var todo
[all...]
/external/chromium_org/v8/benchmarks/
H A 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
[all...]
/external/chromium_org/third_party/jinja2/
H A Dnodes.py200 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/libvorbis/
H A DMakefile.am19 todo.txt autogen.sh \
/external/skia/gm/rebaseline_server/static/
H A Dview.css2 .todo-div {
/external/qemu/distrib/sdl-1.2.15/src/video/gem/
H A DSDL_gemvideo.c1146 short todo[4]; local
1154 if (wind_get(winhandle, WF_FIRSTXYWH, &todo[0], &todo[1], &todo[2], &todo[3])!=0) {
1156 while (todo[2] && todo[3]) {
1158 if (rc_intersect((GRECT *)inside,(GRECT *)todo)) {
1159 todo[2] += todo[
[all...]
/external/mksh/src/
H A 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/chromium_org/tools/code_coverage/
H A Dcroc_html.py436 todo = [self.cov.tree]
437 while todo:
438 cov_dir = todo.pop(0)
440 # Append subdirs to todo list
441 todo += cov_dir.subdirs.values()
/external/chromium_org/third_party/skia/gm/rebaseline_server/static/
H A Dview.css2 .todo-div {
/external/llvm/lib/CodeGen/
H A DMachineVerifier.cpp1159 SmallPtrSet<const MachineBasicBlock*, 8> todo; local
1168 todo.insert(*SuI);
1174 while (!todo.empty()) {
1175 const MachineBasicBlock *MBB = *todo.begin();
1176 todo.erase(MBB);
1184 todo.insert(*SuI);
1194 SmallPtrSet<const MachineBasicBlock*, 8> todo; local
1201 todo.insert(*PrI);
1207 while (!todo.empty()) {
1208 const MachineBasicBlock *MBB = *todo
[all...]
/external/chromium_org/net/http/
H A Dhttp_stream_parser.cc267 size_t todo = request_->upload_data_stream->size(); local
268 while (todo) {
270 ->Read(request_headers_.get(), todo, CompletionCallback());
273 todo -= consumed;
/external/chromium_org/crypto/third_party/nss/
H A Dsha512.cc410 unsigned int todo = SHA256_BLOCK_LENGTH - inBuf; local
411 if (inputLen < todo)
412 todo = inputLen;
413 memcpy(B + inBuf, input, todo);
414 input += todo;
415 inputLen -= todo;
416 if (inBuf + todo == SHA256_BLOCK_LENGTH)
1063 unsigned int todo = SHA512_BLOCK_LENGTH - inBuf;
1064 if (inputLen < todo)
1065 todo
[all...]
/external/fio/
H A Dbackend.c1716 unsigned int i, todo, nr_running, m_rate, t_rate, nr_started; local
1749 todo = thread_number;
1771 todo--;
1793 while (todo) {
1810 todo--;
1900 todo--;
1933 todo--;
1939 if (todo)
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dtestbase.py55 replacement.todo = reason

Completed in 1493 milliseconds

12