Searched refs:first (Results 1 – 13 of 13) sorted by relevance
/bootable/recovery/otautil/ |
D | rangeset.cpp | 74 size_t first; in Parse() local 76 if (!android::base::ParseUint(pieces[i + 1], &first, static_cast<size_t>(INT_MAX)) || in Parse() 80 pairs.emplace_back(first, second); in Parse() 86 if (range.first >= range.second) { in PushBack() 87 LOG(ERROR) << "Empty or negative range: " << range.first << ", " << range.second; in PushBack() 90 size_t sz = range.second - range.first; in PushBack() 127 size_t range_blocks = range.second - range.first; in Split() 130 buffer.PushBack({ range.first, range.first + needed }); in Split() 131 range.first = range.first + needed; in Split() 211 if (it->first <= to_insert.second) { in Insert() [all …]
|
/bootable/recovery/ |
D | Android.mk | 33 LOCAL_MULTILIB := first
|
D | README.md | 37 - Execute the test on an A/B device first. The test should fail but it will log
|
/bootable/recovery/recovery_ui/ |
D | device.cpp | 49 [](const auto& entry) { return entry.first; }); in PopulateMenuItems()
|
D | screen_ui.cpp | 562 text_y += DrawTextLine(text_x, text_y, p.first, false); in SelectAndShowBackgroundText()
|
/bootable/recovery/fastboot/ |
D | fastboot.cpp | 68 [](const auto& entry) { return entry.first; }); in StartFastboot()
|
/bootable/recovery/edify/ |
D | README.md | 36 - ";" is a binary operator; evaluating it just means to first evaluate 66 one of the second and third, depending on whether the first one is
|
/bootable/recovery/updater/ |
D | commands.cpp | 325 size_t blocks = it->second - it->first; in MoveRange() 327 memmove(to + (it->first * block_size), from + (start * block_size), blocks * block_size); in MoveRange()
|
D | blockimg.cpp | 301 off64_t offset = static_cast<off64_t>(range.first) * BLOCKSIZE; in SeekToOutputRange() 302 current_range_left_ = (range.second - range.first) * BLOCKSIZE; in SeekToOutputRange() 965 size_t blocks = it->second - it->first; in MoveRange() 967 memmove(to + (it->first * BLOCKSIZE), from + (start * BLOCKSIZE), blocks * BLOCKSIZE); in MoveRange()
|
/bootable/recovery/applypatch/ |
D | imgdiff.cpp | 707 if (!AddZipEntryToChunks(handle, entry.first, &entry.second)) { in InitializeChunks() 708 LOG(ERROR) << "Failed to add " << entry.first << " to source chunks"; in InitializeChunks() 734 std::string entry_name = temp_entries[nextentry].first; in InitializeChunks() 1046 src_content.insert(src_content.end(), src_image.file_content_.begin() + r.first * BLOCK_SIZE, in AddSplitImageFromChunkList()
|
/bootable/recovery/tools/image_generator/ |
D | ImageGenerator.java | 411 int start = lineBoundary.first(); in wrapText()
|
/bootable/recovery/updater_sample/ |
D | README.md | 73 state - `UpdaterState`. To solve the first problem, sample app persists
|
/bootable/recovery/tests/component/ |
D | updater_test.cpp | 94 ASSERT_EQ(0, zip_writer.StartEntry(entry.first.c_str(), 0)); in BuildUpdatePackage()
|