Home
last modified time | relevance | path

Searched refs:b (Results 1 – 12 of 12) sorted by relevance

/bootable/recovery/edify/
DREADME48 "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"
Dexpr.c147 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/
Dmake-overlay.py52 b = base.getpixel((i,j)) variable
54 if b != t:
Drecovery.cpp602 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()
DNOTICE110 (b) You must cause any modified files to carry prominent notices
/bootable/recovery/minui/
Dminui.h38 void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
Dgraphics.c204 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()
Dresources.c151 unsigned char b = pRow[sx + 2]; in res_create_surface() local
155 pRow[dx + 2] = b; // b in res_create_surface()
/bootable/recovery/applypatch/
Dimgdiff.c169 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()
Dapplypatch.c111 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()
Dapplypatch.sh294 run_command ls /cache/recovery/otatest/b.file && fail # was deleted
/bootable/recovery/minadbd/
Dtransport.c107 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()