Home
last modified time | relevance | path

Searched refs:offsets (Results 1 – 3 of 3) sorted by relevance

/bootable/recovery/
Dwear_ui.cpp301 std::vector<off_t> offsets; in ShowFile() local
302 offsets.push_back(ftello(fp)); in ShowFile()
321 if (offsets.size() <= 1) { in ShowFile()
324 offsets.pop_back(); in ShowFile()
325 fseek(fp, offsets.back(), SEEK_SET); in ShowFile()
331 offsets.push_back(ftello(fp)); in ShowFile()
Dscreen_ui.cpp694 std::vector<off_t> offsets; in ShowFile() local
695 offsets.push_back(ftello(fp)); in ShowFile()
714 if (offsets.size() <= 1) { in ShowFile()
717 offsets.pop_back(); in ShowFile()
718 fseek(fp, offsets.back(), SEEK_SET); in ShowFile()
724 offsets.push_back(ftello(fp)); in ShowFile()
/bootable/recovery/minui/
Dgraphics_drm.cpp140 uint32_t handles[4], pitches[4], offsets[4]; in DrmCreateSurface() local
144 offsets[0] = 0; in DrmCreateSurface()
147 drmModeAddFB2(drm_fd, width, height, format, handles, pitches, offsets, &(surface->fb_id), 0); in DrmCreateSurface()