Home
last modified time | relevance | path

Searched refs:mask (Results 1 – 9 of 9) sorted by relevance

/scripts/gdb/linux/
Dcpus.py69 mask = None
71 mask = cpu_mask[mask_name]
72 if mask is None:
73 mask = gdb.parse_and_eval(mask_name + ".bits")
75 cpu_mask[mask_name] = mask
79 bits_per_entry = mask[0].type.sizeof * 8
80 num_entries = mask.type.sizeof * 8 / bits_per_entry
89 bits = mask[entry]
Dtimerlist.py150 def pr_cpumask(mask): argument
156 bits = mask['bits']
203 mask = gdb.parse_and_eval("tick_broadcast_mask")
204 mask = pr_cpumask(mask)
205 text += "tick_broadcast_mask: {}\n".format(mask)
207 mask = gdb.parse_and_eval("tick_broadcast_oneshot_mask")
208 mask = pr_cpumask(mask)
209 text += "tick_broadcast_oneshot_mask: {}\n".format(mask)
/scripts/dtc/libfdt/
Dlibfdt_internal.h184 static inline bool can_assume_(int mask) in can_assume_() argument
186 return FDT_ASSUME_MASK & mask; in can_assume_()
/scripts/gcc-plugins/
Dlatent_entropy_plugin.c118 unsigned long long mask; in tree_get_random_const() local
120 mask = 1ULL << (TREE_INT_CST_LOW(TYPE_SIZE(type)) - 1); in tree_get_random_const()
121 mask = 2 * (mask - 1) + 1; in tree_get_random_const()
124 return build_int_cstu(type, mask & get_random_const()); in tree_get_random_const()
125 return build_int_cst(type, mask & get_random_const()); in tree_get_random_const()
/scripts/dtc/
Ddtc-parser.y398 uint64_t mask = (1ULL << $1.bits) - 1; variable
407 if (($2 > mask) && (($2 | mask) != -1ULL)) {
412 loc, $2, $1.bits / 4, ($2 & mask));
/scripts/mod/
Dfile2alias.c1108 unsigned int nibble, unsigned int mask) in append_nibble_mask() argument
1113 switch (mask) { in append_nibble_mask()
1131 if ((i & mask) == nibble) in append_nibble_mask()
1155 DEF_FIELD(symval, amba_id, mask); in do_amba_entry()
1157 if ((id & mask) != id) in do_amba_entry()
1159 filename, id, mask); in do_amba_entry()
1165 (mask >> (4 * (7 - digit))) & 0xf); in do_amba_entry()
Ddevicetable-offsets.c183 DEVID_FIELD(amba_id, mask); in main()
/scripts/kconfig/
Dparser.y17 #define printd(mask, fmt...) if (cdebug & (mask)) printf(fmt) argument
Dgconf.c111 GdkBitmap *mask; in replace_button_icon() local
115 pixmap = gdk_pixmap_create_from_xpm_d(window, &mask, in replace_button_icon()
120 image = gtk_image_new_from_pixmap(pixmap, mask); in replace_button_icon()