Searched refs:options (Results 1 - 25 of 201) sorted by relevance

123456789

/barrelfish-2018-10-04/usr/eclipseclp/JavaInterface/tests/
H A DTester.java36 EclipseEngineOptions options = new EclipseEngineOptions();
38 options.setEclipseDir(new File(System.getProperty("eclipse.directory")));
40 options.setUseQueues(true);
42 EclipseEngine eclipse = new OutOfProcessEclipse(options);
43 // EclipseEngine eclipse = EmbeddedEclipse.getInstance(options);
/barrelfish-2018-10-04/tools/aarch64_gem5/
H A DCacheConfig.py37 def config_cache(options, system):
38 if options.l2cache:
39 # if options.cpu_type == "arm_detailed":
40 # system.l2 = O3_ARM_v7aL2(size = options.l2_size, assoc = options.l2_assoc)
43 system.l2 = L2Cache(size = options.l2_size, assoc = options.l2_assoc)
49 system.cpu_clk_domain = SrcClockDomain(clock = options.clock, voltage_domain = system.voltage_domain)
52 for i in xrange(options.num_cpus):
53 if options
[all...]
H A Dgem5script.py35 def setCPUClass(options):
38 if options.cpu_type == "timing":
40 elif options.cpu_type == "detailed" or options.cpu_type == "arm_detailed":
41 if not options.caches and not options.ruby:
44 if options.cpu_type == "arm_detailed":
48 elif options.cpu_type == "inorder":
49 if not options.caches:
74 # Set up basic configuration options
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Dtsget12 use vars qw(%options);
42 # Error-handling related options.
43 $curl->setopt(CURLOPT_VERBOSE, 1) if $options{d};
59 # SSL related options.
63 $curl->setopt(CURLOPT_SSLKEY, $options{k}) if defined($options{k});
64 $curl->setopt(CURLOPT_SSLKEYPASSWD, $options{p}) if defined($options{p});
65 $curl->setopt(CURLOPT_SSLCERT, $options{c}) if defined($options{
[all...]
H A Dversion.c143 int cflags=0,version=0,date=0,options=0,platform=0,dir=0; local
161 options=1;
167 date=version=cflags=options=platform=dir=1;
191 if (options)
193 printf("options: ");
/barrelfish-2018-10-04/lib/libc/sys/
H A Dwait4.c44 wait4(pid_t pid, int *status, int options, struct rusage *ru) argument
48 __libc_interposing[INTERPOS_wait4])(pid, status, options, ru));
H A Dwait6.c45 wait6(idtype_t idtype, id_t id, int *status, int options, struct __wrusage *ru, argument
51 status, options, ru, infop));
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dread.h42 * values for parser options
49 Extern int ec_read_term ARGS((stream_id nst, int options, pword *result,
/barrelfish-2018-10-04/usr/eclipseclp/JavaInterface/src/com/parctechnologies/eclipse/
H A DJEclipse.java41 * JEclipse [options]
43 * [options] can be any of the usual ECLiPSe command-line options. -g, and -l
45 * the nearest megabyte. -h is ignored. The other documented options, -e and
46 * -b, and options following -- are processed as usual by the underlying
69 // options object
70 EclipseEngineOptions options = null;
75 // try to create the options object. If an exception is thrown because
80 options = createOptions();
92 // scan the command line arguments for the options
183 setMemoryOptionsFromCommandLine(EclipseEngineOptions options, String[] args) argument
[all...]
H A DEmbeddedEclipse.java39 * and then passed to this method to start the ECLiPSe with user-defined options.<p>
50 * EclipseEngineOptions options = new EclipseEngineOptions(new File("C:\Eclipse\"));
52 * options.setUseQueues(true);
55 * EclipseEngine testEclipse = EmbeddedEclipse.getInstance(options);
94 * embedded ECLiPSe using the options specified in the parameter
97 * @param options user-definable options used to configure the embedded
109 public synchronized static EmbeddedEclipse getInstance(EclipseEngineOptions options) argument
123 // create a new one using the param options
124 single = new EmbeddedEclipse(options);
159 EmbeddedEclipse(EclipseEngineOptions options) argument
218 processOptions(EclipseEngineOptions options) argument
[all...]
/barrelfish-2018-10-04/lib/libc/gen/
H A Dwait3.c48 __wait3(int *istat, int options, struct rusage *rup) argument
52 __libc_interposing[INTERPOS_wait4])(WAIT_ANY, istat, options, rup));
H A Dwaitpid.c48 __waitpid(pid_t pid, int *istat, int options) argument
52 __libc_interposing[INTERPOS_wait4])(pid, istat, options, NULL));
/barrelfish-2018-10-04/lib/openssl-1.0.0d/
H A Dconfig35 Usage: config [options]
45 *) options=$options" $i" ;;
509 options="$options -mips2"
517 # options="$options -mips4"
519 # options="$options -mips3"
533 # options
[all...]
/barrelfish-2018-10-04/tools/harness/
H A Dscalebench.py52 usage='Usage: %prog [options] SOURCEDIR RESULTDIR',
55 g = optparse.OptionGroup(p, 'Basic options')
73 g = optparse.OptionGroup(p, 'Debugging options')
82 options, args = p.parse_args()
84 debug.current_level = options.debuglevel
86 if options.listall:
92 options.sourcedir, options.resultsdir = args
95 if options.buildbase is None:
96 options
370 options = parse_args() variable in class:Scalebench
[all...]
/barrelfish-2018-10-04/tools/harness/machines/
H A Dgem5.py30 def __init__(self, options, operations, **kwargs):
31 super(Gem5MachineBase, self).__init__(options, operations, **kwargs)
80 def __init__(self, options, operations, **kwargs):
81 super(Gem5MachineARM, self).__init__(options, operations, **kwargs)
94 menulst_fullpath = os.path.join(self._machine.options.builds[0].build_dir,
101 cwd=self._machine.options.builds[0].build_dir)
113 # script_path = os.path.join(self.options.sourcedir, 'tools/arm_gem5', 'gem5script.py')
121 def __init__(self, options, **kwargs):
122 super(Gem5MachineARMSingleCore, self).__init__(options, Gem5MachineARMSingleCoreOperations(self), **kwargs)
130 os.path.join(self._machine.options
[all...]
H A Dfvp.py27 def __init__(self, options, operations, **kwargs):
30 super(FVPMachineBase, self).__init__(options, operations, **kwargs)
59 def __init__(self, options, operations, **kwargs):
60 super(FVPMachineARMv7, self).__init__(options, operations, **kwargs)
65 menulst_fullpath = os.path.join(self.options.builds[0].build_dir,
72 cwd=self.options.builds[0].build_dir)
76 def __init__(self, options, **kwargs):
77 super(FVPMachineARMv7NCores, self).__init__(options, FVPMachineARMv7NCoresOperations(self), **kwargs)
107 def __init__(self, options, simulator=None, **kwargs):
108 super(FVPMachineEFI, self).__init__(options, FVPMachineEFIOperation
[all...]
H A Dqemu.py18 def __init__(self, options, operations, **kwargs):
19 super(QEMUMachineBase, self).__init__(options, operations, **kwargs)
115 qemu_wrapper = os.path.join(self._machine.options.sourcedir, QEMU_SCRIPT_PATH)
128 def __init__(self, options, _class=None, **kwargs):
129 super(_class, self).__init__(options, QEMUMachineX64Operations(self), **kwargs)
150 def __init__(self, options, **kwargs):
151 super(QEMUMachineARMv7, self).__init__(options, QEMUMAchineARMv7Operations(self), **kwargs)
171 menulst_fullpath = os.path.join(self._machine.options.builds[0].build_dir,
178 cwd=self._machine.options.builds[0].build_dir)
181 qemu_wrapper = os.path.join(self._machine.options
[all...]
H A Dpandaboard.py30 def __init__(self, options, **kwargs):
31 super(PandaboardMachine, self).__init__(options, PandaboardOperations(self), **kwargs)
54 menulst_fullpath = os.path.join(self._machine.options.builds[0].build_dir,
59 cwd=self._machine.options.builds[0].build_dir)
63 debug.verbose("build dir: %s" % self._machine.options.builds[0].build_dir)
65 cwd=self._machine.options.builds[0].build_dir)
108 def __init__(self, options, **kwargs):
109 super(ETHRackPandaboardMachine, self).__init__(options, ETHRackPandaboardMachineOperations(self), **kwargs)
144 menulst_fullpath = os.path.join(self._machine.options.builds[0].build_dir,
147 source_name = os.path.join(self._machine.options
[all...]
/barrelfish-2018-10-04/lib/posixcompat/
H A Dwait.c29 pid_t wait3(int *status, int options, struct rusage *rusage) argument
32 return waitpid(-1, status, options);
35 pid_t waitpid(pid_t pid, int *status, int options) argument
38 bool nohang = options & WNOHANG ? true : false;
87 pid, *status, options, wpid);
/barrelfish-2018-10-04/lib/libc/stdlib/
H A Dgetopt_long.c80 #define PRINT_ERROR ((opterr) && (*options != ':'))
82 #define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */
83 #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */
88 #define BADARG ((*options == ':') ? (int)':' : (int)'?')
111 static int nonopt_end = -1; /* first option after non options (for permute) */
188 * Parse long options in argc/argv argument vector.
192 parse_long_options(char * const *nargv, const char *options, argument
357 getopt_internal(int nargc, char * const *nargv, const char *options, argument
364 if (options == NULL)
375 * Disable GNU extensions if POSIXLY_CORRECT is set or options
573 getopt(int nargc, char * const *nargv, const char *options) argument
593 getopt_long(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
606 getopt_long_only(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
[all...]
/barrelfish-2018-10-04/lib/pcre/
H A Dpcreposix.c140 REG_INVARG, /* inconsistent NEWLINE options */
274 int options = 0; local
277 if ((cflags & REG_ICASE) != 0) options |= PCRE_CASELESS;
278 if ((cflags & REG_NEWLINE) != 0) options |= PCRE_MULTILINE;
279 if ((cflags & REG_DOTALL) != 0) options |= PCRE_DOTALL;
280 if ((cflags & REG_NOSUB) != 0) options |= PCRE_NO_AUTO_CAPTURE;
281 if ((cflags & REG_UTF8) != 0) options |= PCRE_UTF8;
282 if ((cflags & REG_UCP) != 0) options |= PCRE_UCP;
283 if ((cflags & REG_UNGREEDY) != 0) options |= PCRE_UNGREEDY;
285 preg->re_pcre = pcre_compile2(pattern, options,
327 int options = 0; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/des/times/
H A Dalpha.cc4 options des ecb/s
H A Dhpux.cc3 options des ecb/s
/barrelfish-2018-10-04/lib/libc/resolv/
H A Dres_data.c97 * _res.options is tricky since some apps were known to diddle the bits
107 if (!(statp->options & RES_INIT))
108 statp->options = RES_DEFAULT;
126 if ((statp->options & RES_INIT) == 0U && res_init() == -1)
143 if ((statp->options & RES_INIT) == 0U && res_init() == -1) {
155 if ((statp->options & RES_INIT) == 0U && res_init() == -1) {
170 if ((statp->options & RES_INIT) == 0U && res_init() == -1) {
197 if ((statp->options & RES_INIT) == 0U && res_init() == -1) {
211 if ((statp->options & RES_INIT) == 0U && res_init() == -1) {
228 if ((statp->options
[all...]
/barrelfish-2018-10-04/tools/molly/
H A Dm5script.py29 # Set up basic configuration options: kernel location and number of
35 (options, args) = parser.parse_args()
44 system.kernel = options.kernel
54 system.cpu = [CPUClass(cpu_id=i) for i in xrange(options.num_cpus)]
56 for i in xrange(options.num_cpus):
76 io_apic = X86IntelMPIOAPIC(id = options.num_cpus,

Completed in 104 milliseconds

123456789