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

  /external/chromium_org/third_party/tlslite/tlslite/utils/
win32prng.c 9 int howMany;
16 if (!PyArg_ParseTuple(args, "i", &howMany))
30 bytes = malloc(howMany);
36 howMany,
40 returnVal = Py_BuildValue("s#", bytes, howMany);
entropy.c 25 int howMany = 0;
36 if (!PyArg_ParseTuple(args, "i", &howMany))
63 if ((bytes = (unsigned char*)PyMem_Malloc(howMany)) == NULL)
77 if(!pCryptGenRandom(hCryptProv, howMany, bytes)) {
86 returnVal = Py_BuildValue("s#", bytes, howMany);
106 int howMany;
113 if (!PyArg_ParseTuple(args, "i", &howMany))
117 if ((bytes = (unsigned char*)PyMem_Malloc(howMany)) == NULL)
129 if (read(fd, bytes, howMany) < howMany) {
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStressTest.java 142 int howMany = random.nextInt(32);
143 if (pos + howMany >= input.length) {
144 howMany = input.length - pos;
146 Arrays.fill(input, pos, pos + howMany, what);
147 pos += howMany;

Completed in 138 milliseconds