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

1 2 34 5 6 7

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cgi.py 655 todo = self.length
656 if todo >= 0:
657 while todo > 0:
658 data = self.fp.read(min(todo, self.bufsize))
663 todo = todo - len(data)
    [all...]
binhex.py 123 todo = (datalen//3)*3
124 data = self.data[:todo]
125 self.data = self.data[todo:]
  /external/python/cpython2/Lib/
cgi.py 654 todo = self.length
655 if todo >= 0:
656 while todo > 0:
657 data = self.fp.read(min(todo, self.bufsize))
662 todo = todo - len(data)
    [all...]
binhex.py 124 todo = (datalen//3)*3
125 data = self.data[:todo]
126 self.data = self.data[todo:]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cgi.py 654 todo = self.length
655 if todo >= 0:
656 while todo > 0:
657 data = self.fp.read(min(todo, self.bufsize))
662 todo = todo - len(data)
    [all...]
binhex.py 123 todo = (datalen//3)*3
124 data = self.data[:todo]
125 self.data = self.data[todo:]
  /prebuilts/gdb/linux-x86/lib/python2.7/
cgi.py 654 todo = self.length
655 if todo >= 0:
656 while todo > 0:
657 data = self.fp.read(min(todo, self.bufsize))
662 todo = todo - len(data)
    [all...]
binhex.py 123 todo = (datalen//3)*3
124 data = self.data[:todo]
125 self.data = self.data[todo:]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgi.py 654 todo = self.length
655 if todo >= 0:
656 while todo > 0:
657 data = self.fp.read(min(todo, self.bufsize))
662 todo = todo - len(data)
    [all...]
binhex.py 123 todo = (datalen//3)*3
124 data = self.data[:todo]
125 self.data = self.data[todo:]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgi.py 654 todo = self.length
655 if todo >= 0:
656 while todo > 0:
657 data = self.fp.read(min(todo, self.bufsize))
662 todo = todo - len(data)
    [all...]
binhex.py 123 todo = (datalen//3)*3
124 data = self.data[:todo]
125 self.data = self.data[todo:]
  /external/boringssl/src/ssl/test/runner/
prf.go 35 todo := len(b)
36 if j+todo > len(result) {
37 todo = len(result) - j
39 copy(result[j:j+todo], b)
40 j += todo
  /external/libchrome/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)
1062 unsigned int todo = SHA512_BLOCK_LENGTH - inBuf;
1063 if (inputLen < todo)
1064 todo = inputLen
    [all...]
  /external/boringssl/src/crypto/cipher_extra/
e_aesgcmsiv.c 395 // TODO(martinkr): Add aead_aes_gcm_siv_asm_open_gather. N.B. aes128gcmsiv_dec
614 size_t todo = AES_BLOCK_SIZE; local
615 if (in_len - done < todo) {
616 todo = in_len - done;
619 for (size_t i = 0; i < todo; i++) {
623 done += todo;
  /frameworks/base/services/backup/java/com/android/server/backup/utils/
TarBackupReader.java 183 // File in shared storage. !!! TODO: implement this.
301 // TODO: handle <original-package>
776 int todo = block.length; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
binhex.py 124 todo = (datalen//3)*3
125 data = self.data[:todo]
126 self.data = self.data[todo:]
  /external/llvm/lib/CodeGen/
MachineVerifier.cpp 1388 SmallPtrSet<const MachineBasicBlock*, 8> todo; local
1423 SmallPtrSet<const MachineBasicBlock*, 8> todo; local
    [all...]
  /external/fio/
backend.c 2119 unsigned int i, todo, nr_running, nr_started; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pyassem.py 109 todo = [start_block]
110 while todo:
111 b = todo.pop()
117 todo.append(c)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
bdist_msi.py 294 todo = [dir]
295 while todo:
296 dir = todo.pop()
303 todo.append(newdir)
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
_ast_util.py 241 todo = deque([node])
242 while todo:
243 node = todo.popleft()
244 todo.extend(iter_child_nodes(node))
  /external/python/cpython2/Lib/compiler/
pyassem.py 109 todo = [start_block]
110 while todo:
111 b = todo.pop()
117 todo.append(c)
  /external/python/cpython2/Lib/distutils/command/
bdist_msi.py 298 todo = [dir]
299 while todo:
300 dir = todo.pop()
307 todo.append(newdir)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
pyassem.py 109 todo = [start_block]
110 while todo:
111 b = todo.pop()
117 todo.append(c)

Completed in 1251 milliseconds

1 2 34 5 6 7