Home
last modified time | relevance | path

Searched defs:FuncCall (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/external/sandboxed-api/sandboxed_api/
H A Dcall.h48 struct FuncCall { struct
50 enum {
56 char func[kFuncNameMax];
58 v::Type ret_type;
60 size_t ret_size;
62 size_t argc;
64 v::Type arg_type[kArgsMax];
66 size_t arg_size[kArgsMax];
68 union {
71 } args[kArgsMax];
[all …]
/aosp_15_r20/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_test.cc20 TEST(ThreadSanitizer, FuncCall) { in TEST() argument
H A Dtsan_bench.cc83 TEST(DISABLED_BENCH, FuncCall) { in TEST() argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/polly/
DScopDetectionDiagnostic.h97 FuncCall, enumerator
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/polly/
DScopDetectionDiagnostic.h97 FuncCall, enumerator
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/polly/
DScopDetectionDiagnostic.h97 FuncCall, enumerator
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/polly/
DScopDetectionDiagnostic.h97 FuncCall, enumerator
/aosp_15_r20/external/python/pycparser/pycparser/
Dc_ast.py614 class FuncCall(Node): class