Home | History | Annotate | Download | only in applypatch

Lines Matching refs:ps

360     const char* ps = str;
362 for (i = 0; i < SHA_DIGEST_SIZE * 2; ++i, ++ps) {
364 if (*ps >= '0' && *ps <= '9') {
365 digit = *ps - '0';
366 } else if (*ps >= 'a' && *ps <= 'f') {
367 digit = *ps - 'a' + 10;
368 } else if (*ps >= 'A' && *ps <= 'F') {
369 digit = *ps - 'A' + 10;
380 if (*ps != '\0') return -1;