Searched refs:b (Results 1 – 12 of 12) sorted by relevance
/bootable/recovery/edify/ |
D | README | 48 "a b" 49 a + " " + b 50 "a" + " " + "b" 53 concat(a, " ", "b") 54 "concat"(a, " ", "b") 59 ("con" + "cat")(a, " ", b) # syntax error! 102 concat(a;b;c, d, e;f) # evaluates to "cdf"
|
D | expr.c | 147 int b = BooleanString(v); in AssertFn() local 149 if (!b) { in AssertFn() 363 static int fn_entry_compare(const void* a, const void* b) { in fn_entry_compare() argument 365 const char* nb = ((const NamedFunction*)b)->name; in fn_entry_compare()
|
/bootable/recovery/ |
D | make-overlay.py | 52 b = base.getpixel((i,j)) variable 54 if b != t:
|
D | recovery.cpp | 602 static int compare_string(const void* a, const void* b) { in compare_string() argument 603 return strcmp(*(const char**)a, *(const char**)b); in compare_string()
|
D | NOTICE | 110 (b) You must cause any modified files to carry prominent notices
|
/bootable/recovery/minui/ |
D | minui.h | 38 void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
|
D | graphics.c | 204 void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a) in gr_color() argument 210 color[2] = ((b << 8) | b) + 1; in gr_color()
|
D | resources.c | 151 unsigned char b = pRow[sx + 2]; in res_create_surface() local 155 pRow[dx + 2] = b; // b in res_create_surface()
|
/bootable/recovery/applypatch/ |
D | imgdiff.c | 169 static int fileentry_compare(const void* a, const void* b) { in fileentry_compare() argument 171 int bo = ((ZipFileEntry*)b)->data_offset; in fileentry_compare() 690 int AreChunksEqual(ImageChunk* a, ImageChunk* b) { in AreChunksEqual() argument 691 if (a->type != b->type) return 0; in AreChunksEqual() 695 return a->len == b->len && memcmp(a->data, b->data, a->len) == 0; in AreChunksEqual() 698 return a->deflate_len == b->deflate_len && in AreChunksEqual() 699 memcmp(a->deflate_data, b->deflate_data, a->deflate_len) == 0; in AreChunksEqual()
|
D | applypatch.c | 111 static int compare_size_indices(const void* a, const void* b) { in compare_size_indices() argument 113 int bb = *(int*)b; in compare_size_indices()
|
D | applypatch.sh | 294 run_command ls /cache/recovery/otatest/b.file && fail # was deleted
|
/bootable/recovery/minadbd/ |
D | transport.c | 107 int b = (command >> (n*8)) & 255; in dump_packet() local 108 if (b < 32 || b >= 127) in dump_packet() 110 cmd[n] = (char)b; in dump_packet()
|