Home
last modified time | relevance | path

Searched refs:function (Results 1 – 25 of 10669) sorted by relevance

12345678910>>...427

/external/libchrome/ui/gfx/geometry/
Dcubic_bezier_unittest.cc15 CubicBezier function(0.25, 0.0, 0.75, 1.0); in TEST() local
19 EXPECT_NEAR(function.Solve(0), 0, epsilon); in TEST()
20 EXPECT_NEAR(function.Solve(0.05), 0.01136, epsilon); in TEST()
21 EXPECT_NEAR(function.Solve(0.1), 0.03978, epsilon); in TEST()
22 EXPECT_NEAR(function.Solve(0.15), 0.079780, epsilon); in TEST()
23 EXPECT_NEAR(function.Solve(0.2), 0.12803, epsilon); in TEST()
24 EXPECT_NEAR(function.Solve(0.25), 0.18235, epsilon); in TEST()
25 EXPECT_NEAR(function.Solve(0.3), 0.24115, epsilon); in TEST()
26 EXPECT_NEAR(function.Solve(0.35), 0.30323, epsilon); in TEST()
27 EXPECT_NEAR(function.Solve(0.4), 0.36761, epsilon); in TEST()
[all …]
/external/libabigail/tests/data/test-diff-pkg/
Dspice-server-0.12.4-19.el7.x86_64-0.12.8-1.el7.x86_64-report-3.txt7 1 Removed function:
9 …[D] 'function int spice_server_migrate_client_state(SpiceServer*)' {spice_server_migrate_client…
13 [A] 'function void spice_replay_free(SpiceReplay*)' {spice_replay_free@@SPICE_SERVER_0.12.6}
14 …[A] 'function void spice_replay_free_cmd(SpiceReplay*, QXLCommandExt*)' {spice_replay_free_cmd@…
15 …[A] 'function SpiceReplay* spice_replay_new(FILE*, int)' {spice_replay_new@@SPICE_SERVER_0.12.6}
16 …[A] 'function QXLCommandExt* spice_replay_next_cmd(SpiceReplay*, QXLWorker*)' {spice_replay_nex…
17 …[A] 'function uint32_t spice_server_get_best_playback_rate(SpicePlaybackInstance*)' {spice_serv…
18 …[A] 'function uint32_t spice_server_get_best_record_rate(SpiceRecordInstance*)' {spice_server_g…
19 …[A] 'function void spice_server_set_playback_rate(SpicePlaybackInstance*, uint32_t)' {spice_ser…
20 …[A] 'function void spice_server_set_record_rate(SpiceRecordInstance*, uint32_t)' {spice_server_…
[all …]
/external/llvm-project/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
Ddeduct_ptr.pass.cpp38 std::function a = f0; in main()
39 ASSERT_SAME_TYPE(decltype(a), std::function<R()>); in main()
41 std::function b = &f0; in main()
42 ASSERT_SAME_TYPE(decltype(b), std::function<R()>); in main()
45 std::function c{f0}; in main()
46 ASSERT_SAME_TYPE(decltype(c), std::function<R()>); in main()
48 std::function d{&f0}; in main()
49 ASSERT_SAME_TYPE(decltype(d), std::function<R()>); in main()
53 std::function a = f1; in main()
54 ASSERT_SAME_TYPE(decltype(a), std::function<R(A1)>); in main()
[all …]
Ddeduct_F.pass.cpp58 std::function g0 = f0_##N{}; \ in main()
59 ASSERT_SAME_TYPE(decltype(g0), std::function<R()>); \ in main()
61 std::function g1 = f1_##N{}; \ in main()
62 ASSERT_SAME_TYPE(decltype(g1), std::function<R(A1)>); \ in main()
64 std::function g2 = f2_##N{}; \ in main()
65 ASSERT_SAME_TYPE(decltype(g2), std::function<R(A1, A2)>); \ in main()
67 std::function g3 = f3_##N{}; \ in main()
68 ASSERT_SAME_TYPE(decltype(g3), std::function<R(A1, A2, A3)>); \ in main()
71 std::function g4{f0_##N{}}; \ in main()
72 ASSERT_SAME_TYPE(decltype(g4), std::function<R()>); \ in main()
[all …]
/external/llvm-project/llvm/test/tools/llvm-xray/AArch64/
Dextract-instrmap.test8 … CHECK-NEXT: - { id: 1, address: 0x420, function: 0x420, kind: function-enter, always-instrument: …
9 # CHECK-NEXT: - { id: 1, address: 0x440, function: 0x420, kind: function-exit, always-instrument: t…
10 … CHECK-NEXT: - { id: 2, address: 0x464, function: 0x464, kind: function-enter, always-instrument: …
11 # CHECK-NEXT: - { id: 2, address: 0x484, function: 0x464, kind: function-exit, always-instrument: t…
12 … CHECK-NEXT: - { id: 3, address: 0x4A8, function: 0x4A8, kind: function-enter, always-instrument: …
13 # CHECK-NEXT: - { id: 3, address: 0x4C8, function: 0x4A8, kind: function-exit, always-instrument: t…
19 …ANGLED-NEXT: - { id: 1, address: 0x420, function: 0x420, kind: function-enter, always-instrument: …
20 …MANGLED-NEXT: - { id: 1, address: 0x440, function: 0x420, kind: function-exit, always-instrument: …
21 …ANGLED-NEXT: - { id: 2, address: 0x464, function: 0x464, kind: function-enter, always-instrument: …
22 …MANGLED-NEXT: - { id: 2, address: 0x484, function: 0x464, kind: function-exit, always-instrument: …
[all …]
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_stacktrace_printer.cpp22 static const char *StripFunctionName(const char *function, const char *prefix) { in StripFunctionName() argument
23 if (!function) return nullptr; in StripFunctionName()
24 if (!prefix) return function; in StripFunctionName()
26 if (0 == internal_strncmp(function, prefix, prefix_len)) in StripFunctionName()
27 return function + prefix_len; in StripFunctionName()
28 return function; in StripFunctionName()
31 static const char *DemangleFunctionName(const char *function) { in DemangleFunctionName() argument
32 if (!function) return nullptr; in DemangleFunctionName()
38 if (!internal_strcmp(function, "__libc_mutex_init")) in DemangleFunctionName()
40 if (!internal_strcmp(function, "__libc_mutex_lock")) in DemangleFunctionName()
[all …]
/external/mesa3d/src/gallium/drivers/panfrost/
Dpan_blending.c124 static void to_c_factor(unsigned factor, struct MALI_BLEND_FUNCTION *function) in to_c_factor() argument
127 function->invert_c = true; in to_c_factor()
132 function->invert_c = factor == PIPE_BLENDFACTOR_ONE; in to_c_factor()
133 function->c = MALI_BLEND_OPERAND_C_ZERO; in to_c_factor()
137 function->c = MALI_BLEND_OPERAND_C_SRC_ALPHA; in to_c_factor()
141 function->c = MALI_BLEND_OPERAND_C_DEST_ALPHA; in to_c_factor()
145 function->c = MALI_BLEND_OPERAND_C_SRC; in to_c_factor()
149 function->c = MALI_BLEND_OPERAND_C_DEST; in to_c_factor()
154 function->c = MALI_BLEND_OPERAND_C_CONSTANT; in to_c_factor()
166 struct MALI_BLEND_FUNCTION *function) in to_panfrost_function() argument
[all …]
/external/llvm-project/flang/module/
Domp_lib.h123 function omp_get_num_threads() bind(c)
126 end function omp_get_num_threads
128 function omp_get_max_threads() bind(c)
131 end function omp_get_max_threads
133 function omp_get_thread_num() bind(c)
136 end function omp_get_thread_num
138 function omp_get_num_procs() bind(c)
141 end function omp_get_num_procs
143 function omp_in_parallel() bind(c)
146 end function omp_in_parallel
[all …]
/external/llvm-project/llvm/test/tools/llvm-xray/X86/
Dconvert-fdr-to-yaml.txt11 ; CHECK-NEXT: - { type: 0, func-id: 1, function: '1', cpu: 5, thread: 5, kind: function-enter, ts…
12 ; CHECK-NEXT: - { type: 0, func-id: 1, function: '1', cpu: 5, thread: 5, kind: function-exit, tsc…
13 ; CHECK-NEXT: - { type: 0, func-id: 2, function: '2', cpu: 5, thread: 5, kind: function-enter, ts…
14 ; CHECK-NEXT: - { type: 0, func-id: 3, function: '3', cpu: 5, thread: 5, kind: function-enter, ts…
15 ; CHECK-NEXT: - { type: 0, func-id: 3, function: '3', cpu: 5, thread: 5, kind: function-exit, tsc…
16 ; CHECK-NEXT: - { type: 0, func-id: 2, function: '2', cpu: 5, thread: 5, kind: function-exit, tsc…
17 ; CHECK-NEXT: - { type: 0, func-id: 4, function: '4', cpu: 5, thread: 5, kind: function-enter, ts…
18 ; CHECK-NEXT: - { type: 0, func-id: 5, function: '5', cpu: 5, thread: 5, kind: function-enter, ts…
19 ; CHECK-NEXT: - { type: 0, func-id: 5, function: '5', cpu: 5, thread: 5, kind: function-tail-exit…
20 … CHECK-NEXT: - { type: 0, func-id: 268435455, function: '268435455', cpu: 5, thread: 5, kind: fu…
[all …]
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_jit_compiled_cpu_function_test.cc178 XlaCompiledCpuFunction function(jit->StaticData()); in TEST() local
181 *static_cast<int32*>(function.arg_data(0)) = 10; in TEST()
182 *static_cast<int32*>(function.arg_data(1)) = 32; in TEST()
183 EXPECT_TRUE(function.Run()); in TEST()
184 EXPECT_EQ(function.error_msg(), ""); in TEST()
185 EXPECT_EQ(*static_cast<int32*>(function.result_data(0)), 42); in TEST()
188 *static_cast<int32*>(function.arg_data(0)) = 100; in TEST()
189 *static_cast<int32*>(function.arg_data(1)) = 320; in TEST()
190 EXPECT_TRUE(function.Run()); in TEST()
191 EXPECT_EQ(function.error_msg(), ""); in TEST()
[all …]
/external/python/cpython3/Lib/test/dtracedata/
Dcall_stack.d.expected1 function-entry:call_stack.py:start:23
2 function-entry: call_stack.py:function_1:1
3 function-entry: call_stack.py:function_3:9
4 function-return: call_stack.py:function_3:10
5 function-return: call_stack.py:function_1:2
6 function-entry: call_stack.py:function_2:5
7 function-entry: call_stack.py:function_1:1
8 function-entry: call_stack.py:function_3:9
9 function-return: call_stack.py:function_3:10
10 function-return: call_stack.py:function_1:2
[all …]
/external/libabigail/tests/data/test-abidiff/
Dtest-PR18791-v1.so.abi7 <elf-function-symbols>
91 </elf-function-symbols>
158 <member-function access='protected'>
159 …<function-decl name='_M_create_node' mangled-name='_ZNSt7__cxx114listIN4sigc8internal18trackable_c…
163 </function-decl>
164 </member-function>
165 <member-function access='public'>
166 …<function-decl name='list' mangled-name='_ZNSt7__cxx114listIN4sigc8internal18trackable_callbackESa…
169 </function-decl>
170 </member-function>
[all …]
Dtest-PR18791-v0.so.abi7 <elf-function-symbols>
91 </elf-function-symbols>
131 <member-function access='public' static='yes'>
132 …<function-decl name='swap' mangled-name='_ZNSt8__detail15_List_node_base4swapERS0_S1_' filepath='/…
136 </function-decl>
137 </member-function>
138 <member-function access='public'>
139 …<function-decl name='_M_transfer' mangled-name='_ZNSt8__detail15_List_node_base11_M_transferEPS0_S…
144 </function-decl>
145 </member-function>
[all …]
/external/swiftshader/third_party/marl/include/marl/
Dtask.h27 using Function = std::function<void()>;
42 MARL_NO_EXPORT inline Task(const Function& function,
44 MARL_NO_EXPORT inline Task(Function&& function, Flags flags = Flags::None);
60 Function function;
65 Task::Task(const Task& o) : function(o.function), flags(o.flags) {} in Task()
66 Task::Task(Task&& o) : function(std::move(o.function)), flags(o.flags) {} in Task()
67 Task::Task(const Function& function, Flags flags /* = Flags::None */) in Task() argument
68 : function(function), flags(flags) {} in Task()
69 Task::Task(Function&& function, Flags flags /* = Flags::None */) in Task() argument
70 : function(std::move(function)), flags(flags) {} in Task()
[all …]
/external/llvm-project/clang/test/Parser/
Dpragma-attribute.cpp3 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = function)
5 void function();
9 …attribute push(__attribute__((annotate("test"))), apply_to = any(variable(is_parameter), function))
19 #pragma clang attribute push (__attribute__((abi_tag("a"))) apply_to=function) // expected-error {{…
20 #pragma clang attribute push (__attribute__((abi_tag("a"))) = function) // expected-error {{expecte…
21 #pragma clang attribute push (__attribute__((abi_tag("a"))) any(function)) // expected-error {{expe…
24 #pragma clang attribute push (__attribute__((abi_tag("a"))) function) // expected-error {{expected …
25 #pragma clang attribute push (__attribute__((abi_tag("a"))) (function)) // expected-error {{expecte…
28 #pragma clang attribute push(__attribute__((annotate("test"))), = any(function)) // expected-error …
29 #pragma clang attribute push(__attribute__((annotate("test"))), = function) // expected-error {{exp…
[all …]
/external/libabigail/tests/data/test-diff-filter/
Dtest35-pr18754-no-added-syms-report-1.txt3 Function symbols changes summary: 7 Removed, 0 Added (76 filtered out) function symbols not referen…
8 [D] 'function void COI::fini()'
9 [D] 'function bool COI::init()'
10 [D] 'function void* DL_sym(void*, const char*, const char*)'
27 [D] 'function void ORSL::init()'
28 [D] 'function void ORSL::release(int)'
29 [D] 'function bool ORSL::reserve(int)'
30 [D] 'function bool ORSL::try_reserve(int)'
41 [D] 'function void Offload_Report_Epilog(OffloadHostTimerData*)'
42 [D] 'function void Offload_Report_Prolog(OffloadHostTimerData*)'
[all …]
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/
Dgraph-function-name-bug.pbtxt3 # This test is tailored to reproduce b/141617294. In particular, the function
15 function {
20 function {
25 function {
30 function {
35 function {
40 function {
45 function {
50 function {
55 function {
[all …]
/external/boringssl/linux-ppc64le/crypto/test/
Dtrampoline-ppc.S22 .type abi_test_trampoline,@function
340 .type abi_test_clobber_r0,@function
349 .type abi_test_clobber_r2,@function
358 .type abi_test_clobber_r3,@function
367 .type abi_test_clobber_r4,@function
376 .type abi_test_clobber_r5,@function
385 .type abi_test_clobber_r6,@function
394 .type abi_test_clobber_r7,@function
403 .type abi_test_clobber_r8,@function
412 .type abi_test_clobber_r9,@function
[all …]
/external/openscreen/third_party/boringssl/linux-ppc64le/crypto/test/
Dtrampoline-ppc.S22 .type abi_test_trampoline,@function
340 .type abi_test_clobber_r0,@function
349 .type abi_test_clobber_r2,@function
358 .type abi_test_clobber_r3,@function
367 .type abi_test_clobber_r4,@function
376 .type abi_test_clobber_r5,@function
385 .type abi_test_clobber_r6,@function
394 .type abi_test_clobber_r7,@function
403 .type abi_test_clobber_r8,@function
412 .type abi_test_clobber_r9,@function
[all …]
/external/rust/crates/quiche/deps/boringssl/linux-ppc64le/crypto/test/
Dtrampoline-ppc.S22 .type abi_test_trampoline,@function
340 .type abi_test_clobber_r0,@function
349 .type abi_test_clobber_r2,@function
358 .type abi_test_clobber_r3,@function
367 .type abi_test_clobber_r4,@function
376 .type abi_test_clobber_r5,@function
385 .type abi_test_clobber_r6,@function
394 .type abi_test_clobber_r7,@function
403 .type abi_test_clobber_r8,@function
412 .type abi_test_clobber_r9,@function
[all …]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dexample-function.cpp7 template<typename Signature> class function;
28 class function<R (Args...)> { class
31 function() : invoker (0) { } in function() function in function
32 function(const function& other) : invoker(0) { in function() function in function
37 template<typename F> function(const F& f) : invoker(0) { in function() function in function
41 ~function() { in ~function()
46 function& operator=(const function& other) { in operator =()
47 function(other).swap(*this); in operator =()
52 function& operator=(const F& f) { in operator =()
53 function(f).swap(*this); in operator =()
[all …]
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/
Dexample-function.cpp7 template<typename Signature> class function;
28 class function<R (Args...)> { class
31 function() : invoker (0) { } in function() function in function
32 function(const function& other) : invoker(0) { in function() function in function
37 template<typename F> function(const F& f) : invoker(0) { in function() function in function
41 ~function() { in ~function()
46 function& operator=(const function& other) { in operator =()
47 function(other).swap(*this); in operator =()
52 function& operator=(const F& f) { in operator =()
53 function(f).swap(*this); in operator =()
[all …]
/external/llvm-project/llvm/test/tools/llvm-xray/ARM/
Dextract-instrmap.test132 …CHECK-NEXT: - { id: 1, address: 0x12B0, function: 0x12B0, kind: function-enter, always-instrument:…
133 …CHECK-NEXT: - { id: 1, address: 0x12CC, function: 0x12B0, kind: function-exit, always-instrument: …
134 …CHECK-NEXT: - { id: 2, address: 0x12EC, function: 0x12EC, kind: function-enter, always-instrument:…
135 …CHECK-NEXT: - { id: 2, address: 0x1308, function: 0x12EC, kind: function-exit, always-instrument: …
136 …CHECK-NEXT: - { id: 3, address: 0x1328, function: 0x1328, kind: function-enter, always-instrument:…
137 …CHECK-NEXT: - { id: 3, address: 0x1344, function: 0x1328, kind: function-exit, always-instrument: …
143 …NGLED-NEXT: - { id: 1, address: 0x12B0, function: 0x12B0, kind: function-enter, always-instrument:…
144 …NGLED-NEXT: - { id: 1, address: 0x12CC, function: 0x12B0, kind: function-exit, always-instrument: …
145 …NGLED-NEXT: - { id: 2, address: 0x12EC, function: 0x12EC, kind: function-enter, always-instrument:…
146 …NGLED-NEXT: - { id: 2, address: 0x1308, function: 0x12EC, kind: function-exit, always-instrument: …
[all …]
/external/selinux/libselinux/
DAndroid.bp46 "-Wno-error=unused-function",
275 "--allowlist-function=fgetfilecon",
276 "--allowlist-function=fgetfilecon_raw",
277 "--allowlist-function=freecon",
278 "--allowlist-function=fsetfilecon",
279 "--allowlist-function=getcon",
280 "--allowlist-function=getfilecon",
281 "--allowlist-function=getpeercon",
282 "--allowlist-function=getpidcon",
283 "--allowlist-function=is_selinux_enabled",
[all …]
/external/skqp/experimental/canvaskit/
Dcanvaskit_bindings.cpp503 function("_getWebGLSurface", &getWebGLSurface, allow_raw_pointers()); in EMSCRIPTEN_BINDINGS()
504 function("currentContext", &emscripten_webgl_get_current_context); in EMSCRIPTEN_BINDINGS()
505 function("setCurrentContext", &emscripten_webgl_make_context_current); in EMSCRIPTEN_BINDINGS()
508 function("_decodeImage", optional_override([](uintptr_t /* uint8_t* */ iptr, in EMSCRIPTEN_BINDINGS()
514 function("_getRasterDirectSurface", optional_override([](const SimpleImageInfo ii, in EMSCRIPTEN_BINDINGS()
521function("_getRasterN32PremulSurface", optional_override([](int width, int height)->sk_sp<SkSurfac… in EMSCRIPTEN_BINDINGS()
525 function("getSkDataBytes", &getSkDataBytes, allow_raw_pointers()); in EMSCRIPTEN_BINDINGS()
526 function("MakeSkCornerPathEffect", &SkCornerPathEffect::Make, allow_raw_pointers()); in EMSCRIPTEN_BINDINGS()
527 function("MakeSkDiscretePathEffect", &SkDiscretePathEffect::Make, allow_raw_pointers()); in EMSCRIPTEN_BINDINGS()
528function("MakeBlurMaskFilter", optional_override([](SkBlurStyle style, SkScalar sigma, bool respec… in EMSCRIPTEN_BINDINGS()
[all …]

12345678910>>...427