Home
last modified time | relevance | path

Searched refs:FUN (Results 1 – 25 of 3042) sorted by relevance

12345678910>>...122

/dports/math/singular/Singular-Release-4-2-1/libpolys/coeffs/
H A Dnumstats.h22 FUN(n_Test); \
23 FUN(n_Size); \
30 FUN(n_Init); \
32 FUN(n_Int); \
33 FUN(n_MPZ); \
35 FUN(n_Div); \
42 FUN(n_Add); \
44 FUN(n_Sub); \
56 FUN(n_Lcm); \
57 FUN(n_Gcd); \
[all …]
/dports/devel/arm-none-eabi-newlib/newlib-2.4.0/newlib/libc/sys/mmixware/sys/
H A Dsyscall.h49 #define TRAP1i(FUN, ARG1) \ argument
64 #define I3f(FUN, ARG1, N, ARGS) \ argument
72 #define DO32(FUN, ARG1, ARGS) \ argument
73 I3f (FUN, ARG1, 0, ARGS); \
74 else I3f (FUN, ARG1, 1, ARGS); \
75 else I3f (FUN, ARG1, 2, ARGS); \
111 #define TRAP1f(FUN, ARG1) \ argument
113 DO32 (FUN, ARG1, 0); \
117 #define TRAP2f(FUN, ARG1, ARG2) \ argument
119 DO32 (FUN, ARG1, ARG2); \
[all …]
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/newlib/libc/sys/mmixware/sys/
H A Dsyscall.h53 #define TRAP1i(FUN, ARG1) \ argument
68 #define I3f(FUN, ARG1, N, ARGS) \ argument
76 #define DO32(FUN, ARG1, ARGS) \ argument
77 I3f (FUN, ARG1, 0, ARGS); \
78 else I3f (FUN, ARG1, 1, ARGS); \
79 else I3f (FUN, ARG1, 2, ARGS); \
115 #define TRAP1f(FUN, ARG1) \ argument
117 DO32 (FUN, ARG1, 0); \
121 #define TRAP2f(FUN, ARG1, ARG2) \ argument
123 DO32 (FUN, ARG1, ARG2); \
[all …]
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/newlib/libc/sys/mmixware/sys/
H A Dsyscall.h53 #define TRAP1i(FUN, ARG1) \ argument
68 #define I3f(FUN, ARG1, N, ARGS) \ argument
76 #define DO32(FUN, ARG1, ARGS) \ argument
77 I3f (FUN, ARG1, 0, ARGS); \
78 else I3f (FUN, ARG1, 1, ARGS); \
79 else I3f (FUN, ARG1, 2, ARGS); \
115 #define TRAP1f(FUN, ARG1) \ argument
117 DO32 (FUN, ARG1, 0); \
121 #define TRAP2f(FUN, ARG1, ARG2) \ argument
123 DO32 (FUN, ARG1, ARG2); \
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/fluent-syntax/tests/fixtures/
H A Dcall_expressions.ftl5 valid-func-name-03 = {FUN-FUN()}
8 invalid-func-name-01 = {0FUN()}
34 multiline-call = {FUN(
66 unindented-arg-call = {FUN(
80 one-argument = {FUN(1,)}
83 mulitline-args = {FUN(
98 one-argument = {FUN(1,,)}
99 missing-arg = {FUN(,)}
105 sparse-named-arg = {FUN(
114 unindented-colon = {FUN(
[all …]
/dports/math/cocoalib/CoCoALib-0.99712/src/CoCoA-5/
H A DBuiltInOneLiners.H29 #define DECLARE_COCOALIB_FUNCTION0(FUN) \ argument
30 DECLARE_STD_BUILTIN_FUNCTION(FUN, 0) \
31 (void)runtimeEnv; return Value::from(FUN()); }
33 #define DECLARE_COCOALIB_FUNCTION1(FUN, ARG1T) \ argument
34 DECLARE_STD_BUILTIN_FUNCTION(FUN, 1) \
37 #define DECLARE_COCOALIB_FUNCTION2(FUN, ARG1T, ARG2T) \ argument
38 DECLARE_STD_BUILTIN_FUNCTION(FUN, 2) \
39 return Value::from(FUN( \
71 #define DECLARE_COCOALIBFORC5_FUNCTION0(FUN) \ argument
72 DECLARE_STD_BUILTIN_FUNCTION(FUN, 0) \
[all …]
/dports/math/giacxcas/CoCoALib-0.99700/src/CoCoA-5/
H A DBuiltInOneLiners.H29 #define DECLARE_COCOALIB_FUNCTION0(FUN) \ argument
30 DECLARE_STD_BUILTIN_FUNCTION(FUN, 0) \
31 (void)runtimeEnv; return Value::from(FUN()); }
33 #define DECLARE_COCOALIB_FUNCTION1(FUN, ARG1T) \ argument
34 DECLARE_STD_BUILTIN_FUNCTION(FUN, 1) \
37 #define DECLARE_COCOALIB_FUNCTION2(FUN, ARG1T, ARG2T) \ argument
38 DECLARE_STD_BUILTIN_FUNCTION(FUN, 2) \
39 return Value::from(FUN( \
71 #define DECLARE_COCOALIBFORC5_FUNCTION0(FUN) \ argument
72 DECLARE_STD_BUILTIN_FUNCTION(FUN, 0) \
[all …]
/dports/math/R/R-4.1.2/src/library/stats/R/
H A Daddmargins.R40 miss.FUN <- missing(FUN)
45 if (length(FUN) == 1 && !is.list(FUN)) {
47 FUN <- setNames(list(FUN), fname)
67 FUN <- eval.parent(add.names(substitute(FUN)))
68 if (is.null(names(FUN))) names(FUN) <- rep("", length(FUN))
75 if(length(FUN) == 1L)
76 FUN <- rep(FUN, n.sid)
93 if (is.list(FUN[[i]])) {
120 if(!inherits(FUN, "list")) FUN <- list(FUN)
156 FUN[[i]](A)
[all …]
/dports/math/libRmath/R-4.1.1/src/library/stats/R/
H A Daddmargins.R40 miss.FUN <- missing(FUN)
45 if (length(FUN) == 1 && !is.list(FUN)) {
47 FUN <- setNames(list(FUN), fname)
67 FUN <- eval.parent(add.names(substitute(FUN)))
68 if (is.null(names(FUN))) names(FUN) <- rep("", length(FUN))
75 if(length(FUN) == 1L)
76 FUN <- rep(FUN, n.sid)
93 if (is.list(FUN[[i]])) {
120 if(!inherits(FUN, "list")) FUN <- list(FUN)
156 FUN[[i]](A)
[all …]
/dports/math/R/R-4.1.2/src/library/base/R/
H A Dmatch.fun.R22 match.fun <- function (FUN, descend = TRUE) argument
24 if ( is.function(FUN) )
25 return(FUN)
26 if (!(is.character(FUN) && length(FUN) == 1L || is.symbol(FUN))) {
28 FUN <- eval.parent(substitute(substitute(FUN)))
29 if (!is.symbol(FUN))
31 deparse(FUN)), domain = NA)
35 FUN <- get(as.character(FUN), mode = "function", envir = envir)
37 FUN <- get(as.character(FUN), mode = "any", envir = envir)
38 if( !is.function(FUN) )
[all …]
/dports/math/libRmath/R-4.1.1/src/library/base/R/
H A Dmatch.fun.R22 match.fun <- function (FUN, descend = TRUE) argument
24 if ( is.function(FUN) )
25 return(FUN)
26 if (!(is.character(FUN) && length(FUN) == 1L || is.symbol(FUN))) {
28 FUN <- eval.parent(substitute(substitute(FUN)))
29 if (!is.symbol(FUN))
31 deparse(FUN)), domain = NA)
35 FUN <- get(as.character(FUN), mode = "function", envir = envir)
37 FUN <- get(as.character(FUN), mode = "any", envir = envir)
38 if( !is.function(FUN) )
[all …]
/dports/math/R-cran-xts/xts/R/
H A Dperiod.apply.R22 function(x, INDEX, FUN, ...) argument
25 FUN <- match.fun(FUN)
51 function (x, INDEX, FUN, ...) argument
56 FUN <- match.fun(FUN)
61 FUN <- match.fun(FUN)
75 function(x,FUN, ...) argument
81 function(x,FUN, ...) argument
88 function(x,FUN, ...) argument
95 function(x,FUN, ...) argument
102 function(x,FUN, ...) argument
[all …]
/dports/science/xcfun/xcfun-2.1.1-1-gf87ca0e/src/
H A Dxcint.cpp53 if (!(fundat_db<FUN>::symbol[0] == 'X' && fundat_db<FUN>::symbol[1] == 'C' && in xcint_functional_setup_helper()
54 fundat_db<FUN>::symbol[2] == '_')) in xcint_functional_setup_helper()
56 fundat_db<FUN>::d.name = fundat_db<FUN>::symbol + 3; in xcint_functional_setup_helper()
57 fundat_db<FUN>::d.id = static_cast<xcfun_functional_id>(FUN); in xcint_functional_setup_helper()
58 xcint_funs[FUN] = fundat_db<FUN>::d; in xcint_functional_setup_helper()
59 xcint_functional_setup_helper<FUN + 1>(); in xcint_functional_setup_helper()
71 template <int FUN> struct retarded_helper<FUN, 1> {
73 if (!(fundat_db<FUN>::symbol[0] == 'X' && fundat_db<FUN>::symbol[1] == 'C' && in doit()
76 fundat_db<FUN>::d.name = fundat_db<FUN>::symbol + 3; in doit()
77 fundat_db<FUN>::d.id = static_cast<xcfun_functional_id>(FUN); in doit()
[all …]
/dports/math/scilab-toolbox-swt/swt/macros/
H A Dwnoise.sci4 //X = wnoise(FUN,N)
9 //FUN :
49 select FUN
51 FUN=1;
53 FUN=2;
55 FUN=3;
57 FUN=4;
59 FUN=5;
61 FUN=6;
66 if (FUN<1 | FUN>6)
[all …]
/dports/devel/R-cran-future.apply/future.apply/tests/
H A Dfuture_apply.R14 Y0 <- apply(X, MARGIN = 1L, FUN = table)
15 Y1 <- future_apply(X, MARGIN = 1L, FUN = table)
19 Y0 <- apply(X, MARGIN = 1L, FUN = stats::quantile)
29 y0 <- apply(x, MARGIN = 2L, FUN = identity)
35 y0 <- apply(x3, MARGIN = 2:3, FUN = identity)
49 y0 <- apply(X, MARGIN = "rows", FUN = identity)
56 y0 <- apply(X, MARGIN = 1L, FUN = identity)
62 FUN <- function(x) { function
67 y0 <- apply(X, MARGIN = 1L, FUN = FUN)
68 y1 <- future_apply(X, MARGIN = 1L, FUN = FUN)
[all …]
H A Dfuture_lapply,globals.R29 future_lapply(x, FUN = function(x) {
50 future_lapply(1:2, FUN = function(x) { 2 * e },
70 do.call(FUN, args = list(a = a, b = b))
84 z_fun <- lapply(x, FUN = do.call, what = fun)
131 z0 <- lapply(X, FUN = function(f) f())
211 FUN <- function(x) { function
215 y0 <- lapply(X, FUN = FUN)
218 sizes <- unclass(c(FUN = object.size(FUN), X = object.size(X))) nameattr
224 y <- future_lapply(X, FUN = FUN)
231 y <- future_lapply(X, FUN = FUN)
[all …]
H A Dfuture_vapply.R13 y0 <- vapply(x, FUN = fun, FUN.VALUE = fun_value)
22 y0 <- vapply(x, FUN = fun, FUN.VALUE = fun_value)
31 y0 <- vapply(x, FUN = fun, FUN.VALUE = fun_value)
41 y0 <- vapply(df, FUN = fun, FUN.VALUE = fun_value)
50 y0 <- vapply(x, FUN = fun, FUN.VALUE = fun_value)
58 y0 <- vapply(x, FUN = fun, FUN.VALUE = fun_value)
66 y0 <- vapply(x, FUN = fun, FUN.VALUE = fun_value)
74 y0 <- vapply(x, FUN = fun, FUN.VALUE = fun_value)
82 y0 <- vapply(x, FUN = fun, FUN.VALUE = fun_value)
90 y0 <- vapply(x, FUN = fun, FUN.VALUE = fun_value)
[all …]
/dports/devel/R-cran-gsubfn/gsubfn/R/
H A Dgsubfn.R186 if (is.character(FUN)) {
187 FUN.orig <- FUN
200 FUN$X <- X
201 FUN$pattern <- pattern
202 FUN$simplify <- simplify
204 FUN$combine <- combine
209 if (!is.null(FUN[["pre"]])) FUN$pre()
220 if (!is.null(FUN[["post"]])) FUN$post()
224 FUN <- match.funfn(FUN)
262 pattern = pattern, FUN = FUN, backref = backref,
[all …]
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gcc.target/aarch64/
H A Dstruct_cpy.c49 FUN(1)
50 FUN(2)
51 FUN(3)
52 FUN(4)
53 FUN(5)
54 FUN(6)
55 FUN(7)
56 FUN(8)
57 FUN(9)
58 FUN(10)
[all …]
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gcc.target/aarch64/
H A Dstruct_cpy.c49 FUN(1)
50 FUN(2)
51 FUN(3)
52 FUN(4)
53 FUN(5)
54 FUN(6)
55 FUN(7)
56 FUN(8)
57 FUN(9)
58 FUN(10)
[all …]
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/testsuite/gcc.target/aarch64/
H A Dstruct_cpy.c49 FUN(1)
50 FUN(2)
51 FUN(3)
52 FUN(4)
53 FUN(5)
54 FUN(6)
55 FUN(7)
56 FUN(8)
57 FUN(9)
58 FUN(10)
[all …]
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/testsuite/gcc.target/aarch64/
H A Dstruct_cpy.c49 FUN(1)
50 FUN(2)
51 FUN(3)
52 FUN(4)
53 FUN(5)
54 FUN(6)
55 FUN(7)
56 FUN(8)
57 FUN(9)
58 FUN(10)
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/gcc.target/aarch64/
H A Dstruct_cpy.c49 FUN(1)
50 FUN(2)
51 FUN(3)
52 FUN(4)
53 FUN(5)
54 FUN(6)
55 FUN(7)
56 FUN(8)
57 FUN(9)
58 FUN(10)
[all …]
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/gcc.target/aarch64/
H A Dstruct_cpy.c49 FUN(1)
50 FUN(2)
51 FUN(3)
52 FUN(4)
53 FUN(5)
54 FUN(6)
55 FUN(7)
56 FUN(8)
57 FUN(9)
58 FUN(10)
[all …]
/dports/lang/gcc9/gcc-9.4.0/gcc/testsuite/gcc.target/aarch64/
H A Dstruct_cpy.c49 FUN(1)
50 FUN(2)
51 FUN(3)
52 FUN(4)
53 FUN(5)
54 FUN(6)
55 FUN(7)
56 FUN(8)
57 FUN(9)
58 FUN(10)
[all …]

12345678910>>...122