HomeSort by: relevance | last modified time | path
    Searched defs:call (Results 1 - 25 of 550) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/lgpl3/gmp/dist/mpn/generic/
logops_n.c 35 #define call mpn_and_n macro
40 #define call mpn_andn_n macro
45 #define call mpn_nand_n macro
50 #define call mpn_ior_n macro
55 #define call mpn_iorn_n macro
60 #define call mpn_nior_n macro
65 #define call mpn_xor_n macro
70 #define call mpn_xnor_n macro
76 call (rp, up, vp, n);
logops_n.c 35 #define call mpn_and_n macro
40 #define call mpn_andn_n macro
45 #define call mpn_nand_n macro
50 #define call mpn_ior_n macro
55 #define call mpn_iorn_n macro
60 #define call mpn_nior_n macro
65 #define call mpn_xor_n macro
70 #define call mpn_xnor_n macro
76 call (rp, up, vp, n);
  /src/games/robots/
rnd_pos.c 55 static int call = 0; local
62 call++;
rnd_pos.c 55 static int call = 0; local
62 call++;
  /src/external/public-domain/xz/dist/tests/
bcj_test.c 25 call(int a, int b) function
63 int a = call(argc, argc + 1);
bcj_test.c 25 call(int a, int b) function
63 int a = call(argc, argc + 1);
  /src/tests/usr.bin/indent/
lsym_rparen_or_rbracket.c 15 int call = function(3); variable
lsym_rparen_or_rbracket.c 15 int call = function(3); variable
  /src/external/gpl3/gcc/dist/libcc1/
rpc.hh 1 /* RPC call and callback templates
90 // There are two kinds of template functions here: "call" and
93 // The "call" template is used for making a remote procedure call.
99 // call. This template function is suitable for use with the
106 call (connection *conn, const char *method, R *result, Arg... args) function in namespace:cc1_plugin
147 // Base case -- we can call the function.
150 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &,
159 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &value,
162 return call<I + 1, func> (conn, value, args...
    [all...]
rpc.hh 1 /* RPC call and callback templates
90 // There are two kinds of template functions here: "call" and
93 // The "call" template is used for making a remote procedure call.
99 // call. This template function is suitable for use with the
106 call (connection *conn, const char *method, R *result, Arg... args) function in namespace:cc1_plugin
147 // Base case -- we can call the function.
150 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &,
159 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &value,
162 return call<I + 1, func> (conn, value, args...
    [all...]
  /src/external/gpl3/gcc.old/dist/libcc1/
rpc.hh 1 /* RPC call and callback templates
90 // There are two kinds of template functions here: "call" and
93 // The "call" template is used for making a remote procedure call.
99 // call. This template function is suitable for use with the
106 call (connection *conn, const char *method, R *result, Arg... args) function in namespace:cc1_plugin
147 // Base case -- we can call the function.
150 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &,
159 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &value,
162 return call<I + 1, func> (conn, value, args...
    [all...]
rpc.hh 1 /* RPC call and callback templates
90 // There are two kinds of template functions here: "call" and
93 // The "call" template is used for making a remote procedure call.
99 // call. This template function is suitable for use with the
106 call (connection *conn, const char *method, R *result, Arg... args) function in namespace:cc1_plugin
147 // Base case -- we can call the function.
150 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &,
159 call (connection *conn, const std::tuple<argument_wrapper<Arg>...> &value,
162 return call<I + 1, func> (conn, value, args...
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ManagedStatic.h 23 static void *call() { return new C(); } function in struct:llvm::object_creator
29 static void call(void *Ptr) { delete (T *)Ptr; } function in struct:llvm::object_deleter
32 static void call(void *Ptr) { delete[](T *)Ptr; } function in struct:llvm::object_deleter
79 /// explicit through the llvm_shutdown() function call.
89 RegisterManagedStatic(Creator::call, Deleter::call);
99 RegisterManagedStatic(Creator::call, Deleter::call);
ManagedStatic.h 23 static void *call() { return new C(); } function in struct:llvm::object_creator
29 static void call(void *Ptr) { delete (T *)Ptr; } function in struct:llvm::object_deleter
32 static void call(void *Ptr) { delete[](T *)Ptr; } function in struct:llvm::object_deleter
79 /// explicit through the llvm_shutdown() function call.
89 RegisterManagedStatic(Creator::call, Deleter::call);
99 RegisterManagedStatic(Creator::call, Deleter::call);
  /src/external/gpl3/gcc/dist/gcc/analyzer/
kf-lang-cp.cc 33 #include "analyzer/call-details.h"
38 /* Return true if CALL is a non-allocating operator new or operator new []
46 bool is_placement_new_p (const gcall *call)
48 gcc_assert (call);
49 tree fndecl = gimple_call_fndecl (call);
55 if (!is_named_call_p (fndecl, "operator new", call, 2)
56 && !is_named_call_p (fndecl, "operator new []", call, 2))
94 const gcall *call = cd.get_call_stmt (); variable
96 /* If the call was actually a placement new, check that accessing
98 if (is_placement_new_p (call))
    [all...]
kf-lang-cp.cc 33 #include "analyzer/call-details.h"
38 /* Return true if CALL is a non-allocating operator new or operator new []
46 bool is_placement_new_p (const gcall *call)
48 gcc_assert (call);
49 tree fndecl = gimple_call_fndecl (call);
55 if (!is_named_call_p (fndecl, "operator new", call, 2)
56 && !is_named_call_p (fndecl, "operator new []", call, 2))
94 const gcall *call = cd.get_call_stmt (); variable
96 /* If the call was actually a placement new, check that accessing
98 if (is_placement_new_p (call))
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/pru/
pru-passes.cc 144 gcall *call = dyn_cast <gcall *> (gsi_stmt (wi->gsi));
145 if (call
146 && tp == gimple_call_fn_ptr (call)
147 && gimple_call_fndecl (call))
156 call any TI ABI function from GCC, since GCC will
143 gcall *call = dyn_cast <gcall *> (gsi_stmt (wi->gsi)); local
pru-passes.cc 144 gcall *call = dyn_cast <gcall *> (gsi_stmt (wi->gsi));
145 if (call
146 && tp == gimple_call_fn_ptr (call)
147 && gimple_call_fndecl (call))
156 call any TI ABI function from GCC, since GCC will
143 gcall *call = dyn_cast <gcall *> (gsi_stmt (wi->gsi)); local
  /src/external/gpl3/gcc.old/dist/gcc/config/pru/
pru-passes.cc 144 gcall *call = dyn_cast <gcall *> (gsi_stmt (wi->gsi));
145 if (call
146 && tp == gimple_call_fn_ptr (call)
147 && gimple_call_fndecl (call))
156 call any TI ABI function from GCC, since GCC will
143 gcall *call = dyn_cast <gcall *> (gsi_stmt (wi->gsi)); local
pru-passes.cc 144 gcall *call = dyn_cast <gcall *> (gsi_stmt (wi->gsi));
145 if (call
146 && tp == gimple_call_fn_ptr (call)
147 && gimple_call_fndecl (call))
156 call any TI ABI function from GCC, since GCC will
143 gcall *call = dyn_cast <gcall *> (gsi_stmt (wi->gsi)); local
  /src/external/lgpl3/gmp/dist/tests/mpn/
t-instrument.c 48 } call[100]; variable in typeref:struct:__anon23346
62 ASSERT_ALWAYS (ncall <= numberof (call));
64 if (ncall >= numberof (call))
66 printf ("__cyg_profile_func_enter: oops, call stack full, from %s\n", name);
71 call[ncall].this_fn = this_fn;
72 call[ncall].call_site = call_site;
83 ASSERT_ALWAYS (ncall <= numberof (call));
87 printf ("__cyg_profile_func_exit: call stack empty, from %s\n", name);
92 if (this_fn != call[ncall].this_fn || call_site != call[ncall].call_site
    [all...]
t-instrument.c 48 } call[100]; variable in typeref:struct:__anon23346
62 ASSERT_ALWAYS (ncall <= numberof (call));
64 if (ncall >= numberof (call))
66 printf ("__cyg_profile_func_enter: oops, call stack full, from %s\n", name);
71 call[ncall].this_fn = this_fn;
72 call[ncall].call_site = call_site;
83 ASSERT_ALWAYS (ncall <= numberof (call));
87 printf ("__cyg_profile_func_exit: call stack empty, from %s\n", name);
92 if (this_fn != call[ncall].this_fn || call_site != call[ncall].call_site
    [all...]
  /src/tests/lib/libcurses/director/
testlang_parse.y 71 /* time delay after a function call - allows the slave time to
104 args_t *args; /* arguments for the call */
196 %token EOL CALL CHECK NOINPUT OR MULTIPLIER LPAREN RPAREN LBRACK RBRACK
212 | call
275 call : CALL result fn_name args { label
732 * when a test function call returns.
1067 * Pass a function call and arguments to the slave and wait for the
1111 errx(2, "%s:%zu: Call to input function "
  /src/usr.bin/xlint/lint1/
ckgetopt.c 55 * 0 means outside a while loop with a getopt call.
56 * 1 means directly inside a while loop with a getopt call.
63 * The options string from the getopt call. Whenever an option is
84 const function_call *call; local
96 && tn->u.ops.left->u.ops.right->tn_op == CALL
97 && (call = tn->u.ops.left->u.ops.right->u.call)->func->tn_op == ADDR
98 && call->func->u.ops.left->tn_op == NAME
99 && strcmp(call->func->u.ops.left->u.sym->s_name, "getopt") == 0
100 && call->args_len ==
    [all...]
emit1.c 324 outchar('c'); /* function call */
333 const function_call *call = tn->u.call; local
335 for (size_t i = 0, n = call->args_len; i < n; i++) {
336 const tnode_t *arg = call->args[i];
374 outname(call->func->u.ops.left->u.sym->s_name);
378 outint((int)call->args_len);
379 for (size_t i = 0, n = call->args_len; i < n; i++)
380 outtype(call->args[i]->tn_type);

Completed in 185 milliseconds

1 2 3 4 5 6 7 8 91011>>