HomeSort by: relevance | last modified time | path
    Searched defs:syms (Results 1 - 7 of 7) sorted by relevancy

  /src/tests/lib/libexecinfo/
t_backtrace_sandbox.c 42 char **syms; local in function:ATF_TC_BODY
50 syms = backtrace_symbols_fmt(addr, frames, "%n");
51 ATF_REQUIRE(strcmp(syms[0], "atfu_backtrace_sandbox_body") == 0);
66 syms = backtrace_symbols_fmt(addr, frames, "%n");
67 if (strcmp(syms[0], "atfu_backtrace_sandbox_body") != 0)
  /src/games/dab/
box.cc 48 const int BOX::syms[BOX::last] = member in class:BOX
114 _b.data(_centery + edges[e].y, _centerx + edges[e].x) = syms[e];
box.h 83 static const int syms[BOX::last]; member in class:BOX
  /src/usr.sbin/tprof/
ksyms.c 46 static struct sym **syms = NULL; variable in typeref:struct:sym **
129 syms = erealloc(syms, sizeof(*syms) * nsyms);
130 syms[nsyms - 1] = sym;
134 qsort(syms, nsyms, sizeof(*syms), compare_value);
137 return syms;
150 * try to find the smallest i for which syms[i]->value <= value.
151 * syms[] is ordered by syms[]->value in the descending order
    [all...]
  /src/common/dist/zlib/examples/
enough.c 125 syms: number of symbols remaining to code
131 syms: 3..totsym (totsym == total symbols to code)
132 left: 2..syms - 1, but only the evens (so syms == 8 -> 2, 4, 6)
135 syms == 2 is not saved since that immediately leads to a single code. left
138 ends at syms-1 since left == syms immediately results in a single code.
143 one (syms) being outermost, and the last one (len) being innermost. We build
144 the array with length max-1 lists for the len index, with syms-3 of those
156 to the num[] array as described above for the (syms, left, len) triplet
506 int syms = 286; local in function:main
    [all...]
  /src/sys/arch/hpcmips/vr/
vrgiu.c 310 char syms[] = "iiiiiiiilhLHeeEEoooooooooooooooo" local in function:vrgiu_dump_iosetting
328 printf ("%c", syms[
  /src/usr.bin/xlint/lint1/
lex.c 293 struct syms { struct
300 syms_add(struct syms *syms, const sym_t *sym)
302 if (syms->len >= syms->cap) {
303 syms->cap *= 2;
304 syms->items = xrealloc(syms->items,
305 syms->cap * sizeof(syms->items[0]))
313 struct syms syms = { xcalloc(64, sizeof(syms.items[0])), 0, 64 }; local in function:debug_symtab
    [all...]

Completed in 19 milliseconds