Home
last modified time | relevance | path

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

12

/scripts/dtc/libfdt/
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()
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/
Dsorttable.c114 static uint32_t rbe(const uint32_t *x) in rbe()
119 static uint16_t r2be(const uint16_t *x) in r2be()
124 static uint64_t r8be(const uint64_t *x) in r8be()
129 static uint32_t rle(const uint32_t *x) in rle()
134 static uint16_t r2le(const uint16_t *x) in r2le()
139 static uint64_t r8le(const uint64_t *x) in r8le()
144 static void wbe(uint32_t val, uint32_t *x) in wbe()
149 static void w2be(uint16_t val, uint16_t *x) in w2be()
154 static void w8be(uint64_t val, uint64_t *x) in w8be()
159 static void wle(uint32_t val, uint32_t *x) in wle()
[all …]
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()
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
/scripts/kconfig/lxdialog/
Dyesno.c16 int x = width / 2 - 10; in print_buttons() local
31 int i, x, y, key = 0, button = 0; in dialog_yesno() local
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
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
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
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()
407 void print_button(WINDOW * win, const char *label, int y, int x, int selected) in print_button()
437 draw_box(WINDOW * win, int y, int x, int height, int width, in draw_box()
471 void draw_shadow(WINDOW * win, int y, int x, int height, int width) in draw_shadow()
/scripts/gdb/linux/
Dvmalloc.py17 def is_vmalloc_addr(x): argument
Dslab.py75 def oo_objects(x): argument
78 def oo_order(x): argument
88 def swab64(x): argument
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/gendwarfksyms/examples/
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/gcc-plugins/
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
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
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
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
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/
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()
Dmodpost.h55 #define bswap(x) \ argument
65 #define TO_NATIVE(x) \ argument
/scripts/kconfig/
Dnconf.gui.c168 int x, y; in fill_window() local
207 int i, x, y; in btn_dialog() local
319 int i, x, y, lines, columns, win_lines, win_cols; in dialog_inputbox() local
516 int x, y, lines, columns; in show_scroll_win_ext() local
/scripts/dtc/
Dutil.h29 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) argument
Ddtc.c26 static int is_power_of_2(int x) in is_power_of_2()
Dutil.c157 char x[4]; in get_oct_char() local
180 char x[3]; in get_hex_char() local

12