Home
last modified time | relevance | path

Searched refs:uopt (Results 1 – 25 of 66) sorted by relevance

123

/dports/sysutils/fusefs-unionfs/unionfs-fuse-2.2/src/
H A Dopts.c33 if (uopt.dbgpath) free(uopt.dbgpath); in set_debug_path()
65 uopt.debug = 1; in set_debug_onoff()
69 uopt.debug = 0; in set_debug_onoff()
101 uopt_t uopt; variable
174 uopt.branches = realloc(uopt.branches, (uopt.nbranches+1) * sizeof(branch_entry_t)); in add_branch()
188 uopt.branches[uopt.nbranches].path = strdup(res); in add_branch()
189 uopt.branches[uopt.nbranches].rw = 0; in add_branch()
194 uopt.branches[uopt.nbranches].rw = 1; in add_branch()
203 uopt.nbranches++; in add_branch()
324 uopt.branches[i].path = make_absolute(uopt.branches[i].path); in unionfs_post_opts()
[all …]
H A Dreaddir.c41 if (uopt.hide_meta_files == false) RETURN(false); in hide_meta_files()
49 if (strcmp(uopt.branches[branch].path, path) == 0 in hide_meta_files()
130 for (i = 0; i < uopt.nbranches; i++) { in unionfs_readdir()
134 if (BUILD_PATH(p, uopt.branches[i].path, path)) { in unionfs_readdir()
160 if (uopt.cow_enabled) { in unionfs_readdir()
180 if (uopt.cow_enabled) read_whiteouts(path, whiteouts, i); in unionfs_readdir()
186 if (uopt.cow_enabled) hashtable_destroy(whiteouts, 0); in unionfs_readdir()
212 for (i = 0; i < uopt.nbranches; i++) { in dir_not_empty()
216 if (BUILD_PATH(p, uopt.branches[i].path, path)) { in dir_not_empty()
244 if (uopt.cow_enabled) { in dir_not_empty()
[all …]
H A Dfuse_ops.c221 if (uopt.chroot) { in unionfs_init()
222 int res = chroot(uopt.chroot); in unionfs_init()
225 uopt.chroot, strerror(errno)); in unionfs_init()
451 if (!uopt.branches[i].rw) { in unionfs_rename()
473 if (!uopt.branches[i].rw) { in unionfs_rename()
488 if (!uopt.branches[i].rw) { in unionfs_rename()
500 if (uopt.branches[i].rw) { in unionfs_rename()
572 dev_t devno[uopt.nbranches]; in unionfs_statfs()
577 for (i = 0; i < uopt.nbranches; i++) { in unionfs_statfs()
610 if (uopt.branches[i].rw) { in unionfs_statfs()
[all …]
H A Dunionfs.c50 if (uopt.debug) debug_init(); in main()
52 if (!uopt.doexit) { in main()
53 if (uopt.nbranches == 0) { in main()
65 if (uid != 0 && gid != 0 && uopt.relaxed_permissions) { in main()
67 } else if (uopt.relaxed_permissions) { in main()
92 RETURN(uopt.doexit ? uopt.retval : res); in main()
H A Dfindbranch.c61 for (i = 0; i < uopt.nbranches; i++) { in debug_init()
63 if (BUILD_PATH(p, uopt.branches[i].path, path)) { in debug_init()
80 if (uopt.branches[i].rw) RETURN(i); in debug_init()
142 if (uopt.branches[branch].rw
145 if (!uopt.cow_enabled) {
155 branch_rw = find_lowest_rw_branch(uopt.nbranches);
206 if (uopt.branches[branch_rorw].rw) RETURN(branch_rorw);
209 if (!uopt.cow_enabled) {
237 if (uopt.branches[i].rw) RETURN(i); // found it it.
H A Dgeneral.c40 if (!uopt.cow_enabled) RETURN(false); in filedir_hidden()
60 if (!uopt.cow_enabled) RETURN(false); in path_hidden()
63 if (BUILD_PATH(whiteoutpath, uopt.branches[branch].path, METADIR, path)) RETURN(false); in path_hidden()
66 char *walk = whiteoutpath + uopt.branches[branch].path_len + strlen(METADIR) - 1; in path_hidden()
96 if (!uopt.cow_enabled) RETURN(0); in remove_hidden()
98 if (maxbranch == -1) maxbranch = uopt.nbranches; in remove_hidden()
103 if (BUILD_PATH(p, uopt.branches[i].path, METADIR, path)) RETURN(-ENAMETOOLONG); in remove_hidden()
149 if (BUILD_PATH(p, uopt.branches[branch_rw].path, metapath)) RETURN(-1); in do_create_whiteout()
H A Dcow.c37 sprintf(dirp, "%s%s", uopt.branches[nbranch_rw].path, path); in do_create()
50 sprintf(o_dirp, "%s%s", uopt.branches[nbranch_ro].path, path); in do_create()
77 if (!uopt.cow_enabled) RETURN(0); in path_create()
80 if (BUILD_PATH(p, uopt.branches[nbranch_rw].path, path)) RETURN(-ENAMETOOLONG); in path_create()
135 if (BUILD_PATH(from, uopt.branches[branch_ro].path, path)) in cow_cp()
137 if (BUILD_PATH(to, uopt.branches[branch_rw].path, path)) in cow_cp()
200 if (BUILD_PATH(from, uopt.branches[branch_ro].path, path)) RETURN(1); in copy_directory()
H A Ddebug.c23 pthread_rwlock_rdlock(&uopt.dbgpath_lock); // LOCK string
25 char *dbgpath = uopt.dbgpath;
46 pthread_rwlock_unlock(&uopt.dbgpath_lock); // UNLOCK string
H A Dunlink.c64 if (BUILD_PATH(p, uopt.branches[branch_rw].path, path)) RETURN(ENAMETOOLONG); in unlink_rw()
82 if (!uopt.branches[i].rw) { in unionfs_unlink()
84 if (!uopt.cow_enabled) { in unionfs_unlink()
H A Drmdir.c45 if (BUILD_PATH(p, uopt.branches[branch_rw].path, path)) return ENAMETOOLONG; in rmdir_rw()
96 if (!uopt.branches[i].rw) { in unionfs_rmdir()
98 if (!uopt.cow_enabled) { in unionfs_rmdir()
H A Ddebug.h17 if (!uopt.debug) break; \
32 if (uopt.debug) DBG("return %d\n", returncode); \
/dports/math/sundials/sundials-5.7.0/examples/arkode/C_parallel/
H A Dark_brusselator1D_task_local_nls.c164 UserOptions uopt; member
269 uopt = (UserOptions) malloc(sizeof(*uopt)); in main()
281 if (uopt->fused) in main()
322 free(uopt); in main()
419 WriteOutput(uopt->t0, y, udata, uopt); in EvolveProblemIMEX()
423 dtout = (uopt->tf - uopt->t0); in EvolveProblemIMEX()
440 tout = (tout > uopt->tf) ? uopt->tf : tout; in EvolveProblemIMEX()
548 WriteOutput(uopt->t0, y, udata, uopt); in EvolveProblemExplicit()
552 dtout = (uopt->tf - uopt->t0); in EvolveProblemExplicit()
569 tout = (tout > uopt->tf) ? uopt->tf : tout; in EvolveProblemExplicit()
[all …]
/dports/math/sundials/sundials-5.7.0/examples/arkode/CXX_parallel/
H A Dark_brusselator1D_task_local_nls.cpp141 if (uopt.fused) in main()
161 if (uopt.expl) retval = EvolveProblemExplicit(y, &udata, &uopt); in main()
225 retval = ARKStepSStolerances(arkode_mem, uopt->rtol, uopt->atol); in EvolveProblemIMEX()
243 if (uopt->global) in EvolveProblemIMEX()
283 WriteOutput(uopt->t0, y, udata, uopt); in EvolveProblemIMEX()
287 dtout = (uopt->tf - uopt->t0); in EvolveProblemIMEX()
304 tout = (tout > uopt->tf) ? uopt->tf : tout; in EvolveProblemIMEX()
409 WriteOutput(uopt->t0, y, udata, uopt); in EvolveProblemExplicit()
413 dtout = (uopt->tf - uopt->t0); in EvolveProblemExplicit()
430 tout = (tout > uopt->tf) ? uopt->tf : tout; in EvolveProblemExplicit()
[all …]
H A Dark_brusselator1D.h165 UserOptions* uopt; member
234 static int EvolveProblemIMEX(N_Vector y, UserData* udata, UserOptions* uopt);
237 static int EvolveProblemExplicit(N_Vector y, UserData* udata, UserOptions* uopt);
255 UserData* udata, UserOptions* uopt);
259 static int WriteOutput(double t, N_Vector y, UserData* udata, UserOptions* uopt);
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/udf/
H A Dsuper.c464 uopt->novrs = 0; in udf_parse_options()
466 uopt->lastblock = 0; in udf_parse_options()
467 uopt->anchor = 0; in udf_parse_options()
482 uopt->novrs = 1; in udf_parse_options()
565 if (uopt->nls_map) in udf_parse_options()
621 uopt.nls_map = NULL; in udf_remount_fs()
1975 if (!uopt->novrs) { in udf_load_vrs()
2126 uopt.umask = 0; in udf_fill_super()
2147 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) { in udf_fill_super()
2149 if (!uopt.nls_map) in udf_fill_super()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/udf/
H A Dsuper.c464 uopt->novrs = 0; in udf_parse_options()
466 uopt->lastblock = 0; in udf_parse_options()
467 uopt->anchor = 0; in udf_parse_options()
482 uopt->novrs = 1; in udf_parse_options()
565 if (uopt->nls_map) in udf_parse_options()
621 uopt.nls_map = NULL; in udf_remount_fs()
1975 if (!uopt->novrs) { in udf_load_vrs()
2126 uopt.umask = 0; in udf_fill_super()
2147 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) { in udf_fill_super()
2149 if (!uopt.nls_map) in udf_fill_super()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/fs/udf/
H A Dsuper.c464 uopt->novrs = 0; in udf_parse_options()
466 uopt->lastblock = 0; in udf_parse_options()
467 uopt->anchor = 0; in udf_parse_options()
482 uopt->novrs = 1; in udf_parse_options()
565 if (uopt->nls_map) in udf_parse_options()
621 uopt.nls_map = NULL; in udf_remount_fs()
1975 if (!uopt->novrs) { in udf_load_vrs()
2126 uopt.umask = 0; in udf_fill_super()
2147 if ((uopt.flags & (1 << UDF_FLAG_NLS_MAP)) && !uopt.nls_map) { in udf_fill_super()
2149 if (!uopt.nls_map) in udf_fill_super()
[all …]
/dports/science/afni/afni-AFNI_21.3.16/src/python_scripts/afnipy/
H A Ddb_mod.py74 if uopt:
240 % (uopt.name, ' '.join(uopt.parlist)))
1055 if uopt and bopt: bopt.parlist = uopt.parlist
1062 elif uopt and bopt: bopt.parlist = uopt.parlist
1382 if uopt:
1764 if uopt and bopt: bopt.parlist = uopt.parlist
1930 (uopt.parlist[0], uopt.parlist[1]))
2061 if uopt: bopt.parlist = uopt.parlist
4059 if uopt and bopt: bopt.parlist = uopt.parlist
5219 if uopt and bopt: bopt.parlist = uopt.parlist
[all …]
/dports/mail/emil/emil-2.1.0-beta9/charset/
H A Dconv.c42 int bopt=0, uopt= 0, qopt=0, popt=0, errflg=0, ic; variable
85 case 'u': uopt++; break; /* uncode base64 */
132 } else if (popt or uopt or qopt)
142 } else if (uopt) {
151 if (uopt) outqb(r,o);
/dports/science/tinker/tinker/source/
H A Depolar2.f1114 uirm = uopt(j,1,ii)*xr + uopt(j,2,ii)*yr
1117 ukrm = uopt(m,1,kk)*xr + uopt(m,2,kk)*yr
1170 uirm = uopt(j,1,i)*xr + uopt(j,2,i)*yr
1173 ukrm = uopt(m,1,k)*xr + uopt(m,2,k)*yr
1191 tixy = uopt(j,1,i)*term1 + uopt(j,2,i)*term2
1193 tkxy = uopt(m,1,k)*term1 + uopt(m,2,k)*term2
1197 tixz = uopt(j,1,i)*term1 + uopt(j,3,i)*term2
2175 uirm = uopt(j,1,ii)*xr + uopt(j,2,ii)*yr
2178 ukrm = uopt(m,1,kk)*xr + uopt(m,2,kk)*yr
2231 uirm = uopt(j,1,i)*xr + uopt(j,2,i)*yr
[all …]
H A Depolar1.f993 uirm = uopt(j,1,ii)*xr + uopt(j,2,ii)*yr
1049 uirm = uopt(j,1,i)*xr + uopt(j,2,i)*yr
1052 ukrm = uopt(m,1,k)*xr + uopt(m,2,k)*yr
2070 uirm = uopt(j,1,ii)*xr + uopt(j,2,ii)*yr
2126 uirm = uopt(j,1,i)*xr + uopt(j,2,i)*yr
2129 ukrm = uopt(m,1,k)*xr + uopt(m,2,k)*yr
3457 uirm = uopt(j,1,ii)*xr + uopt(j,2,ii)*yr
3513 uirm = uopt(j,1,i)*xr + uopt(j,2,i)*yr
5190 uirm = uopt(j,1,i)*xr + uopt(j,2,i)*yr
6366 uirm = uopt(j,1,i)*xr + uopt(j,2,i)*yr
[all …]
H A Dpolarize.f269 uopt(0,j,i) = udir(j,i)
279 uopt(k,j,i) = polarity(i) * field(j,i)
280 uind(j,i) = uopt(k,j,i)
292 usum(j,i) = usum(j,i) + uopt(k,j,i)
/dports/math/casadi/casadi-3.5.5/docs/examples/cplusplus/
H A Drocket_ipopt.cpp100 vector<double> uopt(res.at("x")); in main() local
101 cout << "optimal control: " << uopt << endl; in main()
106 xfcn({uopt}, {&sopt, &vopt, &mopt}); in main()
119 file << "u = " << uopt << ";" << endl; in main()
H A Drocket_snopt.cpp106 vector<double> uopt(res.at("x")); in main() local
107 cout << "optimal control: " << uopt << endl; in main()
112 xfcn({uopt}, {&sopt, &vopt, &mopt}); in main()
125 file << "u = " << uopt << ";" << endl; in main()
/dports/mail/mailutils/mailutils-3.13/libmailutils/opt/
H A Dopt.c516 struct mu_option *opt, *uopt; in parse() local
522 uopt = NULL; in parse()
527 opt = find_long_option (po, po->po_cur, &uopt, &po->po_cur, &value); in parse()
547 if (uopt) in parse()
550 po->po_long_opt_start, uopt->opt_long); in parse()
567 if (uopt in parse()
574 uopt->opt_long); in parse()

123