Searched refs:func_count (Results 1 – 3 of 3) sorted by relevance
/external/u-boot/lib/ |
D | trace.c | 19 int func_count; /* Total number of function call sites */ member 105 if (func < hdr->func_count) { in __cyg_profile_func_enter() 161 for (func = upto = 0; func < hdr->func_count; func++) { in trace_list_functions() 247 print_grouped_ull(hdr->func_count, 10); in trace_print_stats() 281 ulong func_count = gd->mon_len / FUNC_SITE_SIZE; in trace_init() local 309 needed = sizeof(*hdr) + func_count * sizeof(uintptr_t); in trace_init() 318 hdr->func_count = func_count; in trace_init() 336 ulong func_count = gd->mon_len / FUNC_SITE_SIZE; in trace_early_init() local 345 needed = sizeof(*hdr) + func_count * sizeof(uintptr_t); in trace_early_init() 354 hdr->func_count = func_count; in trace_early_init()
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | gl_gentable.py | 202 func_count = 0 205 func_count += 1 208 funcnames = [None] * func_count 217 for i in xrange(0, func_count): 221 print "#define GLAPI_TABLE_COUNT %d" % func_count 223 for i in xrange(0, func_count):
|
/external/u-boot/tools/ |
D | proftool.c | 55 int func_count; variable 113 for (linenum = 1, alloced = func_count = 0;; linenum++) { in read_system_map() 133 if (func_count == alloced) { in read_system_map() 139 if (!func_count) in read_system_map() 142 func = &func_list[func_count++]; in read_system_map() 149 if (func_count > 1) in read_system_map() 152 notice("%d functions found in map file\n", func_count); in read_system_map() 176 found = bsearch(&key, func_list, func_count, sizeof(struct func_info), in find_func_by_offset() 190 high = func_count - 1; in find_caller_by_offset() 316 for (func = func_list, end = func + func_count; func < end; func++) { in check_trace_config_line() [all …]
|