Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 33) sorted by relevance

12

/scripts/dtc/libfdt/
A Dlibfdt_env.h29 #define EXTRACT_BYTE(x, n) ((unsigned long long)((uint8_t *)&x)[n]) argument
30 #define CPU_TO_FDT16(x) ((EXTRACT_BYTE(x, 0) << 8) | EXTRACT_BYTE(x, 1)) argument
31 #define CPU_TO_FDT32(x) ((EXTRACT_BYTE(x, 0) << 24) | (EXTRACT_BYTE(x, 1) << 16) | \ argument
33 #define CPU_TO_FDT64(x) ((EXTRACT_BYTE(x, 0) << 56) | (EXTRACT_BYTE(x, 1) << 48) | \ argument
38 static inline uint16_t fdt16_to_cpu(fdt16_t x) in fdt16_to_cpu()
42 static inline fdt16_t cpu_to_fdt16(uint16_t x) in cpu_to_fdt16()
47 static inline uint32_t fdt32_to_cpu(fdt32_t x) in fdt32_to_cpu()
51 static inline fdt32_t cpu_to_fdt32(uint32_t x) in cpu_to_fdt32()
56 static inline uint64_t fdt64_to_cpu(fdt64_t x) in fdt64_to_cpu()
60 static inline fdt64_t cpu_to_fdt64(uint64_t x) in cpu_to_fdt64()
A Dlibfdt_internal.h10 #define FDT_ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) argument
11 #define FDT_TAGALIGN(x) (FDT_ALIGN((x), FDT_TAGSIZE)) argument
/scripts/kconfig/lxdialog/
A Dyesno.c16 int x = width / 2 - 10; in print_buttons() local
31 int i, x, y, key = 0, button = 0; in dialog_yesno() local
A Dchecklist.c53 int y, int x, int height) in print_arrows()
90 int x = width / 2 - 11; in print_buttons() local
107 int i, x, y, box_x, box_y; in dialog_checklist() local
A Dinputbox.c18 int x = width / 2 - 11; in print_buttons() local
34 int i, x, y, box_y, box_x, box_width; in dialog_inputbox() local
A Dmenubox.c90 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows()
136 int x = width / 2 - 28; in print_buttons() local
166 int i, j, x, y, box_x, box_y; in dialog_menu() local
A Dutil.c314 void end_dialog(int x, int y) in end_dialog()
342 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x) in print_autowrap()
406 void print_button(WINDOW * win, const char *label, int y, int x, int selected) in print_button()
436 draw_box(WINDOW * win, int y, int x, int height, int width, in draw_box()
470 void draw_shadow(WINDOW * win, int y, int x, int height, int width) in draw_shadow()
/scripts/
A Drust_is_available_bindgen_libclang_concat.h2 #define F(x) int x##x argument
A Drecordmcount.c373 static uint64_t w8rev(uint64_t const x) in w8rev()
385 static uint32_t w4rev(uint32_t const x) in w4rev()
393 static uint32_t w2rev(uint16_t const x) in w2rev()
399 static uint64_t w8nat(uint64_t const x) in w8nat()
404 static uint32_t w4nat(uint32_t const x) in w4nat()
409 static uint32_t w2nat(uint16_t const x) in w2nat()
A Dinsert-sys-cert.c70 Elf_Shdr *x; in get_offset_from_address() local
138 Elf_Shdr *x; in find_elf_symbol() local
163 Elf_Shdr *x; in get_symbol_from_table() local
186 Elf_Shdr *x; in get_symbol_table() local
A Dsorttable.c347 static uint32_t rbe(const uint32_t *x) in rbe()
352 static uint16_t r2be(const uint16_t *x) in r2be()
357 static uint64_t r8be(const uint64_t *x) in r8be()
362 static uint32_t rle(const uint32_t *x) in rle()
367 static uint16_t r2le(const uint16_t *x) in r2le()
372 static uint64_t r8le(const uint64_t *x) in r8le()
377 static void wbe(uint32_t val, uint32_t *x) in wbe()
382 static void wle(uint32_t val, uint32_t *x) in wle()
387 static void w8be(uint64_t val, uint64_t *x) in w8be()
392 static void w8le(uint64_t val, uint64_t *x) in w8le()
/scripts/gendwarfksyms/examples/
A Dkabi.h23 #define __aligned(x) __attribute__((__aligned__(x))) argument
36 #define __stringify_1(x...) #x argument
37 #define __stringify(x...) __stringify_1(x) argument
/scripts/gdb/linux/
A Dvmalloc.py17 def is_vmalloc_addr(x): argument
A Dslab.py75 def oo_objects(x): argument
78 def oo_order(x): argument
88 def swab64(x): argument
A Dmm.py236 def __pa_symbol_nodebug(self, x): argument
239 def __phys_addr_symbol(self, x): argument
245 def __pa_symbol(self, x): argument
257 def sym_to_pfn(self, x): argument
/scripts/gcc-plugins/
A Dgcc-generate-gimple-pass.h24 #define _GCC_PLUGIN_CONCAT2(x, y) x ## y argument
25 #define _GCC_PLUGIN_CONCAT3(x, y, z) x ## y ## z argument
A Dgcc-generate-rtl-pass.h24 #define _GCC_PLUGIN_CONCAT2(x, y) x ## y argument
25 #define _GCC_PLUGIN_CONCAT3(x, y, z) x ## y ## z argument
A Dgcc-generate-simple_ipa-pass.h24 #define _GCC_PLUGIN_CONCAT2(x, y) x ## y argument
25 #define _GCC_PLUGIN_CONCAT3(x, y, z) x ## y ## z argument
A Dgcc-generate-ipa-pass.h32 #define _GCC_PLUGIN_CONCAT2(x, y) x ## y argument
33 #define _GCC_PLUGIN_CONCAT3(x, y, z) x ## y ## z argument
A Drandomize_layout_plugin.c125 #define rot(x,k) (((x)<<(k))|((x)>>(64-(k)))) argument
126 static u64 ranval(ranctx *x) { in ranval()
135 static void raninit(ranctx *x, u64 *seed) { in raninit()
193 unsigned long i, x, index; in performance_shuffle() local
/scripts/mod/
A Dsumversion.c48 static inline uint32_t lshift(uint32_t x, unsigned int s) in lshift()
54 static inline uint32_t F(uint32_t x, uint32_t y, uint32_t z) in F()
59 static inline uint32_t G(uint32_t x, uint32_t y, uint32_t z) in G()
64 static inline uint32_t H(uint32_t x, uint32_t y, uint32_t z) in H()
/scripts/kconfig/
A Dnconf.gui.c168 int x, y; in fill_window() local
207 int i, x, y; in btn_dialog() local
328 int i, x, y, lines, columns, win_lines, win_cols; in dialog_inputbox() local
525 int x, y, lines, columns; in show_scroll_win_ext() local
/scripts/dtc/
A Dutil.h29 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) argument
A Ddtc.c26 static int is_power_of_2(int x) in is_power_of_2()
A Dutil.c157 char x[4]; in get_oct_char() local
180 char x[3]; in get_hex_char() local

Completed in 27 milliseconds

12