/frameworks/av/media/libstagefright/codec2/vndk/include/util/ |
_C2MacroUtils.h | 79 // macros that convert _1, _2, _3, ... to fn(_1, arg), fn(_2, arg), fn(_3, arg), ... 80 #define _C2_MAP_64(fn, arg, head, ...) fn(head, arg), _C2_MAP_63(fn, arg, ##__VA_ARGS__) 81 #define _C2_MAP_63(fn, arg, head, ...) fn(head, arg), _C2_MAP_62(fn, arg, ##__VA_ARGS__) 82 #define _C2_MAP_62(fn, arg, head, ...) fn(head, arg), _C2_MAP_61(fn, arg, ##__VA_ARGS__ [all...] |
/external/clang/test/SemaTemplate/ |
nested-incomplete-class.cpp | 7 bar fn() { function in struct:foo 19 void fn() { function 20 foo<int>().fn();
|
/external/valgrind/memcheck/tests/ |
wrap1.c | 20 OrigFn fn; local 21 VALGRIND_GET_ORIG_FN(fn); 23 CALL_FN_v_v(fn);
|
wrap7.c | 16 OrigFn fn; local 17 VALGRIND_GET_ORIG_FN(fn); 19 CALL_FN_v_v(fn);
|
/external/clang/test/CodeGen/ |
vlt_to_pointer.c | 15 int test(int n, int (*(*fn)(void))[n]) { 16 return (*fn())[0]; 24 int (*fn[m])(void); 25 return f(&m, &d) + test(m, &fn);
|
/external/compiler-rt/test/cfi/icall/ |
external-call.c | 17 double (*fn)(double); 19 fn = sin; 21 fn = cos; 23 fn(atof(argv[2]));
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
internal-fn.h | 25 #include "internal-fn.def" 30 /* Return the name of internal function FN. The name is only meaningful 36 internal_fn_name (enum internal_fn fn) 38 return internal_fn_name_array[(int) fn]; 41 /* Return the ECF_* flags for function FN. */ 46 internal_fn_flags (enum internal_fn fn) 48 return internal_fn_flags_array[(int) fn];
|
/external/valgrind/helgrind/tests/ |
tc19_shadowmem.c | 284 void*(*fn)(void*) = info->child; 288 if (wot == 0) return fn(info); 290 if (wot == 1) return fn(info); 292 if (wot == 2) return fn(info); 294 if (wot == 3) return fn(info); 296 if (wot == 4) return fn(info); 298 if (wot == 5) return fn(info); 300 if (wot == 6) return fn(info); 302 if (wot == 7) return fn(info); 304 if (wot == 8) return fn(info) [all...] |
/bionic/libc/private/ |
bionic_fortify.h | 38 static inline void __check_fd_set(const char* fn, int fd, size_t set_size) { 40 __fortify_fatal("%s: file descriptor %d < 0", fn, fd); 43 __fortify_fatal("%s: file descriptor %d >= FD_SETSIZE %zu", fn, fd, set_size); 46 __fortify_fatal("%s: set size %zu is too small to be an fd_set", fn, set_size); 50 static inline void __check_pollfd_array(const char* fn, size_t fds_size, nfds_t fd_count) { 54 fn, pollfd_array_length, fd_count); 58 static inline void __check_count(const char* fn, const char* identifier, size_t value) { 60 __fortify_fatal("%s: %s %zu > SSIZE_MAX", fn, identifier, value); 64 static inline void __check_buffer_access(const char* fn, const char* action, 67 __fortify_fatal("%s: prevented %zu-byte %s %zu-byte buffer", fn, claim, action, actual) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/ |
pytree_idempotency.py | 28 fn = "example.py"
29 tree = dr.parse_file(fn, debug=True)
30 if not diff(fn, tree):
42 fn = mod.__file__
43 if fn.endswith(".pyc"):
44 fn = fn[:-1]
45 if not fn.endswith(".py"):
47 print >>sys.stderr, "Parsing", fn
48 tree = dr.parse_file(fn, debug=True) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
pytree_idempotency.py | 28 fn = "example.py" 29 tree = dr.parse_file(fn, debug=True) 30 if not diff(fn, tree): 42 fn = mod.__file__ 43 if fn.endswith(".pyc"): 44 fn = fn[:-1] 45 if not fn.endswith(".py"): 47 print >>sys.stderr, "Parsing", fn 48 tree = dr.parse_file(fn, debug=True [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
pytree_idempotency.py | 28 fn = "example.py" 29 tree = dr.parse_file(fn, debug=True) 30 if not diff(fn, tree): 42 fn = mod.__file__ 43 if fn.endswith(".pyc"): 44 fn = fn[:-1] 45 if not fn.endswith(".py"): 47 print >>sys.stderr, "Parsing", fn 48 tree = dr.parse_file(fn, debug=True [all...] |
/frameworks/base/data/sounds/ |
AudioPackage12.mk | 18 PRODUCT_COPY_FILES += $(foreach fn,$(ALARM_FILES),\ 19 $(LOCAL_PATH)/alarms/ogg/$(fn).ogg:system/media/audio/alarms/$(fn).ogg) 21 PRODUCT_COPY_FILES += $(foreach fn,$(NOTIFICATION_FILES),\ 22 $(LOCAL_PATH)/notifications/ogg/$(fn).ogg:system/media/audio/notifications/$(fn).ogg) 24 PRODUCT_COPY_FILES += $(foreach fn,$(RINGTONE_FILES),\ 25 $(LOCAL_PATH)/ringtones/ogg/$(fn).ogg:system/media/audio/ringtones/$(fn).ogg) 27 PRODUCT_COPY_FILES += $(foreach fn,$(EFFECT_FILES), [all...] |
/external/valgrind/drd/ |
drd_qtcore_intercepts.c | 91 OrigFn fn; local 92 VALGRIND_GET_ORIG_FN(fn); 95 CALL_FN_W_WW(ret, fn, mutex, mode); 106 OrigFn fn; local 107 VALGRIND_GET_ORIG_FN(fn); 110 CALL_FN_W_WW(ret, fn, mutex, mode); 120 OrigFn fn; local 121 VALGRIND_GET_ORIG_FN(fn); 124 CALL_FN_W_W(ret, fn, mutex); 134 OrigFn fn; local 148 OrigFn fn; local 162 OrigFn fn; local 178 OrigFn fn; local 193 OrigFn fn; local [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
elf-rel-got-n32.d | 8 00000000 <fn> 8f850000 lw a1,0\(gp\) 10 00000004 <fn\+0x4> 8f850000 lw a1,0\(gp\) 12 00000008 <fn\+0x8> 24a5000c addiu a1,a1,12 13 0000000c <fn\+0xc> 8f850000 lw a1,0\(gp\) 15 00000010 <fn\+0x10> 3c010001 lui at,0x1 16 00000014 <fn\+0x14> 3421e240 ori at,at,0xe240 17 00000018 <fn\+0x18> 00a12821 addu a1,a1,at 18 0000001c <fn\+0x1c> 8f850000 lw a1,0\(gp\) 20 00000020 <fn\+0x20> 00b12821 addu a1,a1,s1 21 00000024 <fn\+0x24> 8f850000 lw a1,0\(gp\ [all...] |
elf-rel-xgot-n32.d | 9 00000000 <fn> 3c050000 lui a1,0x0 11 00000004 <fn\+0x4> 00bc2821 addu a1,a1,gp 12 00000008 <fn\+0x8> 8ca50000 lw a1,0\(a1\) 14 0000000c <fn\+0xc> 3c050000 lui a1,0x0 16 00000010 <fn\+0x10> 00bc2821 addu a1,a1,gp 17 00000014 <fn\+0x14> 8ca50000 lw a1,0\(a1\) 19 00000018 <fn\+0x18> 24a5000c addiu a1,a1,12 20 0000001c <fn\+0x1c> 3c050000 lui a1,0x0 22 00000020 <fn\+0x20> 00bc2821 addu a1,a1,gp 23 00000024 <fn\+0x24> 8ca50000 lw a1,0\(a1\ [all...] |
/external/clang/test/CodeGenCXX/ |
destructor-debug-info.cpp | 12 void fn(B b); 18 fn (b1);
|
/external/clang/test/SemaCXX/ |
fntype-decl.cpp | 4 typedef void fn(int); typedef 5 fn f; // expected-note {{previous declaration is here}}
|
/external/libchrome/base/allocator/ |
allocator_shim_internals.h | 23 #define SHIM_ALIAS_SYMBOL(fn) __attribute__((alias(#fn)))
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/ |
basep-3.s | 2 GREG fn 3 Main PUSHGO $42,fn
|
/frameworks/rs/ |
rsDriverLoader.cpp | 51 static bool LoadHalTable(Context *rsc, HalQueryHal fn, bool loadGraphics) { 54 ret &= fn(RS_HAL_CORE_SHUTDOWN, (void **)&rsc->mHal.funcs.shutdownDriver); 55 ret &= fn(RS_HAL_CORE_SET_PRIORITY, (void **)&rsc->mHal.funcs.setPriority); 56 ret &= fn(RS_HAL_CORE_ALLOC_RUNTIME_MEM, (void **)&rsc->mHal.funcs.allocRuntimeMem); 57 ret &= fn(RS_HAL_CORE_FREE_RUNTIME_MEM, (void **)&rsc->mHal.funcs.freeRuntimeMem); 58 ret &= fn(RS_HAL_CORE_FINISH, (void **)&rsc->mHal.funcs.finish); 60 ret &= fn(RS_HAL_SCRIPT_INIT, (void **)&rsc->mHal.funcs.script.init); 61 ret &= fn(RS_HAL_SCRIPT_INIT_INTRINSIC, (void **)&rsc->mHal.funcs.script.initIntrinsic); 62 ret &= fn(RS_HAL_SCRIPT_INVOKE_FUNCTION, (void **)&rsc->mHal.funcs.script.invokeFunction); 63 ret &= fn(RS_HAL_SCRIPT_INVOKE_ROOT, (void **)&rsc->mHal.funcs.script.invokeRoot) [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_llrint.c | 7 #define fn llrint macro
|
s_llrintf.c | 7 #define fn llrintf macro
|
s_llrintl.c | 7 #define fn llrintl macro
|
s_lrintf.c | 7 #define fn lrintf macro
|