Home
last modified time | relevance | path

Searched refs:get_func (Results 1 – 13 of 13) sorted by relevance

/external/llvm/test/MC/AArch64/
Dbasic-pic.s65 .globl get_func symbol
66 .type get_func,@function
67 get_func: // @get_func label
70 adrp x0, :got:get_func
71 ldr x0, [x0, #:got_lo12:get_func]
74 .size get_func, .Ltmp4-get_func
/external/llvm-project/llvm/test/MC/AArch64/
Dbasic-pic.s65 .globl get_func symbol
66 .type get_func,@function
67 get_func: // @get_func label
70 adrp x0, :got:get_func
71 ldr x0, [x0, #:got_lo12:get_func]
74 .size get_func, .Ltmp4-get_func
/external/llvm-project/llvm/test/CodeGen/AArch64/
Dbasic-pic.ll48 define void()* @get_func() {
49 ; CHECK-LABEL: get_func:
51 ret void()* bitcast(void()*()* @get_func to void()*)
52 ; CHECK: adrp x[[GOTHI:[0-9]+]], :got:get_func
53 ; CHECK: ldr x0, [x[[GOTHI]], :got_lo12:get_func]
/external/llvm/test/CodeGen/AArch64/
Darm64-basic-pic.ll48 define void()* @get_func() {
49 ; CHECK-LABEL: get_func:
51 ret void()* bitcast(void()*()* @get_func to void()*)
52 ; CHECK: adrp x[[GOTHI:[0-9]+]], :got:get_func
53 ; CHECK: ldr x0, [x[[GOTHI]], :got_lo12:get_func]
Dbasic-pic.ll48 define void()* @get_func() {
49 ; CHECK-LABEL: get_func:
51 ret void()* bitcast(void()*()* @get_func to void()*)
52 ; CHECK: adrp x[[GOTHI:[0-9]+]], :got:get_func
53 ; CHECK: ldr x0, [x[[GOTHI]], {{#?}}:got_lo12:get_func]
/external/python/cpython3/Lib/test/
Dtest_code.py370 def get_func(self): member in CoExtra
377 f = self.get_func()
385 f = self.get_func()
394 f = self.get_func()
402 f = self.get_func()
419 f = self.get_func()
Dtest_embed.py1297 def get_func(name): function
1303 Py_GetPath = get_func('Py_GetPath')
1304 Py_GetPrefix = get_func('Py_GetPrefix')
1305 Py_GetExecPrefix = get_func('Py_GetExecPrefix')
1306 Py_GetProgramName = get_func('Py_GetProgramName')
1307 Py_GetProgramFullPath = get_func('Py_GetProgramFullPath')
1308 Py_GetPythonHome = get_func('Py_GetPythonHome')
/external/ltp/testcases/kernel/syscalls/mprotect/
Dmprotect04.c183 static void *get_func(void *mem, uintptr_t *func_page_offset) in get_func() function
240 opd.entry = (uintptr_t)get_func(p, &func_page_offset); in testfunc_protexec()
243 func = get_func(p, &func_page_offset); in testfunc_protexec()
/external/llvm-project/clang/test/SemaCXX/
Dsource_location.cpp486 constexpr const char *get_func(const char *f = __builtin_FUNCTION()) { return f; } in get_func() function
494 const char *func2 = get_func();
535 constexpr const char *get_func(const char *f = __builtin_FUNCTION()) { return f; } in get_func() function
540 const char *func = get_func();
556 const char *func = get_func();
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Dec.py256 get_func, group = (
266 res = get_func(group, point, bn_x, bn_y, bn_ctx)
Dbackend.py1412 get_func, group = self._ec_key_determine_group_get_func(ec_cdata)
1429 res = get_func(group, point, bn_x, bn_y, bn_ctx)
1649 get_func = self._lib.EC_POINT_get_affine_coordinates_GF2m
1651 get_func = self._lib.EC_POINT_get_affine_coordinates_GFp
1653 assert get_func
1655 return get_func, group
/external/llvm-project/flang/test/Fir/
Dfir-ops.fir32 // CHECK-LABEL: func private @get_func() -> (() -> ())
34 func private @get_func() -> (() -> ())
126 // CHECK: [[VAL_36:%.*]] = fir.call @get_func() : () -> (() -> ())
133 %32 = fir.call @get_func() : () -> (() -> ())
/external/tensorflow/tensorflow/python/distribute/coordinator/
Dcluster_coordinator_test.py88 def get_func(label): function
98 closure_queue.put(coordinator_lib.Closure(get_func(label), cm))