Searched refs:end (Results 1 - 12 of 12) sorted by relevance

/bootable/recovery/edify/
H A Dyydefs.h22 int start, end; member in struct:__anon7
29 (Current).end = YYRHSLOC(Rhs, N).end; \
32 (Current).end = YYRHSLOC(Rhs, 0).end; \
H A Dparser.y79 $$->end = @$.end;
81 | '(' expr ')' { $$ = $2; $$->start=@$.start; $$->end=@$.end; }
82 | expr ';' { $$ = $1; $$->start=@1.start; $$->end=@1.end; }
84 | error ';' expr { $$ = $3; $$->start=@$.start; $$->end=@$.end; }
106 $$->end = @$.end;
[all...]
H A Dlexer.l32 #define ADVANCE do {yylloc.start=gPos; yylloc.end=gPos+yyleng; \
59 yylloc.end = gPos;
H A Dmain.c162 char temp = script[n->end];
163 script[n->end] = '\0';
165 n->name == NULL ? "(NULL)" : n->name, n->fn, n->start, n->end,
167 script[n->end] = temp;
H A Dexpr.c151 int len = argv[i]->end - argv[i]->start;
286 char* end; local
288 long l_int = strtol(left, &end, 10);
289 if (left[0] == '\0' || *end != '\0') {
293 long r_int = strtol(right, &end, 10);
294 if (right[0] == '\0' || *end != '\0') {
339 e->end = loc.end;
H A Dexpr.h65 int start, end; member in struct:Expr
/bootable/recovery/tools/ota/
H A Dadd-property-tag.c49 char *end; local
50 int num = strtoul(pos + strlen(tag), &end, 10);
51 strcpy(pos, end);
57 const char *end = line + strlen(line); local
58 while (end > line && isspace(end[-1])) --end;
60 fprintf(out, "%.*s%s%d%s", (int)(end - line), line, tag, number, end);
62 fprintf(out, "%.*s%s%s", (int)(end
[all...]
/bootable/recovery/minzip/
H A DSysUtil.c24 off_t start, end; local
31 end = lseek(fd, 0L, SEEK_END);
34 if (start == (off_t) -1 || end == (off_t) -1) {
39 length = end - start;
136 int start, end; local
137 if (fscanf(mapf, "%d %d\n", &start, &end) != 2) {
142 void* addr = mmap64(next, (end-start)*blksize, PROT_READ, MAP_PRIVATE | MAP_FIXED, fd, ((off64_t)start)*blksize);
148 pMap->ranges[i].length = (end-start)*blksize;
/bootable/recovery/minadbd/
H A Dadb.c229 char *type, *product, *end; local
241 end = strchr(product, ':');
242 if(end) *end = 0;
/bootable/recovery/minui/
H A Dgraphics.c343 printf("getting end time\n");
344 time_t end = time(NULL);
345 printf("got end time\n");
346 printf("start %ld end %ld\n", (long)start, (long)end);
347 if (end > start) {
348 printf("%.2f fps\n", ((double)x) / (end-start));
/bootable/recovery/updater/
H A DAndroid.mk15 # Build only in eng, so we don't end up with a copy of this in /system
/bootable/recovery/
H A Dscreen_ui.cpp319 double end = now(); local
321 double delay = interval - (end-start);

Completed in 301 milliseconds