Searched defs:cnt (Results 1 - 2 of 2) sorted by relevance

/art/runtime/base/
H A Dbit_vector.cc318 int cnt = 0; local
323 cnt++;
326 // Return cnt + how many storage units still remain * the number of bits per unit.
327 int res = cnt + (idx * kWordBits);
/art/patchoat/
H A Dpatchoat.cc920 uint32_t cnt = 0; local
921 cnt += (base_delta_set) ? 1 : 0;
922 cnt += (base_offset_set && orig_base_offset_set) ? 1 : 0;
923 cnt += (!patched_image_filename.empty()) ? 1 : 0;
924 cnt += (!patched_image_location.empty()) ? 1 : 0;
925 if (cnt > 1) {
928 } else if (cnt == 0) {

Completed in 53 milliseconds