Home
last modified time | relevance | path

Searched refs:listcpy (Results 1 – 11 of 11) sorted by relevance

/dports/math/gap/gap-4.11.0/tst/teststandard/
H A Dstablesort.tst41 > listcpy1 := DEEP_COPY_OBJ(listcpy);
42 > listcpy2 := DEEP_COPY_OBJ(listcpy);
62 > local listcpy, perm;
63 > listcpy := DEEP_COPY_OBJ(list); StableSort(listcpy);
64 > if listcpy <> sorted then Print("Fail 1 : ", listcpy, list, sorted); fi;
66 > if listcpy <> sorted then Print("Fail 2 : ", listcpy, list, sorted); fi;
68 > if listcpy <> sorted then Print("Fail 3 : ", listcpy, list, sorted); fi;
69 > listcpy := DEEP_COPY_OBJ(list); Sort(listcpy, function (a,b) CheckIdObj(a,b); return a > b; end);
70 > if listcpy <> Reversed(sorted) then Print("Fail 4 : ", listcpy, list, sorted); fi;
133 > listcpy := List(list2);
[all …]
H A Dsort.tst12 > local listcpy, perm;
13 > listcpy := DEEP_COPY_OBJ(list); Sort(listcpy);
14 > if listcpy <> sorted then Print("Fail 1 : ", listcpy, list, sorted); fi;
15 > listcpy := DEEP_COPY_OBJ(list); Sort(listcpy, function (a,b) CheckIdObj(a,b); return a < b; end);
16 > if listcpy <> sorted then Print("Fail 2 : ", listcpy, list, sorted); fi;
17 > listcpy := DEEP_COPY_OBJ(list); Sort(listcpy, function (a,b) CheckIdObj(a,b); return a <= b; end…
18 > if listcpy <> sorted then Print("Fail 3 : ", listcpy, list, sorted); fi;
19 > listcpy := DEEP_COPY_OBJ(list); Sort(listcpy, function (a,b) CheckIdObj(a,b); return a > b; end);
20 > if listcpy <> Reversed(sorted) then Print("Fail 4 : ", listcpy, list, sorted); fi;
120 > listcpy := List(list2);
[all …]
/dports/math/gap/gap-4.11.0/src/
H A Dsortbase.h181 SORT_CREATE_LOCAL(listcpy); in PREFIXNAME()
182 SORT_ASS_LIST_TO_LOCAL(listcpy, left); in PREFIXNAME()
183 if (SORT_COMP_CHECK_EQ(SORT_ARGS, pivot, listcpy)) in PREFIXNAME()
190 SORT_CREATE_LOCAL(listcpy); in PREFIXNAME()
191 SORT_ASS_LIST_TO_LOCAL(listcpy, right); in PREFIXNAME()
192 if (!(SORT_COMP_CHECK_EQ(SORT_ARGS, pivot, listcpy))) in PREFIXNAME()
/dports/textproc/sgmls/sgmls/
H A Dambig.c68 #define listcpy(x, y) strcpy((char *)(x), (char *)(y)) macro
292 listcpy(nullablefirst, res->first);
347 listcpy(res->last, next->last);
/dports/textproc/linuxdoc-tools/linuxdoc-tools-0.9.82/sgmls-1.1/
H A Dambig.c68 #define listcpy(x, y) strcpy((char *)(x), (char *)(y)) macro
292 listcpy(nullablefirst, res->first);
347 listcpy(res->last, next->last);
/dports/shells/rc/rc-1.7.4/
H A Dlist.c25 extern List *listcpy(List *s, void *(*alloc)(size_t)) { in listcpy() function
H A Dvar.c19 …List *newdef = listcpy(def, ealloc); /* important to do the listcpy first; get_var_place() frees o… in varassign()
H A Drc.h275 extern List *listcpy(List *, void *(*)(size_t));
H A Dwalk.c140 for (l = listcpy(glob(glom(n->u[1].p)), nalloc); l != NULL; l = l->n) { in walk()
/dports/math/gretl/gretl-2021d/lib/src/
H A Dinteract.c3176 int *listcpy = NULL; in gretl_cmd_exec() local
3196 listcpy = gretl_list_copy(cmd->list); in gretl_cmd_exec()
3197 if (listcpy == NULL) { in gretl_cmd_exec()
3395 err = list_diffgenr(listcpy, cmd->ci, dset); in gretl_cmd_exec()
3403 err = list_orthdev(listcpy, dset); in gretl_cmd_exec()
3411 err = list_dumgenr(&listcpy, dset, cmd->opt); in gretl_cmd_exec()
3428 err = list_loggenr(listcpy, dset); in gretl_cmd_exec()
3436 err = list_stdgenr(listcpy, dset, cmd->opt); in gretl_cmd_exec()
3444 err = list_xpxgenr(&listcpy, dset, cmd->opt); in gretl_cmd_exec()
4073 if (listcpy != NULL) { in gretl_cmd_exec()
[all …]
H A Ddiscrete.c3935 int *listcpy; in count_model() local
3952 listcpy = gretl_list_copy(list); in count_model()
3953 if (listcpy == NULL) { in count_model()
3958 offvar = get_trailing_var(listcpy); in count_model()
3965 cmod = lsq(listcpy, dset, OLS, OPT_A); in count_model()
3966 free(listcpy); in count_model()