/external/llvm-project/clang/test/CodeGen/ |
D | fp-floatcontrol-stack.cpp | 6 #define FUN(n) \ macro 9 float fun_default FUN(1) 31 float exc_on FUN(2) 49 float exc_pop FUN(5) 66 float exc_off FUN(5) 83 float precise_on FUN(3) 100 float precise_pop FUN(3) 116 float precise_off FUN(4) 140 float precise_on2 FUN(3) 157 float precise_push FUN(3) [all …]
|
/external/apache-commons-bcel/src/examples/Mini/ |
D | max.mini | 1 FUN max(a, b) = IF a > b THEN a ELSE b FI 5 FUN LOOP(n, m) = IF n > 0 THEN 14 FUN abs(n) = IF n > 0 THEN n ELSE -n FI 16 FUN main() =
|
D | fac.mini | 3 FUN fac (n) = IF n == 0 THEN 1 7 FUN main() = LET
|
D | fib.mini | 3 FUN fib(n) = 8 FUN main() =
|
D | Mini.bnf | 5 "FUN" Ident "=" Expr
|
D | Mini.jjt | 70 /* "FUN" Ident() "(" NameList() ")" = Expr() 78 t = "FUN" { jjtThis.setPosition(t.beginLine, t.beginColumn); }
|
D | Mini.jj | 82 /* "FUN" Ident() "(" NameList() ")" = Expr() 97 t = "FUN" { jjtn000.setPosition(t.beginLine, t.beginColumn); }
|
/external/llvm-project/lld/test/MachO/ |
D | stabs.s | 44 # CHECK-NEXT: [[#%x, MAIN:]] - 0[[#TEXT_ID + 1]] 0000 FUN _main 45 # CHECK-NEXT: 0000000000000006 - 00 0000 FUN 46 # CHECK-NEXT: [[#%x, FUN:]] - 0[[#MORE_TEXT_ID + 1]] 0000 FUN _fun 47 # CHECK-NEXT: 0000000000000001 - 00 0000 FUN 53 # CHECK-NEXT: [[#%x, FOO:]] - 0[[#TEXT_ID + 1]] 0000 FUN _foo 54 # CHECK-NEXT: 0000000000000001 - 00 0000 FUN 59 # CHECK-NEXT: [[#FUN]] S _fun
|
/external/rust/crates/itertools/benches/ |
D | tree_fold1.rs | 28 $FUN:ident, 39 cloned(&v).$FUN(|x, y| x + y) 51 it.clone().map(|x| x as f32).$FUN(f32::atan2) 65 cloned(&v).map(|x| x.to_string()).$FUN(|x, y| format!("{} + {}", x, y))
|
/external/python/cpython2/Modules/_ctypes/libffi/src/x86/ |
D | ffi.c | 580 #define FFI_INIT_TRAMPOLINE_WIN64(TRAMP,FUN,CTX,MASK) \ argument 582 void* __fun = (void*)(FUN); \ 600 #define FFI_INIT_TRAMPOLINE(TRAMP,FUN,CTX) \ argument 602 unsigned int __fun = (unsigned int)(FUN); \ 611 #define FFI_INIT_TRAMPOLINE_RAW_THISCALL(TRAMP,FUN,CTX,SIZE) \ argument 613 unsigned int __fun = (unsigned int)(FUN); \ 638 #define FFI_INIT_TRAMPOLINE_STDCALL(TRAMP,FUN,CTX) \ argument 640 unsigned int __fun = (unsigned int)(FUN); \
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | readability-convert-member-functions-to-static.cpp | 197 #define FUN no_use_macro() macro 199 int FUN {
|
D | readability-make-member-function-const.cpp | 286 #define FUN const_use_macro() macro 287 int FUN {
|
/external/llvm-project/llvm/test/CodeGen/ARM/ |
D | aeabi-read-tp.ll | 20 ; CHECK-LONG: ldr [[REG:r[0-9]+]], [[FUN:.LCPI[0-9]+_[0-9]+]] 25 ; CHECK-LONG: [[FUN]]:
|
/external/catch2/include/internal/benchmark/ |
D | catch_benchmark.hpp | 40 template <class FUN> 41 Benchmark(std::string &&name, FUN &&func) in Benchmark()
|
/external/python/cpython2/Modules/_ctypes/libffi_arm_wince/ |
D | ffi.c | 276 #define FFI_INIT_TRAMPOLINE(TRAMP,FUN) \ argument 281 __tramp[2] = (unsigned int)(FUN); \
|
/external/google-breakpad/src/common/android/include/ |
D | stab.h | 47 _STAB_CODE_DEF(FUN,0x24) \
|
/external/python/cpython2/Modules/_ctypes/libffi_osx/x86/ |
D | x86-ffi_darwin.c | 307 #define FFI_INIT_TRAMPOLINE(TRAMP,FUN,CTX) \ argument 309 unsigned int __fun = (unsigned int)(FUN); \
|
/external/python/cpython3/Modules/_ctypes/libffi_osx/x86/ |
D | x86-ffi_darwin.c | 307 #define FFI_INIT_TRAMPOLINE(TRAMP,FUN,CTX) \ argument 309 unsigned int __fun = (unsigned int)(FUN); \
|
/external/llvm/test/Object/ |
D | nm-trivial-object.test | 160 macho-pa: 0000000100000f30 - 01 0000 FUN _main 161 macho-pa: 000000000000003b - 00 0000 FUN
|
/external/llvm-project/llvm/test/Object/ |
D | nm-trivial-object.test | 332 # macho-pa: 0000000100000f30 - 01 0000 FUN _main 333 # macho-pa: 000000000000003b - 00 0000 FUN
|
/external/python/cpython2/Modules/_ctypes/libffi/src/aarch64/ |
D | ffi.c | 904 #define FFI_INIT_TRAMPOLINE(TRAMP,FUN,CTX,FLAGS) \ argument 906 UINT64 __fun = (UINT64)(FUN); \
|
/external/python/cpython2/Modules/_ctypes/libffi/src/arm/ |
D | ffi.c | 754 #define FFI_INIT_TRAMPOLINE(TRAMP,FUN,CTX) \ argument 756 unsigned int __fun = (unsigned int)(FUN); \
|
/external/python/cpython2/Modules/_ctypes/libffi/doc/ |
D | libffi.info | 427 ffi_cif *CIF, void (*FUN) (ffi_cif *CIF, void *RET, void 441 FUN is the function which will be called when the closure is 448 FUN must fill this, unless the function is declared as
|
/external/llvm/utils/TableGen/ |
D | SubtargetEmitter.cpp | 380 for (unsigned j = 0, FUN = FUs.size(); j < FUN; ++j) in EmitStageAndOperandCycleData() local
|
/external/llvm-project/llvm/utils/TableGen/ |
D | SubtargetEmitter.cpp | 400 for (unsigned j = 0, FUN = FUs.size(); j < FUN; ++j) in EmitStageAndOperandCycleData() local
|