HomeSort by relevance Sort by last modified time
    Searched refs:crc32val (Results 1 - 6 of 6) sorted by null

  /external/python/cpython2/Modules/
zlibmodule.c 1034 unsigned int crc32val = 0; /* crc32(0L, Z_NULL, 0) */ local
1039 if (!PyArg_ParseTuple(args, "s#|I:crc32", &buf, &len, &crc32val))
1045 crc32val = crc32(crc32val, buf, UINT_MAX);
1053 signed_val = crc32(crc32val, buf, (unsigned int)len);
    [all...]
binascii.c 876 unsigned int crc32val = 0; /* crc32(0L, Z_NULL, 0) */ local
882 if (!PyArg_ParseTuple(args, "s*|I:crc32", &pbuf, &crc32val))
890 signed_val = crc32(crc32val, buf, len);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
zlibmodule.c 973 unsigned int crc32val = 0; /* crc32(0L, Z_NULL, 0) */ local
977 if (!PyArg_ParseTuple(args, "s#|I:crc32", &buf, &len, &crc32val))
983 signed_val = crc32(crc32val, buf, len);
    [all...]
binascii.c 876 unsigned int crc32val = 0; /* crc32(0L, Z_NULL, 0) */ local
882 if (!PyArg_ParseTuple(args, "s*|I:crc32", &pbuf, &crc32val))
890 signed_val = crc32(crc32val, buf, len);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
zlibmodule.c 938 unsigned int crc32val = 0; /* crc32(0L, Z_NULL, 0) */ local
942 if (!PyArg_ParseTuple(args, "s#|I:crc32", &buf, &len, &crc32val))
948 signed_val = crc32(crc32val, buf, len);
    [all...]
binascii.c 891 unsigned int crc32val = 0; /* crc32(0L, Z_NULL, 0) */ local
897 if (!PyArg_ParseTuple(args, "s*|I:crc32", &pbuf, &crc32val))
905 signed_val = crc32(crc32val, buf, len);
    [all...]

Completed in 1097 milliseconds