Searched refs:variables (Results 1 - 25 of 58) sorted by relevance

123

/haiku-fatelf/src/libs/linprog/
H A DActiveSetSolver.h25 /*! Copy the solved variables into results, keeping the original
77 ResultType FindMaxs(const VariableList* variables);
78 ResultType FindMins(const VariableList* variables);
91 const VariableList* variables,
H A DActiveSetSolver.cpp38 // better init all values to prevent side cases where not all variables
467 TRACE("More variables then constraints! vars: %i, constraints: %i\n",
477 // setup constraint matrix and add slack variables if necessary
517 // back to the variables
636 ActiveSetSolver::FindMaxs(const VariableList* variables) argument
638 return _FindWithConstraintsNoSoft(variables, AddMaxConstraint);
643 ActiveSetSolver::FindMins(const VariableList* variables) argument
645 return _FindWithConstraintsNoSoft(variables, AddMinConstraint);
691 ActiveSetSolver::_FindWithConstraintsNoSoft(const VariableList* variables, argument
698 for (int32 i = 0; i < variables
[all...]
H A DLinearSpec.cpp103 * objective function summands and variables.
264 // ref count the used variables
389 * @param vars the constraint's variables
522 LinearSpec::FindMins(const VariableList* variables) argument
524 fResult = fSolver->FindMins(variables);
530 LinearSpec::FindMaxs(const VariableList* variables) argument
532 fResult = fSolver->FindMaxs(variables);
/haiku-fatelf/src/add-ons/print/drivers/gutenprint/
H A DGPParameterVisitor.cpp46 stp_vars_t* variables = stp_vars_create_copy(defaultVariables); local
47 fVariables = variables;
49 stp_set_string_parameter(variables, kJobMode, kJob);
52 stp_describe_parameter(variables, kPrintingMode, &printingMode);
58 stp_set_string_parameter(variables, kPrintingMode, kColor);
60 stp_set_string_parameter(variables, kPrintingMode, kBlackAndWhite);
62 stp_set_string_parameter(variables, kChannelBitDepth, "8");
64 stp_parameter_list_t list = stp_get_parameter_list(variables);
83 stp_vars_destroy(variables);
/haiku-fatelf/src/bin/bash/builtins/
H A DMakefile263 bashgetopt.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/quit.h $(BASHINCDIR)/maxpath.h
272 common.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/input.h
283 evalfile.o: $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/quit.h $(BASHINCDIR)/maxpath.h
293 evalstring.o: $(BASHINCDIR)/memalloc.h $(topdir)/variables.h $(topdir)/conftypes.h $(topdir)/input.h
303 getopt.o: $(topdir)/general.h $(topdir)/xmalloc.h $(topdir)/error.h $(topdir)/variables.h $(topdir)/conftypes.h
317 alias.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
322 bind.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
327 break.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
332 builtin.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables.h $(topdir)/conftypes.h
337 cd.o: $(topdir)/shell.h $(topdir)/syntax.h $(topdir)/unwind_prot.h $(topdir)/variables
[all...]
/haiku-fatelf/src/bin/bc/bc/
H A Dstorage.c68 /* Three functions for increasing the number of functions, variables, or
128 old_var = variables;
133 variables = (bc_var **) bc_malloc (v_count*sizeof(bc_var *));
136 /* Copy the old variables. */
138 variables[indx] = old_var[indx];
142 variables[indx] = NULL;
332 /* The following routines manipulate simple variables and
333 array variables. */
344 var_ptr = variables[var_name];
347 var_ptr = variables[var_nam
[all...]
H A Dglobal.h1 /* global.h: The global variables for bc. */
81 /* global variables for the bc machine. All will be dynamic in size.*/
90 EXTERN bc_var **variables; variable
/haiku-fatelf/src/preferences/keymap/
H A DKeyboardLayout.h101 VariableMap& variables, BString& unknown);
104 VariableMap& variables);
H A DKeyboardLayout.cpp193 // You can define variables that are substituted in the row
201 // no specific size is given. Also, variables can be specified this
697 KeyboardLayout::_SubstituteVariables(BString& term, VariableMap& variables, argument
707 VariableMap::iterator iterator = variables.begin();
708 VariableMap::iterator best = variables.end();
711 for (; iterator != variables.end(); iterator++) {
720 if (best != variables.end()) {
742 BString& term, VariableMap& variables)
752 if (!_SubstituteVariables(term, variables, unknown)) {
770 VariableMap variables; local
741 _ParseTerm(const parse_state& state, const char*& data, BString& term, VariableMap& variables) argument
[all...]
/haiku-fatelf/src/bin/bash/
H A DMakefile358 dispose_cmd.c execute_cmd.c variables.c $(GLOBC) version.c \
367 general.h variables.h config.h $(ALLOC_HEADERS) alias.h \
386 dispose_cmd.o execute_cmd.o variables.o copy_cmd.o error.o \
780 variables.o: config-top.h
791 copy_cmd.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h
796 dispose_cmd.o: error.h general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h
804 eval.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h
810 execute_cmd.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h
819 expr.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h
825 findcmd.o: ${BASHINCDIR}/stdc.h error.h general.h xmalloc.h variables
[all...]
/haiku-fatelf/headers/libs/linprog/
H A DLinearSpec.h54 virtual ResultType FindMins(const VariableList* variables) = 0;
55 virtual ResultType FindMaxs(const VariableList* variables) = 0;
133 ResultType FindMins(const VariableList* variables);
134 ResultType FindMaxs(const VariableList* variables);
/haiku-fatelf/src/bin/network/wget/build-aux/
H A Dbuild_info.pl100 /* This stores global variables that are initialized with
H A Ddepcomp43 Environment variables:
/haiku-fatelf/src/bin/compress/
H A Dusermem.sh6 : user memory. These variables need to be set only if there is no
/haiku-fatelf/src/bin/gdb/gdb/
H A Dgdb_mbuild.sh39 Environment variables examined (with default if not defined):
/haiku-fatelf/src/libs/alm/
H A DSharedSolver.cpp489 VariableList variables(fLayouts.CountItems() * 2);
497 variables.AddItem(layout->Right());
498 variables.AddItem(layout->Bottom());
501 validator.CallSolverMethod(&fLinearSpec, &variables);
/haiku-fatelf/src/bin/bash/lib/sh/
H A DMakefile230 getenv.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
242 itos.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
251 makepath.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
263 netopen.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
272 oslib.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
283 pathcanon.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
294 pathphys.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
328 strerror.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
340 stringlist.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
349 stringvec.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables
[all...]
H A DMakefile.in277 getenv.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
290 itos.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
299 makepath.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
311 netopen.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
321 oslib.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
332 pathcanon.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
343 pathphys.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
364 eaccess.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
390 strerror.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
402 stringlist.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables
[all...]
/haiku-fatelf/src/bin/bash/support/
H A Dxenix-link.sh74 general.o make_cmd.o print_cmd.o dispose_cmd.o execute_cmd.o variables.o \
/haiku-fatelf/
H A Dconfigure34 variables will be set accordingly.
47 This overrides the HAIKU_* tool variables.
86 environment variables:
153 # Sets the variables for a GCC platform.
218 # Unset the HAIKU_{SHARED,STATIC}_LIB{STD,SUP}CXX variables, if the
/haiku-fatelf/src/bin/writembr/
H A Dmbr.S142 ; Structure containing the variables that don't need pre-initialization.
150 ;alias for easy access to our global variables
172 ;init our heap allocated variables with zeros
/haiku-fatelf/docs/user/
H A Dapidoc.dox68 of the methods, variables, functions, etc. will have to be the same.
614 This section helps you document (member) variables and defines that define
634 The variables you are going to encounter are either \c public or
635 \c protected member variables, or global variables that have a certain
636 significance. In the case of member variables, you'll need to document what
643 Global variables will mostly be constants. If so, document what they stand
/haiku-fatelf/src/bin/gawk/
H A Dawkgram.y87 NODE *variables[HASHSIZE];
88 static int var_count; /* total number of global variables */
2444 hp->hnext = variables[bucket];
2445 variables[bucket] = hp;
2462 for (bucket = variables[hash(name, len, (unsigned long) HASHSIZE)];
2535 for (p = variables[i]; p != NULL; p = p->hnext)
2576 for (p = variables[i]; p != NULL; p = next) {
2637 for (p = variables[i]; p != NULL; p = p->hnext) {
2649 for (p = variables[i]; p != NULL; p = p->hnext) {
2689 for (p = variables[
[all...]
/haiku-fatelf/src/bin/coreutils/
H A Dbootstrap53 contents are read as shell variables to configure the bootstrap.
55 For build prerequisites, environment variables like \$AUTOCONF and \$AMTAR
338 # Honor $APP variables ($TAR, $AUTOCONF, etc.)
/haiku-fatelf/src/libs/print/libgutenprint/scripts/
H A Ddepcomp41 Environment variables:

Completed in 152 milliseconds

123