OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hexsum
(Results
1 - 2
of
2
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
cvslib.py
307
def unhexify(
hexsum
):
309
if
hexsum
== "None":
312
for i in range(0, len(
hexsum
), 2):
313
sum = sum + chr(string.atoi(
hexsum
[i:i+2], 16))
/external/python/cpython2/Demo/pdist/
cvslib.py
307
def unhexify(
hexsum
):
309
if
hexsum
== "None":
312
for i in range(0, len(
hexsum
), 2):
313
sum = sum + chr(string.atoi(
hexsum
[i:i+2], 16))
Completed in 57 milliseconds