Searched refs:model (Results 1 - 25 of 234) sorted by path

12345678910

/freebsd-current/cddl/contrib/opensolaris/common/ctf/
H A Dctf_open.c1169 * Set the data model constant for the CTF container.
1172 ctf_setmodel(ctf_file_t *fp, int model) argument
1177 if (dp->ctd_code == model) {
1187 * Return the data model constant for the CTF container.
/freebsd-current/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_module.c866 int model; local
872 model = CTF_MODEL_LP64;
874 model = CTF_MODEL_ILP32;
877 * If the data model of the module does not match our program data
878 * model, then do not permit CTF from this module to be opened and
882 if (dtp->dt_conf.dtc_ctfmodel != model) {
900 (void) ctf_setmodel(dmp->dm_ctfp, model);
/freebsd-current/contrib/bmake/mk/
H A Dauto.dep.mk77 # doing 'make depend' isn't a big win with this model
/freebsd-current/contrib/bmake/mk/sys/
H A DNetBSD.mk47 # CPU model, derived from MACHINE_ARCH
63 DBG ?= -O -ffixed-g4 #Hack for embedany memory model compatibility
/freebsd-current/contrib/bsnmp/tests/
H A Dcatch.hpp6651 struct model : public callable {
6652 model(Fun&& fun) : fun(std::move(fun)) {}
6653 model(Fun const& fun) : fun(fun) {}
6655 model<Fun>* clone() const override { return new model<Fun>(*this); }
6673 BenchmarkFunction(model<T>* c) : f(c) {}
6677 : f(new model<do_nothing>{ {} }) {}
6682 : f(new model<typename std::decay<Fun>::type>(std::forward<Fun>(fun))) {}
6859 Detail::ChronometerModel<Clock> model;
6860 this->benchmark(Chronometer(model, iterations_per_sampl
[all...]
/freebsd-current/contrib/expat/examples/
H A Delement_declarations.c60 const XML_Content *model; member in struct:StackStruct
66 stackPushMalloc(Stack *stackTop, const XML_Content *model, unsigned level) { argument
71 newStackTop->model = model;
121 dumpContentModelElement(const XML_Content *model, unsigned level, argument
130 printf("[%u] type=%s(%d), quant=%s(%d)", (unsigned)(model - root),
131 contentTypeName(model->type), model->type,
132 contentQuantName(model->quant), model
151 const XML_Content *const model = stackTop->model; local
178 handleElementDeclaration(void *userData, const XML_Char *name, XML_Content *model) argument
[all...]
/freebsd-current/contrib/expat/lib/
H A Dexpat.h180 description of the model argument. It's the user code's responsibility
181 to free model when finished with it. See XML_FreeContentModel.
182 There is no need to free the model from the handler, it can be kept
187 XML_Content *model);
974 /* Frees the content model passed to the element declaration handler */
976 XML_FreeContentModel(XML_Parser parser, XML_Content *model);
H A Dxmlparse.c406 /* === scaffolding for building content model === */
2366 XML_FreeContentModel(XML_Parser parser, XML_Content *model) { argument
2368 FREE(parser, model);
5667 XML_Content *model = build_model(parser); local
5668 if (! model)
5672 parser->m_handlerArg, parser->m_declElementType->name, model);
/freebsd-current/contrib/expat/tests/
H A Dbasic_tests.c2069 XML_Content *model) {
2073 /* Expected model array structure is this:
2082 errorFlags |= ((model != NULL) ? 0 : (1u << 1));
2084 if (model != NULL) {
2085 errorFlags |= ((model[0].type == XML_CTYPE_SEQ) ? 0 : (1u << 2));
2086 errorFlags |= ((model[0].quant == XML_CQUANT_NONE) ? 0 : (1u << 3));
2087 errorFlags |= ((model[0].numchildren == 2) ? 0 : (1u << 4));
2088 errorFlags |= ((model[0].children == &model[1]) ? 0 : (1u << 5));
2089 errorFlags |= ((model[
2068 element_decl_check_model(void *userData, const XML_Char *name, XML_Content *model) argument
5385 element_decl_counter(void *userData, const XML_Char *name, XML_Content *model) argument
[all...]
H A Ddummy.c122 XML_Content *model) {
125 /* The content model must be freed by the handler. Unfortunately
129 XML_FreeContentModel(g_parser, model);
121 dummy_element_decl_handler(void *userData, const XML_Char *name, XML_Content *model) argument
H A Ddummy.h98 XML_Content *model);
H A Dhandlers.c550 XML_Content *model) {
559 XML_FreeContentModel(g_parser, model);
1836 XML_Content *model) {
1840 XML_FreeContentModel(g_parser, model);
549 entity_suspending_decl_handler(void *userData, const XML_Char *name, XML_Content *model) argument
1835 element_decl_suspender(void *userData, const XML_Char *name, XML_Content *model) argument
H A Dhandlers.h249 XML_Content *model);
553 XML_Content *model);
/freebsd-current/contrib/file/
H A Dltmain.sh7065 # Tru64 UNIX uses -model [arg] to determine the layout of C++
7068 -model|-arch|-isysroot|--sysroot)
/freebsd-current/contrib/kyua/
H A DMakefile.am64 include model/Makefile.am.inc
/freebsd-current/contrib/kyua/cli/
H A Dcmd_list.cpp38 #include "model/metadata.hpp"
39 #include "model/test_case.hpp"
40 #include "model/test_program.hpp"
41 #include "model/types.hpp"
81 got_test_case(const model::test_program& test_program,
101 const model::test_program& test_program,
104 const model::test_case& test_case = test_program.find(test_case_name);
114 const model::metadata default_md = model::metadata_builder().build();
115 const model
[all...]
H A Dcmd_list.hpp38 #include "model/test_program_fwd.hpp"
46 void list_test_case(utils::cmdline::ui*, const bool, const model::test_program&,
H A Dcmd_list_test.cpp33 #include "model/metadata.hpp"
34 #include "model/test_program.hpp"
47 const model::metadata md = model::metadata_builder()
50 const model::test_program test_program = model::test_program_builder(
67 const model::test_program test_program = model::test_program_builder(
83 const model::metadata md = model
[all...]
H A Dcmd_report.cpp41 #include "model/context.hpp"
42 #include "model/metadata.hpp"
43 #include "model/test_case.hpp"
44 #include "model/test_program.hpp"
45 #include "model/test_result.hpp"
46 #include "model/types.hpp"
109 model::test_result result;
122 const model::test_result& result_,
134 std::map< model::test_result_type, std::vector< result_data > > _results;
162 print_context(const model
[all...]
H A Dcmd_report_html.cpp40 #include "model/context.hpp"
41 #include "model/metadata.hpp"
42 #include "model/test_case.hpp"
43 #include "model/test_program.hpp"
44 #include "model/test_result.hpp"
109 test_case_filename(const model::test_program& test_program,
170 std::map< model::test_result_type, std::size_t > _types_count;
192 add_to_summary(const model::test_program& test_program,
194 const model::test_result& result,
205 case model
[all...]
H A Dcmd_test.cpp35 #include "model/test_program.hpp"
36 #include "model/test_result.hpp"
90 got_test_case(const model::test_program& test_program,
107 got_result(const model::test_program& test_program,
109 const model::test_result& result,
H A Dcommon.cpp37 #include "model/test_program.hpp"
38 #include "model/test_result.hpp"
151 typedef std::map< std::string, model::test_result_type > types_map;
153 valid_types["broken"] = model::test_result_broken;
154 valid_types["failed"] = model::test_result_failed;
155 valid_types["passed"] = model::test_result_passed;
156 valid_types["skipped"] = model::test_result_skipped;
157 valid_types["xfail"] = model::test_result_expected_failure;
279 types.push_back(model::test_result_passed);
280 types.push_back(model
[all...]
H A Dcommon.hpp40 #include "model/test_program_fwd.hpp"
41 #include "model/test_result.hpp"
78 typedef std::vector< model::test_result_type > result_types;
94 std::string format_result(const model::test_result&);
95 std::string format_test_case_id(const model::test_program&, const std::string&);
H A Dcommon_test.cpp37 #include "model/metadata.hpp"
38 #include "model/test_program.hpp"
39 #include "model/test_result.hpp"
138 exp_types.push_back(model::test_result_skipped);
139 exp_types.push_back(model::test_result_expected_failure);
140 exp_types.push_back(model::test_result_broken);
141 exp_types.push_back(model::test_result_failed);
154 exp_types.push_back(model::test_result_passed);
155 exp_types.push_back(model::test_result_skipped);
156 exp_types.push_back(model
[all...]
/freebsd-current/contrib/kyua/drivers/
H A Ddebug_test.cpp38 #include "model/test_case.hpp"
39 #include "model/test_program.hpp"
40 #include "model/test_result.hpp"
92 const model::test_program_ptr test_program = match.get().first;
101 const model::test_result test_result = test_result_handle->test_result();

Completed in 345 milliseconds

12345678910