Searched refs:n (Results 1 – 9 of 9) sorted by relevance
/bootable/recovery/edify/ |
D | main.c | 159 void ExprDump(int depth, Expr* n, char* script) { in ExprDump() argument 161 char temp = script[n->end]; in ExprDump() 162 script[n->end] = '\0'; in ExprDump() 164 n->name == NULL ? "(NULL)" : n->name, n->fn, n->start, n->end, in ExprDump() 165 script+n->start); in ExprDump() 166 script[n->end] = temp; in ExprDump() 168 for (i = 0; i < n->argc; ++i) { in ExprDump() 169 ExprDump(depth+1, n->argv[i], script); in ExprDump()
|
D | lexer.l | 63 \\n { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\n'; } 76 \n { 110 (#.*)?\n gPos += yyleng; ++gLine; gColumn = 1;
|
D | README | 9 - String literals appear in double quotes. \n, \t, \", and \\ are
|
/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 | events.cpp | 158 for (int n = 0; n < npolledevents; n++) { in ev_dispatch() local 159 fd_info* fdi = reinterpret_cast<fd_info*>(polledevents[n].data.ptr); in ev_dispatch() 162 cb(fdi->fd, polledevents[n].events, fdi->data); in ev_dispatch()
|
D | graphics_fbdev.cpp | 69 static void set_displayed_framebuffer(unsigned n) in set_displayed_framebuffer() argument 71 if (n > 1 || !double_buffered) return; in set_displayed_framebuffer() 74 vi.yoffset = n * gr_framebuffer[0].height; in set_displayed_framebuffer() 79 displayed_buffer = n; in set_displayed_framebuffer()
|
/bootable/recovery/ |
D | recovery.cpp | 279 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len); in save_kernel_log() local 280 if (n == -1) { in save_kernel_log() 284 buffer.resize(n); in save_kernel_log() 703 unsigned int n = 0; in choose_recovery_file() local 716 entries[n++] = log_file; in choose_recovery_file() 727 entries[n++] = kmsg_file; in choose_recovery_file() 731 entries[n++] = strdup("Back"); in choose_recovery_file()
|
D | verifier.cpp | 390 &(key->len), &(key->n0inv), &(key->n[0])) != 3) { in load_keys() 398 if (fscanf(f, " , %u", &(key->n[i])) != 1) goto exit; in load_keys()
|
/bootable/recovery/minzip/ |
D | Zip.c | 678 ssize_t n = TEMP_FAILURE_RETRY(write(fd, data+soFar, dataLen-soFar)); in writeProcessFunction() local 679 if (n <= 0) { in writeProcessFunction() 683 } else if (n > 0) { in writeProcessFunction() 684 soFar += n; in writeProcessFunction()
|