Home
last modified time | relevance | path

Searched refs:some_function (Results 1 – 12 of 12) sorted by relevance

/external/bcc/tests/python/
Ddummy.cc5 static __attribute__((noinline)) int some_function(int x, int y) { in some_function() function
12 printf("%p\n", &some_namespace::some_function); in main()
14 printf("result = %d\n", some_namespace::some_function(42, 11)); in main()
/external/llvm/test/Transforms/RewriteStatepointsForGC/
Dderef-pointers.ll10 declare i8 addrspace(1)* @some_function() "gc-leaf-function"
37 ; CHECK: %a = call i8 addrspace(1)* @some_function()
39 %a = call dereferenceable(4) i8 addrspace(1)* @some_function()
46 ; CHECK: %a = call i8 addrspace(1)* @some_function()
48 %a = call dereferenceable_or_null(4) i8 addrspace(1)* @some_function()
55 ; CHECK: %a = call i8 addrspace(1)* @some_function()
57 %a = call noalias i8 addrspace(1)* @some_function()
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/RewriteStatepointsForGC/
Dderef-pointers.ll11 declare i8 addrspace(1)* @some_function() "gc-leaf-function"
38 ; CHECK: %a = call i8 addrspace(1)* @some_function()
40 %a = call dereferenceable(4) i8 addrspace(1)* @some_function()
47 ; CHECK: %a = call i8 addrspace(1)* @some_function()
49 %a = call dereferenceable_or_null(4) i8 addrspace(1)* @some_function()
56 ; CHECK: %a = call i8 addrspace(1)* @some_function()
58 %a = call noalias i8 addrspace(1)* @some_function()
/external/grpc-grpc/doc/core/
Dgrpc-error.md113 // this would cause a crash, because some_function will unref the error,
115 some_function(error);
119 some_function(GRPC_ERROR_REF(error));
133 some_function(error);
137 When some_function is called, it takes over the ownership of the error, and it
146 some_function(GRPC_ERROR_REF(error));
/external/libdaemon/m4/
Dattributes.m4196 …[void __attribute__((nonnull())) some_function(void *foo, void *bar) { foo = (void*)0; bar = (void…
203 [void some_function(void *foo, __attribute__((unused)) void *bar);],
210 [void some_function(void *foo, ...) __attribute__((sentinel));],
217 [void some_function(void *foo, ...) __attribute__((deprecated));],
225 void some_function(void *foo) __attribute__((weak, alias("other_function")));],
275 [int some_function() {
/external/clang/test/Sema/
Dunused-expr.c110 void *some_function(void);
112 …(void*) some_function(); //expected-warning {{expression result unused; should this cast be to 'vo… in t10()
/external/kmod/m4/
Dattributes.m4189 …[void __attribute__((nonnull())) some_function(void *foo, void *bar) { foo = (void*)0; bar = (void…
196 [void some_function(void *foo, __attribute__((unused)) void *bar);],
203 [void some_function(void *foo, ...) __attribute__((sentinel));],
210 [void some_function(void *foo, ...) __attribute__((deprecated));],
218 void some_function(void *foo) __attribute__((weak, alias("other_function")));],
/external/fonttools/
Dsetup.cfg57 ignore:some_function:DeprecationWarning:fontTools.ufoLib.utils
/external/python/cpython2/Doc/howto/
Dlogging-cookbook.rst51 logger.info('calling auxiliary_module.some_function()')
52 auxiliary_module.some_function()
53 logger.info('done with auxiliary_module.some_function()')
72 def some_function():
73 module_logger.info('received a call to "some_function"')
92 calling auxiliary_module.some_function()
94 received a call to 'some_function'
96 done with auxiliary_module.some_function()
/external/python/cpython3/Doc/howto/
Dlogging-cookbook.rst51 logger.info('calling auxiliary_module.some_function()')
52 auxiliary_module.some_function()
53 logger.info('done with auxiliary_module.some_function()')
72 def some_function():
73 module_logger.info('received a call to "some_function"')
94 calling auxiliary_module.some_function()
96 received a call to 'some_function'
98 done with auxiliary_module.some_function()
/external/python/cpython3/Doc/library/
Dunittest.mock-examples.rst99 In the example below we have a function ``some_function`` that instantiates ``Foo``
104 >>> def some_function():
111 ... result = some_function()
Dunittest.mock.rst1600 -> some_function instantiates SomeClass
1602 Now we want to test ``some_function`` but we want to mock out ``SomeClass`` using
1610 In this case ``some_function`` will actually look up ``SomeClass`` in module b,
1616 SomeClass`` module b does ``import a`` and ``some_function`` uses ``a.SomeClass``. Both