Searched refs:s (Results 1 – 13 of 13) sorted by relevance
/bootable/recovery/minadbd/ |
D | services.cpp | 66 int s[2]; in create_service_thread() local 67 if(adb_socketpair(s)) { in create_service_thread() 76 sti->fd = s[1]; in create_service_thread() 81 adb_close(s[0]); in create_service_thread() 82 adb_close(s[1]); in create_service_thread() 87 D("service thread started, %d:%d\n",s[0], s[1]); in create_service_thread() 88 return s[0]; in create_service_thread()
|
/bootable/recovery/edify/ |
D | parser.y | 29 void yyerror(Expr** root, int* error_count, const char* s); 128 void yyerror(Expr** root, int* error_count, const char* s) { 129 if (strlen(s) == 0) { 130 s = "syntax error"; 132 printf("line %d col %d: %s\n", gLine, gColumn, s);
|
D | README | 43 - There's no distinction between quoted and unquoted strings; the 86 second argument only if it's needed to determine the truth of the
|
D | expr.c | 31 int BooleanString(const char* s) { in BooleanString() argument 32 return s[0] != '\0'; in BooleanString()
|
/bootable/recovery/applypatch/ |
D | bsdiff.c | 232 off_t s,Sf,lenf,Sb,lenb; in bsdiff() local 304 s=0;Sf=0;lenf=0; in bsdiff() 306 if(old[lastpos+i]==new[lastscan+i]) s++; in bsdiff() 308 if(s*2-i>Sf*2-lenf) { Sf=s; lenf=i; }; in bsdiff() 313 s=0;Sb=0; in bsdiff() 315 if(old[pos-i]==new[scan-i]) s++; in bsdiff() 316 if(s*2-i>Sb*2-lenb) { Sb=s; lenb=i; }; in bsdiff() 322 s=0;Ss=0;lens=0; in bsdiff() 325 old[lastpos+lenf-overlap+i]) s++; in bsdiff() 327 old[pos-lenb+i]) s--; in bsdiff() [all …]
|
D | imgdiff_test.sh | 61 stat -c %s $1 | tr -d '\n'
|
D | applypatch.sh | 105 NEW_SIZE=$(stat -c %s $DATA_DIR/new.file)
|
/bootable/recovery/fonts/ |
D | OFL.txt | 30 Holder(s) under this license and clearly marked as such. This may 34 copyright statement(s). 37 distributed by the Copyright Holder(s). 64 Name(s) unless explicit written permission is granted by the corresponding 68 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 70 Modified Version, except to acknowledge the contribution(s) of the 71 Copyright Holder(s) and the Author(s) or with their explicit written
|
/bootable/recovery/minui/ |
D | minui.h | 48 void gr_text(int x, int y, const char *s, bool bold); 50 int gr_measure(const char *s);
|
D | graphics.cpp | 63 int gr_measure(const char *s) in gr_measure() argument 65 return gr_font->cwidth * strlen(s); in gr_measure() 106 void gr_text(int x, int y, const char *s, bool bold) in gr_text() argument 118 while ((ch = *s++)) { in gr_text()
|
/bootable/recovery/ |
D | verifier.cpp | 271 p256_int r, s; in verify_file() local 272 if (!dsa_sig_unpack(sig_der, sig_der_length, &r, &s)) { in verify_file() 280 &p256_hash, &r, &s)) { in verify_file()
|
D | NOTICE | 93 Contribution(s) alone or by combination of their Contribution(s) 94 with the Work to which such Contribution(s) was submitted. If You
|
/bootable/recovery/updater/ |
D | blockimg.c | 1505 static unsigned int HashString(const char *s) { in HashString() argument 1507 if (s) { in HashString() 1508 while (*s) { in HashString() 1509 hash = hash * 33 + *s++; in HashString()
|