/tools/binman/test/ |
A D | elf_sections.c | 10 int __attribute__((section(".sram_code"))) calculate(int x) in calculate() argument 12 data[0] = x; in calculate() 14 return x * x; in calculate()
|
A D | key.pem | 22 Ajk7ew/32RGOgA/oIzgKj1SPkBtvW+x+76sjUkGKsxmABBUhycIY7K0U8McTTfJ7
|
/tools/ |
A D | img2srec.c | 133 uint16_t x; in ExtractWord() local 134 x = (uint16_t)*buffer++; in ExtractWord() 135 x = (x<<8) + (uint16_t)*buffer++; in ExtractWord() 136 *value = x; in ExtractWord() 142 uint32_t x; in ExtractLong() local 143 x = (uint32_t)*buffer++; in ExtractLong() 144 x = (x<<8) + (uint32_t)*buffer++; in ExtractLong() 145 x = (x<<8) + (uint32_t)*buffer++; in ExtractLong() 146 x = (x<<8) + (uint32_t)*buffer++; in ExtractLong() 147 *value = x; in ExtractLong()
|
A D | imagetool.h | 28 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) argument 30 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument 31 #define ALIGN(x, a) __ALIGN_MASK((x), (typeof(x))(a) - 1) argument
|
A D | eficapsule.h | 22 #define __aligned(x) __attribute__((__aligned__(x))) argument 25 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) argument
|
A D | bmp_logo.c | 27 static uint16_t le_short(uint16_t x) in le_short() argument 30 uint8_t *p = (uint8_t *)(&x); in le_short() 77 int mode, i, x; in main() local 168 x=fgetc(fp); in main() 205 for (x = 0; x < b->width; x++) { in main() 206 b->data[i + x] = (uint8_t)fgetc(fp) in main()
|
A D | mxsimage.h | 16 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) argument 17 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) argument
|
A D | prelink-riscv.inc | 11 #define CONCAT_IMPL(x, y) x##y 12 #define CONCAT(x, y) CONCAT_IMPL(x, y) 13 #define CONCAT3(x, y, z) CONCAT(CONCAT(x, y), z)
|
A D | rkmux.py | 29 [x.strip() for x in cols]) 91 bit_high, bit_low = [int(x) for x in regfield.bits.split(':')]
|
A D | efivar.py | 111 return ''.join([chr(x) for x in name.encode('utf_16_le') if x]), i + 2 243 print(" "+str(var.guid)+' '+''.join([x for x in var_guids if str(var.guid) == var_guids[x]])) 244 …print(" "+'|'.join([x for x in var_attrs if var.attrs & var_attrs[x]])+", DataSize = %s"%hex(va…
|
A D | mxsboot.c | 17 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) argument 18 #define round_down(x, y) ((x) & ~__round_mask(x, y)) argument
|
A D | imx8mimage.c | 34 #define ALIGN_IMX(x, a) __ALIGN_MASK_IMX((x), (__typeof__(x))(a) - 1, a) argument 35 #define __ALIGN_MASK_IMX(x, mask, mask2) (((x) + (mask)) / (mask2) * (mask2)) argument
|
A D | pblimage.c | 11 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) argument
|
A D | renesas_spkgimage.c | 214 static inline uint32_t roundup(uint32_t x, uint32_t y) in roundup() argument 216 return ((x + y - 1) / y) * y; in roundup()
|
A D | proftool.c | 39 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument 40 #define ALIGN(x, a) __ALIGN_MASK((x), (typeof(x))(a) - 1) argument
|
A D | ifwitool.c | 24 #define min(x, y) ({ \ argument 25 typeof(x) _min1 = (x); \ 30 #define max(x, y) ({ \ argument 31 typeof(x) _max1 = (x); \
|
A D | asn1_compiler.c | 1441 struct element *ec, *x; in render_element() local 1497 x = tag ?: e; in render_element() 1498 if (x->name) in render_element() 1499 render_more(out, "\t\t// %s", x->name->content); in render_element()
|
/tools/patman/ |
A D | get_maintainer.py | 64 return [x.replace('"', '') for x in lines]
|
A D | database.py | 349 return [x[0] for x in res.fetchall()] 589 return [SerVer(*x) for x in recs] 620 return [SerVer(*x) for x in items] 698 vals = ', '.join([str(x) for x in svid_list])
|
A D | series.py | 378 for x in sorted(all_skips): 387 cc_list = '\0'.join([x for x in sorted(cover_cc)])
|
/tools/dtoc/test/ |
A D | dtoc_test_simple.dts | 65 args = "-n first", "second", "-p", "123,456", "-x"; 67 args3 = "-n first second -p 123,456 -x";
|
/tools/u_boot_pylib/ |
A D | gitutil.py | 430 return [x for email in result for x in (tag, email)] 555 return' '.join([f'"{x}"' if ' ' in x and '"' not in x else x 556 for x in cmd])
|
/tools/binman/ |
A D | elf.py | 89 return OrderedDict(sorted(syms.items(), key=lambda x: x[1].address)) 173 return OrderedDict(sorted(syms.items(), key=lambda x: x[1].address))
|
/tools/env/ |
A D | fw_env.config | 7 # Device offset must be prefixed with 0x to be parsed as a hexadecimal value.
|
/tools/buildman/ |
A D | control.py | 614 procs = [int(x) for x in items]
|