/bootable/bootloader/legacy/libc/ |
D | strcmp.c | 29 int strcmp(const char *a, const char *b) in strcmp() argument 31 while(*a && *b) { in strcmp() 32 if(*a++ != *b++) return 1; in strcmp() 34 if(*a || *b) return 1; in strcmp()
|
D | rsa.c | 33 static void subM(RSAPublicKey *key, uint32_t *a) { in subM() argument 37 A += (uint64_t)a[i] - key->n[i]; in subM() 38 a[i] = (uint32_t)A; in subM() 44 static int geM(RSAPublicKey *key, const uint32_t *a) { in geM() argument 48 if (a[i] < key->n[i]) return 0; in geM() 49 if (a[i] > key->n[i]) return 1; in geM() 57 const uint32_t a, in montMulAdd() argument 59 uint64_t A = (uint64_t)a * b[0] + c[0]; in montMulAdd() 65 A = (A >> 32) + (uint64_t)a * b[i] + c[i]; in montMulAdd() 82 const uint32_t* a, in montMul() argument [all …]
|
D | memcmp.c | 31 char *a = _a; in memcmp() local 35 if(*a++ != *b++) return 1; in memcmp()
|
/bootable/bootloader/legacy/ |
D | README | 2 The bootloader environment consists of a set of libraries that provide 3 various features and a couple small driver programs that build against 6 (containing code useful to a specific cpu, system-on-chip, etc), and 7 board (containing code useful to a single specific device) 17 boot/libboot libboot.a 18 boot/libc libboot_c.a 19 boot/arch_armv6 libboot_arch_armv6.a 24 partner/semi/boot/arch_65002 liboot_arch_65002.a 29 partner/oem/brick/boot libboot_board_brick.a 39 libboot_board_brick.a \ [all …]
|
D | fastboot_protocol.txt | 5 The fastboot protocol is a mechanism for communicating with bootloaders 7 allow it to be used across a wide range of devices and from hosts running 24 1. Host sends a command, which is an ascii string in a single 27 2. Client response with a single packet no greater than 64 bytes. 32 a. INFO -> the remaining 60 bytes are an informative message 37 of the response (if present) provide a textual failure message 53 4. Client responds with a single packet no greater than 64 bytes. 57 a. INFO -> display the remaining 60 bytes and return to #4 59 b. FAIL -> display the remaining 60 bytes (if present) as a failure 92 Host: "powerdown" send a command [all …]
|
/bootable/recovery/edify/ |
D | README | 1 Update scripts (from donut onwards) are written in a new little 3 the old one ("amend"). This is a brief overview of the new language. 5 - The entire script is a single expression. 22 - When used as a boolean, the empty string is "false" and all other 33 - ";" is a binary operator; evaluating it just means to first evaluate 48 "a b" 49 a + " " + b 50 "a" + " " + "b" 51 "a\x20b" 52 a + "\x20b" [all …]
|
D | lexer.l | 66 \\x[0-9a-fA-F]{2} { 93 [a-zA-Z0-9_:/.]+ {
|
D | expr.c | 337 static int fn_entry_compare(const void* a, const void* b) { in fn_entry_compare() argument 338 const char* na = ((const NamedFunction*)a)->name; in fn_entry_compare()
|
/bootable/bootloader/legacy/arch_msm7k/ |
D | uart.c | 35 #define uwr(v,a) writel(v, uart_base + (a)) argument 36 #define urd(a) readl(uart_base + (a)) argument
|
/bootable/recovery/ |
D | NOTICE | 44 transformation or translation of a Source form, including but 49 Object form, made available under the License, as indicated by a 56 represent, as a whole, an original work of authorship. For the purposes 73 designated in writing by the copyright owner as "Not a Contribution." 76 on behalf of whom a Contribution has been received by Licensor and 80 this License, each Contributor hereby grants to You a perpetual, 87 this License, each Contributor hereby grants to You a perpetual, 95 institute patent litigation against any entity (including a 96 cross-claim or counterclaim in a lawsuit) alleging that the Work 97 or a Contribution incorporated within the Work constitutes direct [all …]
|
/bootable/recovery/minui/ |
D | minui.h | 31 void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
|
D | resources.c | 134 unsigned char a = 0xff; in res_create_surface() local 138 pRow[dx + 3] = a; in res_create_surface()
|
D | graphics.c | 139 void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a) in gr_color() argument 146 color[3] = ((a << 8) | a) + 1; in gr_color()
|
/bootable/bootloader/legacy/include/boot/ |
D | boot.h | 94 int memcmp(const void *a, const void *b, unsigned len);
|