HomeSort by relevance Sort by last modified time
    Searched refs:fn_entries (Results 1 - 2 of 2) sorted by null

  /external/valgrind/main/callgrind/
context.c 284 Int fn_entries; local
302 fn_entries = CLG_(current_fn_stack).top - CLG_(current_fn_stack).bottom;
303 if (fn_entries == CLG_(current_fn_stack).size-1) {
311 CLG_(current_fn_stack).top = new_array + fn_entries;
  /bootable/recovery/edify/
expr.c 349 static int fn_entries = 0; variable
354 if (fn_entries >= fn_size) {
358 fn_table[fn_entries].name = name;
359 fn_table[fn_entries].fn = fn;
360 ++fn_entries;
370 qsort(fn_table, fn_entries, sizeof(NamedFunction), fn_entry_compare);
376 NamedFunction* nf = bsearch(&key, fn_table, fn_entries,

Completed in 188 milliseconds