Home
last modified time | relevance | path

Searched refs:x (Results 1 – 25 of 38) sorted by relevance

12

/tools/binman/test/
A Delf_sections.c10 int __attribute__((section(".sram_code"))) calculate(int x) in calculate() argument
12 data[0] = x; in calculate()
14 return x * x; in calculate()
A Dkey.pem22 Ajk7ew/32RGOgA/oIzgKj1SPkBtvW+x+76sjUkGKsxmABBUhycIY7K0U8McTTfJ7
/tools/
A Dimg2srec.c133 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 Dimagetool.h28 #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 Deficapsule.h22 #define __aligned(x) __attribute__((__aligned__(x))) argument
25 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) argument
A Dbmp_logo.c27 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 Dmxsimage.h16 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) argument
17 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) argument
A Dprelink-riscv.inc11 #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 Drkmux.py29 [x.strip() for x in cols])
91 bit_high, bit_low = [int(x) for x in regfield.bits.split(':')]
A Defivar.py111 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 Dmxsboot.c17 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) argument
18 #define round_down(x, y) ((x) & ~__round_mask(x, y)) argument
A Dimx8mimage.c34 #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 Dpblimage.c11 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) argument
A Drenesas_spkgimage.c214 static inline uint32_t roundup(uint32_t x, uint32_t y) in roundup() argument
216 return ((x + y - 1) / y) * y; in roundup()
A Dproftool.c39 #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) argument
40 #define ALIGN(x, a) __ALIGN_MASK((x), (typeof(x))(a) - 1) argument
A Difwitool.c24 #define min(x, y) ({ \ argument
25 typeof(x) _min1 = (x); \
30 #define max(x, y) ({ \ argument
31 typeof(x) _max1 = (x); \
A Dasn1_compiler.c1441 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 Dget_maintainer.py64 return [x.replace('"', '') for x in lines]
A Ddatabase.py349 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 Dseries.py378 for x in sorted(all_skips):
387 cc_list = '\0'.join([x for x in sorted(cover_cc)])
/tools/dtoc/test/
A Ddtoc_test_simple.dts65 args = "-n first", "second", "-p", "123,456", "-x";
67 args3 = "-n first second -p 123,456 -x";
/tools/u_boot_pylib/
A Dgitutil.py430 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 Delf.py89 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 Dfw_env.config7 # Device offset must be prefixed with 0x to be parsed as a hexadecimal value.
/tools/buildman/
A Dcontrol.py614 procs = [int(x) for x in items]

Completed in 38 milliseconds

12