Searched refs:row (Results 1 – 3 of 3) sorted by relevance
/bootable/recovery/tests/component/ |
D | resources_test.cpp | 93 std::vector<unsigned char> row(png_->width()); in TEST_P() local 95 png_read_row(png_->png_ptr(), row.data(), nullptr); in TEST_P() 96 int w = (row[1] << 8) | row[0]; in TEST_P() 97 int h = (row[3] << 8) | row[2]; in TEST_P() 98 int len = row[4]; in TEST_P() 102 EXPECT_NE(0, row[5]) << "Locale string is missing."; in TEST_P() 105 char* loc = reinterpret_cast<char*>(&row[5]); in TEST_P() 111 png_read_row(png_->png_ptr(), row.data(), nullptr); in TEST_P()
|
/bootable/recovery/minui/ |
D | resources.cpp | 374 std::vector<uint8_t> row(png_handler.width()); in get_locales_in_png() local 376 png_read_row(png_handler.png_ptr(), row.data(), nullptr); in get_locales_in_png() 377 int h = (row[3] << 8) | row[2]; in get_locales_in_png() 378 std::string loc(reinterpret_cast<char*>(&row[5])); in get_locales_in_png() 383 png_read_row(png_handler.png_ptr(), row.data(), nullptr); in get_locales_in_png() 410 std::vector<uint8_t> row(width); in res_create_localized_alpha_surface() local 411 png_read_row(png_ptr, row.data(), nullptr); in res_create_localized_alpha_surface() 412 int w = (row[1] << 8) | row[0]; in res_create_localized_alpha_surface() 413 int h = (row[3] << 8) | row[2]; in res_create_localized_alpha_surface() 414 __unused int len = row[4]; in res_create_localized_alpha_surface() [all …]
|
/bootable/recovery/recovery_ui/ |
D | screen_ui.cpp | 732 int row = text_row_; in draw_menu_and_text_buffer_locked() local 736 DrawTextLine(margin_width_, ty, text_[row], false); in draw_menu_and_text_buffer_locked() 737 --row; in draw_menu_and_text_buffer_locked() 738 if (row < 0) row = text_rows_ - 1; in draw_menu_and_text_buffer_locked()
|