HomeSort by relevance Sort by last modified time
    Searched defs:todo (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/third_party/openssl/openssl/crypto/chacha/
chacha_enc.c 135 size_t todo, i; local
169 todo = sizeof(buf);
170 if (in_len < todo)
171 todo = in_len;
174 for (i = 0; i < todo; i++)
177 out += todo;
178 in += todo;
179 in_len -= todo;
  /external/elfutils/tests/
arextract.c 47 size_t todo; local
114 todo = arhdr->ar_size;
115 while (todo > 0)
118 ssize_t n = pread (fd, buf, MIN (sizeof buf, todo), offset);
129 todo -= n;
133 if (todo != 0)
  /external/chromium_org/third_party/openssl/openssl/crypto/poly1305/
poly1305_arm.c 244 unsigned int todo = 32 - st->buf_used; local
245 if (todo > in_len)
246 todo = in_len;
247 for (i = 0; i < todo; i++)
249 st->buf_used += todo;
250 in_len -= todo;
251 in += todo;
poly1305.c 274 unsigned int todo = 16 - state->buf_used; local
275 if (todo > in_len)
276 todo = in_len;
277 for (i = 0; i < todo; i++)
279 state->buf_used += todo;
280 in_len -= todo;
281 in += todo;
292 size_t todo = in_len & ~0xf; local
293 poly1305_update(state, in, todo);
294 in += todo;
    [all...]
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorSRC.cpp 261 uint32_t todo = mLeftover; local
262 if (todo > want) {
263 todo = want;
268 memcpy((uint8_t*)pBuffer->raw + done, end - mLeftover, todo);
269 done += todo;
270 want -= todo;
271 mLeftover -= todo;
  /external/chromium/net/socket/
dns_cert_provenance_checker.cc 183 size_t todo = b64_encoded.size() - i; local
184 if (todo > 64)
185 todo = 64;
186 dump += b64_encoded.substr(i, todo);
188 i += todo;
  /external/eigen/unsupported/Eigen/src/BVH/
BVAlgorithms.h 28 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);
93 void BVIntersect(const BVH1 &tree1, const BVH2 &tree2, Intersector &intersector) //TODO: tandem descent when it makes sense
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)
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/crypto/third_party/nss/
sha512.cc 410 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 = inputLen
    [all...]
  /external/chromium_org/crypto/third_party/nss/
sha512.cc 410 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 = inputLen
    [all...]
  /external/chromium_org/net/http/
http_stream_parser.cc 257 size_t todo = request_->upload_data_stream->size(); local
258 while (todo) {
260 ->Read(request_headers_.get(), todo, CompletionCallback());
263 todo -= consumed;
    [all...]
  /external/chromium_org/crypto/
openpgp_symmetric_encryption.cc 122 unsigned todo = count - written; local
125 todo);
139 unsigned todo = cipher_key_length - done; local
140 if (todo > num_hash_bytes)
141 todo = num_hash_bytes;
142 memcpy(out_key + done, digest, todo);
143 done += todo;
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemvideo.c 1146 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[0]-1
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BlobCache.java 355 int todo = Math.min(count, 1024); local
356 mIndexBuffer.put(zero, 0, todo);
357 count -= todo;
  /packages/apps/Mms/src/com/android/mms/util/
BlobCache.java 354 int todo = Math.min(count, 1024); local
355 mIndexBuffer.put(zero, 0, todo);
356 count -= todo;
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 1144 SmallPtrSet<const MachineBasicBlock*, 8> todo; local
1181 SmallPtrSet<const MachineBasicBlock*, 8> todo; local
    [all...]
  /external/chromium_org/third_party/icu/source/tools/tzcode/
zic.c 1835 register zic_t todo; local
    [all...]
  /external/icu4c/tools/tzcode/
zic.c 1835 register zic_t todo; local
    [all...]
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java 600 // TODO: refactor full backup to be a looper-based state machine
626 // TODO: refactor full restore to be a looper-based state machine
4251 int todo = block.length; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
  /prebuilts/tools/common/netbeans-visual/
org-openide-util.jar 

Completed in 1225 milliseconds