HomeSort by: relevance | last modified time | path
    Searched refs:thunk (Results 1 - 25 of 139) sorted by relevancy

1 2 3 4 5 6

  /src/external/gpl3/gdb.old/dist/gdb/guile/lib/gdb/
experimental.scm 31 (define-public (with-gdb-output-to-string thunk)
32 "Calls THUNK and returns all GDB output as a string."
34 (lambda (p) (with-gdb-output-to-port p thunk))))
  /src/external/gpl3/gdb/dist/gdb/guile/lib/gdb/
experimental.scm 31 (define-public (with-gdb-output-to-string thunk)
32 "Calls THUNK and returns all GDB output as a string."
34 (lambda (p) (with-gdb-output-to-port p thunk))))
  /src/external/gpl3/gcc/dist/gcc/config/i386/
winnt-cxx.cc 125 tree thunk; local
129 for (thunk = DECL_THUNKS (member); thunk;
130 thunk = TREE_CHAIN (thunk))
131 maybe_add_dllexport (thunk);
157 tree thunk; local
161 for (thunk = DECL_THUNKS (member); thunk;
162 thunk = DECL_CHAIN (thunk)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
winnt-cxx.cc 125 tree thunk; local
129 for (thunk = DECL_THUNKS (member); thunk;
130 thunk = TREE_CHAIN (thunk))
131 maybe_add_dllexport (thunk);
157 tree thunk; local
161 for (thunk = DECL_THUNKS (member); thunk;
162 thunk = DECL_CHAIN (thunk)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
x86-tdep.c 53 /* Check the indirect return thunk first. */
58 static const char thunk[] = "__x86_indirect_thunk"; local
59 static const size_t length = sizeof (thunk) - 1;
60 if (strncmp (name, thunk, length) != 0)
63 /* If that's the complete name, we're in the memory thunk. */
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
qsort.c 101 med3(char *a, char *b, char *c, cmp_t *cmp, void *thunk
107 return CMP(thunk, a, b) < 0 ?
108 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
109 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ));
114 rk_qsort_r(void *a, size_t n, size_t es, void *thunk, cmp_t *cmp)
116 #define thunk NULL
131 pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
142 pl = med3(pl, pl + d, pl + 2 * d, cmp, thunk);
    [all...]
  /src/sys/arch/usermode/usermode/
intr.c 35 #include <machine/thunk.h>
procfs_machdep.c 38 #include <machine/thunk.h>
db_memrw.c 70 #include <machine/thunk.h>
206 #include <machine/thunk.h>
process_machdep.c 86 #include <machine/thunk.h>
copy.c 37 #include <machine/thunk.h>
  /src/external/gpl3/gdb/dist/gdb/
x86-tdep.c 74 /* Check the indirect return thunk first. */
79 static const char thunk[] = "__x86_indirect_thunk"; local
80 static const size_t length = sizeof (thunk) - 1;
81 if (strncmp (name, thunk, length) != 0)
84 /* If that's the complete name, we're in the memory thunk. */
  /src/external/gpl3/binutils/dist/libctf/
ctf-decls.h 57 struct ctf_qsort_arg thunk = { compar, arg }; local
58 qsort_r (base, nmemb, size, &thunk, ctf_qsort_compar_thunk);
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-decls.h 57 struct ctf_qsort_arg thunk = { compar, arg }; local
58 qsort_r (base, nmemb, size, &thunk, ctf_qsort_compar_thunk);
  /src/external/gpl3/gcc/dist/gcc/
cgraphclones.cc 159 clone or its thunk. */
181 /* Duplicate thunk THUNK if necessary but make it to refer to NODE.
183 Function can return NODE if no thunk is necessary, which can happen when
184 thunk is this_adjusting but we are removing this parameter. */
187 duplicate_thunk_for_node (cgraph_node *thunk, cgraph_node *node)
190 thunk_of = thunk->callees->callee->ultimate_alias_target ();
192 if (thunk_of->thunk)
195 if (!DECL_ARGUMENTS (thunk->decl))
196 thunk->get_untransformed_body ()
294 cgraph_node *thunk = e->caller; local
    [all...]
ipa-comdats.cc 131 if (cn->thunk)
347 || !fun->thunk)
  /src/external/gpl3/gcc.old/dist/gcc/
cgraphclones.cc 156 clone or its thunk. */
178 /* Duplicate thunk THUNK if necessary but make it to refer to NODE.
180 Function can return NODE if no thunk is necessary, which can happen when
181 thunk is this_adjusting but we are removing this parameter. */
184 duplicate_thunk_for_node (cgraph_node *thunk, cgraph_node *node)
187 thunk_of = thunk->callees->callee->ultimate_alias_target ();
189 if (thunk_of->thunk)
192 if (!DECL_ARGUMENTS (thunk->decl))
193 thunk->get_untransformed_body ()
291 cgraph_node *thunk = e->caller; local
    [all...]
  /src/external/gpl3/gdb.old/dist/libctf/
ctf-decls.h 57 struct ctf_qsort_arg thunk = { compar, arg }; local
58 qsort_r (base, nmemb, size, &thunk, ctf_qsort_compar_thunk);
  /src/external/gpl3/gdb/dist/libctf/
ctf-decls.h 57 struct ctf_qsort_arg thunk = { compar, arg }; local
58 qsort_r (base, nmemb, size, &thunk, ctf_qsort_compar_thunk);
  /src/external/gpl3/gcc.old/dist/gcc/cp/
method.cc 50 /* Return a this or result adjusting thunk to FUNCTION. THIS_ADJUSTING
51 indicates whether it is a this or result adjusting thunk.
57 the returned thunk with finish_thunk. */
64 tree thunk;
81 /* See if we already have the thunk in question. For this_adjusting
84 for (thunk = DECL_THUNKS (function); thunk; thunk = DECL_CHAIN (thunk))
85 if (DECL_THIS_THUNK_P (thunk) == this_adjustin
63 tree thunk; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/
decl.cc 1814 /* Thunk code is based on g++. */
1862 /* Emit the definition of a D vtable thunk. */
1865 finish_thunk (tree thunk, tree function)
1868 int fixed_offset = -THUNK_LANG_OFFSET (thunk);
1879 DECL_EXTERNAL (thunk) = 0;
1883 TREE_ASM_WRITTEN (thunk) = 1;
1904 resolve_unique_section (thunk, 0, flag_function_sections);
1906 /* Output the thunk into the same section as function. */
1907 set_decl_section_name (thunk, fn);
1908 symtab_node::get (thunk)->implicit_sectio
1972 tree thunk = build_decl (DECL_SOURCE_LOCATION (function), local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
method.cc 50 /* Return a this or result adjusting thunk to FUNCTION. THIS_ADJUSTING
51 indicates whether it is a this or result adjusting thunk.
57 the returned thunk with finish_thunk. */
64 tree thunk;
81 /* See if we already have the thunk in question. For this_adjusting
84 for (thunk = DECL_THUNKS (function); thunk; thunk = DECL_CHAIN (thunk))
85 if (DECL_THIS_THUNK_P (thunk) == this_adjustin
63 tree thunk; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/
qsort.d 60 extern (C) void qsort_r(scope void *base, size_t nmemb, size_t size, scope void *thunk, Cmp cmp);
75 extern (C) void qsort_r(scope void *base, size_t nmemb, size_t size, scope void *thunk, Cmp cmp);
90 extern (C) void qsort_r(scope void *base, size_t nmemb, size_t size, scope void *thunk, Cmp cmp);
  /src/sys/arch/usermode/dev/
clock.c 46 #include <machine/thunk.h>
  /src/sys/arch/usermode/target/arm/
cpu_arm.c 56 #include <machine/thunk.h>

Completed in 30 milliseconds

1 2 3 4 5 6