Home
last modified time | relevance | path

Searched refs:loc (Results 1 – 5 of 5) sorted by relevance

/scripts/gdb/linux/
Dslab.py112 for loc in loc_track:
113 if loc['addr'] == addr and loc['handle'] == handle and loc['waste'] == waste:
114 return loc
128 loc = loc_exist(loc_track, addr, handle, waste)
129 if loc:
130 loc['count'] += 1
132 loc['sum_time'] += age
133 loc['min_time'] = min(loc['min_time'], age)
134 loc['max_time'] = max(loc['max_time'], age)
135 loc['min_pid'] = min(loc['min_pid'], pid)
[all …]
/scripts/
Dsorttable.c224 uint32_t *loc = (uint32_t *)(extab_image + i); in sort_relative_table() local
225 w(r(loc) + i, loc); in sort_relative_table()
234 uint32_t *loc = (uint32_t *)(extab_image + i); in sort_relative_table() local
235 w(r(loc) - i, loc); in sort_relative_table()
245 uint32_t *loc = (uint32_t *)(extab_image + i); in sort_relative_table_with_data() local
247 w(r(loc) + i, loc); in sort_relative_table_with_data()
248 w(r(loc + 1) + i + 4, loc + 1); in sort_relative_table_with_data()
258 uint32_t *loc = (uint32_t *)(extab_image + i); in sort_relative_table_with_data() local
260 w(r(loc) - i, loc); in sort_relative_table_with_data()
261 w(r(loc + 1) - (i + 4), loc + 1); in sort_relative_table_with_data()
/scripts/dtc/
Ddtc-parser.y16 #define ERROR(loc, ...) \ argument
18 srcpos_error((loc), "Error", __VA_ARGS__); \
408 char *loc = srcpos_string(&@2); variable
412 loc, $2, $1.bits / 4, ($2 & mask));
413 free(loc);
/scripts/mod/
Dmodpost.c1276 static Elf_Addr addend_arm_rel(void *loc, Elf_Sym *sym, unsigned int r_type) in addend_arm_rel() argument
1284 inst = TO_NATIVE(*(uint32_t *)loc); in addend_arm_rel()
1288 inst = TO_NATIVE(*(uint32_t *)loc); in addend_arm_rel()
1295 inst = TO_NATIVE(*(uint32_t *)loc); in addend_arm_rel()
1300 upper = TO_NATIVE(*(uint16_t *)loc); in addend_arm_rel()
1301 lower = TO_NATIVE(*((uint16_t *)loc + 1)); in addend_arm_rel()
1318 upper = TO_NATIVE(*(uint16_t *)loc); in addend_arm_rel()
1319 lower = TO_NATIVE(*((uint16_t *)loc + 1)); in addend_arm_rel()
1342 upper = TO_NATIVE(*(uint16_t *)loc); in addend_arm_rel()
1343 lower = TO_NATIVE(*((uint16_t *)loc + 1)); in addend_arm_rel()
[all …]
/scripts/gcc-plugins/
Drandomize_layout_plugin.c29 #define INFORM(loc, msg, ...) inform(loc, "randstruct: " msg, ##__VA_ARGS__) argument
30 #define MISMATCH(loc, how, ...) INFORM(loc, "casting between randomized structure pointer types (" … argument