Searched refs:end (Results 1 – 12 of 12) sorted by relevance
/bootable/recovery/edify/ |
D | yydefs.h | 22 int start, end; member 29 (Current).end = YYRHSLOC(Rhs, N).end; \ 32 (Current).end = YYRHSLOC(Rhs, 0).end; \
|
D | parser.y | 75 $$->end = @$.end; 77 | '(' expr ')' { $$ = $2; $$->start=@$.start; $$->end=@$.end; } 78 | expr ';' { $$ = $1; $$->start=@1.start; $$->end=@1.end; } 80 | error ';' expr { $$ = $3; $$->start=@$.start; $$->end=@$.end; } 102 $$->end = @$.end;
|
D | main.c | 163 char temp = script[n->end]; in ExprDump() 164 script[n->end] = '\0'; in ExprDump() 166 n->name == NULL ? "(NULL)" : n->name, n->fn, n->start, n->end, in ExprDump() 168 script[n->end] = temp; in ExprDump()
|
D | lexer.l | 30 #define ADVANCE do {yylloc.start=gPos; yylloc.end=gPos+yyleng; \ 57 yylloc.end = gPos;
|
D | expr.c | 122 int len = argv[i]->end - argv[i]->start; in AssertFn() 261 char* end; in LessThanIntFn() local 263 long l_int = strtol(left, &end, 10); in LessThanIntFn() 264 if (left[0] == '\0' || *end != '\0') { in LessThanIntFn() 269 long r_int = strtol(right, &end, 10); in LessThanIntFn() 270 if (right[0] == '\0' || *end != '\0') { in LessThanIntFn() 315 e->end = loc.end; in Build()
|
D | expr.h | 50 int start, end; member
|
D | README | 37 - Comments start with "#" and run to the end of the line.
|
/bootable/recovery/tools/ota/ |
D | add-property-tag.c | 49 char *end; in remove_tag() local 50 int num = strtoul(pos + strlen(tag), &end, 10); in remove_tag() 51 strcpy(pos, end); in remove_tag() 57 const char *end = line + strlen(line); in write_tagged() local 58 while (end > line && isspace(end[-1])) --end; in write_tagged() 60 fprintf(out, "%.*s%s%d%s", end - line, line, tag, number, end); in write_tagged() 62 fprintf(out, "%.*s%s%s", end - line, line, tag, end); in write_tagged()
|
/bootable/recovery/minzip/ |
D | SysUtil.c | 49 off_t start, end; in getFileStartAndLength() local 56 end = lseek(fd, 0L, SEEK_END); in getFileStartAndLength() 59 if (start == (off_t) -1 || end == (off_t) -1) { in getFileStartAndLength() 64 length = end - start; in getFileStartAndLength()
|
/bootable/recovery/updater/ |
D | install.c | 386 char* end; in SetPermFn() local 389 int uid = strtoul(args[0], &end, 0); in SetPermFn() 390 if (*end != '\0' || args[0][0] == 0) { in SetPermFn() 395 int gid = strtoul(args[1], &end, 0); in SetPermFn() 396 if (*end != '\0' || args[1][0] == 0) { in SetPermFn() 402 int dir_mode = strtoul(args[2], &end, 0); in SetPermFn() 403 if (*end != '\0' || args[2][0] == 0) { in SetPermFn() 408 int file_mode = strtoul(args[3], &end, 0); in SetPermFn() 409 if (*end != '\0' || args[3][0] == 0) { in SetPermFn() 419 int mode = strtoul(args[2], &end, 0); in SetPermFn() [all …]
|
/bootable/diskinstaller/libdiskconfig/ |
D | diskconfig.h | 62 struct chs end; /* bytes 5-7 */ member
|
D | config_mbr.c | 38 memset(&pentry->end, 0xff, sizeof(struct chs)); in cfg_pentry() 42 memset(&pentry->end, 0, sizeof(struct chs)); in cfg_pentry()
|