Searched refs:n (Results 1 – 13 of 13) sorted by relevance
/bootable/recovery/otautil/ |
D | ThermalUtil.cpp | 42 int n = scandir(THERMAL_PREFIX, &namelist, thermal_filter, alphasort); in InitThermalPaths() local 43 if (n == -1) { in InitThermalPaths() 47 if (n == 0) { in InitThermalPaths() 53 while (n--) { in InitThermalPaths() 54 thermal_paths.push_back(THERMAL_PREFIX + std::string(namelist[n]->d_name) + "/temp"); in InitThermalPaths() 55 free(namelist[n]); in InitThermalPaths()
|
/bootable/recovery/minui/ |
D | mkfont.c | 6 unsigned n; in main() local 12 n = gimp_image.width * gimp_image.height; in main() 29 n--; in main() 32 while(n-- > 0) { in main()
|
D | graphics_fbdev.cpp | 38 void MinuiBackendFbdev::SetDisplayedFramebuffer(unsigned n) { in SetDisplayedFramebuffer() argument 39 if (n > 1 || !double_buffered) return; in SetDisplayedFramebuffer() 42 vi.yoffset = n * gr_framebuffer[0].height; in SetDisplayedFramebuffer() 47 displayed_buffer = n; in SetDisplayedFramebuffer()
|
D | events.cpp | 159 for (int n = 0; n < npolledevents; n++) { in ev_dispatch() local 160 fd_info* fdi = static_cast<fd_info*>(polledevents[n].data.ptr); in ev_dispatch() 163 cb(fdi->fd, polledevents[n].events); in ev_dispatch()
|
D | graphics_fbdev.h | 34 void SetDisplayedFramebuffer(unsigned n);
|
/bootable/recovery/update_verifier/ |
D | update_verifier.cpp | 86 int n = scandir(DM_PATH_PREFIX, &namelist, dm_name_filter, alphasort); in read_blocks() local 87 if (n == -1) { in read_blocks() 91 if (n == 0) { in read_blocks() 99 while (n--) { in read_blocks() 100 std::string path = DM_PATH_PREFIX + std::string(namelist[n]->d_name) + DM_PATH_SUFFIX; in read_blocks() 113 dm_block_device = DEV_PATH + std::string(namelist[n]->d_name); in read_blocks() 114 while (n--) { in read_blocks() 115 free(namelist[n]); in read_blocks() 120 free(namelist[n]); in read_blocks()
|
/bootable/recovery/tests/manual/ |
D | recovery_test.cpp | 117 int n = scandir(dir_path.c_str(), &namelist, png_filter, alphasort); in add_files() local 118 if (n == -1) { in add_files() 122 if (n == 0) { in add_files() 126 while (n--) { in add_files() 127 std::string file_path = dir_path + namelist[n]->d_name; in add_files() 129 free(namelist[n]); in add_files()
|
/bootable/recovery/tools/dumpkey/ |
D | DumpPublicKey.java | 136 long n = N.mod(B).longValue(); in printRSA() local 137 result.append(n); in printRSA() 192 long n = X.mod(B).longValue(); in printEC() local 193 result.append(n); in printEC() 206 long n = Y.mod(B).longValue(); in printEC() local 207 result.append(n); in printEC()
|
/bootable/recovery/edify/ |
D | lexer.ll | 63 \\n { gColumn += yyleng; gPos += yyleng; string_buffer.push_back('\n'); } 76 \n { 110 (#.*)?\n gPos += yyleng; ++gLine; gColumn = 1;
|
D | parser.yy | 137 printf("line %d col %d: %s\n", gLine, gColumn, s);
|
D | README.md | 12 - String literals appear in double quotes. \n, \t, \", and \\ are
|
/bootable/recovery/ |
D | verifier.cpp | 364 key->n = BN_bin2bn((uint8_t*)modulus.get(), in parse_rsa_key() 366 if (!key->n) { in parse_rsa_key()
|
/bootable/recovery/tests/component/ |
D | imgdiff_test.cpp | 703 uint8_t n = 0; in TEST() local 704 generate_n(back_inserter(content), 4096 * 50, [&n]() { return n++ / 4096; }); in TEST()
|