Home
last modified time | relevance | path

Searched refs:layout (Results 1 – 25 of 304) sorted by relevance

12345678910>>...13

/freebsd-13.1/contrib/kyua/store/
H A Dlayout_test.cpp48 namespace layout = store::layout;
140 layout::find_results(id1).str()); in ATF_TEST_CASE_BODY()
144 layout::find_results(id2).str()); in ATF_TEST_CASE_BODY()
148 layout::find_results(id1).str()); in ATF_TEST_CASE_BODY()
152 layout::find_results(id1).str()); in ATF_TEST_CASE_BODY()
197 layout::find_results("foo_bar")); in ATF_TEST_CASE_BODY()
204 layout::find_results("foo_bar")); in ATF_TEST_CASE_BODY()
221 layout::find_results("foo_bar")); in ATF_TEST_CASE_BODY()
235 const layout::results_id_file_pair results = layout::new_db( in ATF_TEST_CASE_BODY()
251 const layout::results_id_file_pair results = layout::new_db( in ATF_TEST_CASE_BODY()
[all …]
H A Dlayout.cpp50 namespace layout = store::layout;
70 const fs::path store_dir = layout::query_store_dir(); in find_latest()
127 const char* layout::results_auto_create_name = "NEW";
133 const char* layout::results_auto_open_name = "LATEST";
144 layout::find_results(const std::string& id) in find_results()
183 layout::results_id_file_pair
184 layout::new_db(const std::string& id, const fs::path& root) in new_db()
212 layout::new_db_for_migration(const fs::path& root, in new_db_for_migration()
230 layout::query_store_dir(void) in query_store_dir()
251 layout::test_suite_for_path(const fs::path& path) in test_suite_for_path()
/freebsd-13.1/contrib/mandoc/
H A Dtbl_data.c61 cp = dp->last == NULL ? dp->layout->first : dp->last->layout->next; in getdata()
76 dp->layout->last->next = cp; in getdata()
77 cp->col = dp->layout->last->col + 1; in getdata()
78 dp->layout->last = cp; in getdata()
89 dat->layout = cp; in getdata()
111 pdat->layout->col < dat->layout->col) in getdata()
169 if ((dat->layout->pos == TBL_CELL_HORIZ || in getdata()
171 dat->layout->pos == TBL_CELL_DOWN) && in getdata()
212 if (dat->layout->pos == TBL_CELL_DOWN) in tbl_cdata()
225 dp->layout = rp; in newspan()
[all …]
H A Dtbl_term.c290 cp = cpn = sp->layout->first; in term_tbl()
321 uvert = dvert = sp->layout->vert; in term_tbl()
323 dvert < sp->next->layout->vert) in term_tbl()
324 dvert = sp->next->layout->vert; in term_tbl()
328 uvert = sp->prev->layout->vert; in term_tbl()
348 cp = sp->layout->first; in term_tbl()
350 sp->next->layout->first; in term_tbl()
352 sp->prev->layout->first; in term_tbl()
430 if (ic || sp->layout->first->pos in term_tbl()
833 ic = dp->layout->col; in tbl_literal()
[all …]
H A Dout.c151 icol = dp->layout->col; in tblcalc()
155 col->flags |= dp->layout->flags; in tblcalc()
156 if (dp->layout->flags & TBL_CELL_WIGN) in tblcalc()
161 if (dp->layout->wstr != NULL && in tblcalc()
162 dp->layout->width == 0 && in tblcalc()
165 dp->layout->width = in tblcalc()
167 if (col->width < dp->layout->width) in tblcalc()
168 col->width = dp->layout->width; in tblcalc()
172 col->spacing = dp->layout->spacing; in tblcalc()
183 dp->layout->width ? dp->layout->width : in tblcalc()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp139 Range.Entry.Memory = layout(File, Range.Content); in layout()
145 M.Entry.CvRecord = layout(File, M.CvRecord); in layout()
146 M.Entry.MiscRecord = layout(File, M.MiscRecord); in layout()
150 T.Entry.Stack.Memory = layout(File, T.Stack); in layout()
151 T.Entry.Context = layout(File, T.Context); in layout()
155 static size_t layout(BlobAllocator &File, in layout() function
167 layout(File, E); in layout()
172 static Directory layout(BlobAllocator &File, Stream &S) { in layout() function
190 DataEnd = layout(File, cast<MemoryListStream>(S)); in layout()
193 DataEnd = layout(File, cast<ModuleListStream>(S)); in layout()
[all …]
/freebsd-13.1/contrib/ntp/ntpdc/
H A DMakefile.am7 EXTRA_PROGRAMS= ntpdc ntpdc-layout
8 EXTRA_DATA= check-layout
31 CLEANFILES= check-layout layout.here nl.c ntpdc-layout
37 layout.std \
126 ntpdc-layout.o: nl.c
128 layout.here: ntpdc-layout
129 ./ntpdc-layout > $@
131 check-layout: ntpdc-layout $(srcdir)/layout.std layout.here
132 cmp $(srcdir)/layout.std layout.here && echo stamp > $@
H A DMakefile.in164 ntpdc_layout_SOURCES = ntpdc-layout.c
201 SOURCES = $(ntpdc_SOURCES) ntpdc-layout.c
535 EXTRA_DATA = check-layout
550 CLEANFILES = check-layout layout.here nl.c ntpdc-layout check-libopts \
557 layout.std \
789 @rm -f ntpdc-layout$(EXEEXT)
1205 ntpdc-layout.o: nl.c
1207 layout.here: ntpdc-layout
1208 ./ntpdc-layout > $@
1210 check-layout: ntpdc-layout $(srcdir)/layout.std layout.here
[all …]
/freebsd-13.1/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_data_sprom.c146 if (*magic != layout->magic_value) in bhnd_nvram_sprom_check_magic()
183 const bhnd_sprom_layout *layout; in bhnd_nvram_sprom_ident() local
192 layout = &bhnd_sprom_layouts[i]; in bhnd_nvram_sprom_ident()
207 if (nbytes > layout->size) in bhnd_nvram_sprom_ident()
210 nread = layout->size - nbytes; in bhnd_nvram_sprom_ident()
245 if (srev != layout->rev) in bhnd_nvram_sprom_ident()
278 *ident = layout; in bhnd_nvram_sprom_ident()
294 const bhnd_sprom_layout *layout; in bhnd_nvram_sprom_probe() local
308 const bhnd_sprom_layout *layout; in bhnd_nvram_sprom_getvar_direct() local
625 layout = NULL; in bhnd_nvram_sprom_serialize()
[all …]
H A Dbhnd_nvram_data_spromvar.h56 const bhnd_sprom_layout *layout);
126 const bhnd_sprom_layout *layout; /**< SPROM layout */ member
176 const bhnd_sprom_layout *layout; /**< layout definition */ member
H A Dbhnd_nvram_data_sprom_subr.c72 (_state)->input - (_state)->layout->bindings, ##__VA_ARGS__)
87 const struct bhnd_sprom_layout *layout) in bhnd_sprom_opcode_init() argument
95 state->layout = layout; in bhnd_sprom_opcode_init()
104 num_idx = state->layout->num_vars; in bhnd_sprom_opcode_init()
165 state->input = state->layout->bindings; in bhnd_sprom_opcode_reset()
169 bit_set(state->revs, state->layout->rev); in bhnd_sprom_opcode_reset()
326 opcodes = (state->input - state->layout->bindings); in bhnd_sprom_opcode_init_entry()
349 BHND_NV_ASSERT(entry->opcodes < state->layout->bindings_size, in bhnd_sprom_opcode_seek()
357 state->input = state->layout->bindings + entry->opcodes; in bhnd_sprom_opcode_seek()
895 return (bit_test(state->revs, state->layout->rev)); in bhnd_sprom_opcode_matches_layout_rev()
/freebsd-13.1/sys/contrib/openzfs/lib/libzfs_core/
H A Dlibzfs_core.abi359 <data-member access='public' layout-offset-in-bits='0'>
362 <data-member access='public' layout-offset-in-bits='16'>
776 <data-member access='public' layout-offset-in-bits='0'>
784 <data-member access='public' layout-offset-in-bits='0'>
929 <data-member access='public' layout-offset-in-bits='0'>
943 <data-member access='public' layout-offset-in-bits='0'>
963 <data-member access='public' layout-offset-in-bits='0'>
1035 <data-member access='public' layout-offset-in-bits='0'>
1126 <data-member access='public' layout-offset-in-bits='0'>
1138 <data-member access='public' layout-offset-in-bits='0'>
[all …]
/freebsd-13.1/contrib/apr/
H A Dconfig.layout2 ## config.layout -- Pre-defined Installation Path Layouts
5 ## - layouts can be loaded with configure's --enable-layout=ID option
6 ## - when no --enable-layout option is given, the default layout is `apr'
12 # Classical APR path layout designed for parallel installs.
29 # Classical single-installation APR path layout.
45 # GNU standards conforming path layout.
97 # Red Hat Linux 7.x layout
131 # BeOS layout...
148 # SuSE 6.x layout
165 # BSD/OS layout
[all …]
/freebsd-13.1/contrib/apr-util/
H A Dconfig.layout2 ## config.layout -- Pre-defined Installation Path Layouts
5 ## - layouts can be loaded with configure's --enable-layout=ID option
6 ## - when no --enable-layout option is given, the default layout is `apr'
12 # Classical APR-util path layout designed for parallel installs.
29 # Classical single-installation APR path layout.
45 # GNU standards conforming path layout.
97 # Red Hat Linux 7.x layout
131 # BeOS layout...
148 # SuSE 6.x layout
165 # BSD/OS layout
[all …]
/freebsd-13.1/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs.abi429 <data-member access='public' layout-offset-in-bits='0'>
435 <data-member access='public' layout-offset-in-bits='0'>
447 <data-member access='public' layout-offset-in-bits='0'>
471 <data-member access='public' layout-offset-in-bits='0'>
560 <data-member access='public' layout-offset-in-bits='0'>
578 <data-member access='public' layout-offset-in-bits='0'>
631 <data-member access='public' layout-offset-in-bits='0'>
741 <data-member access='public' layout-offset-in-bits='0'>
878 <data-member access='public' layout-offset-in-bits='0'>
933 <data-member access='public' layout-offset-in-bits='0'>
[all …]
/freebsd-13.1/contrib/subversion/subversion/libsvn_client/
H A Dlayout.c61 svn_client__layout_func_t layout; member
129 return svn_error_trace(lb->layout(lb->layout_baton, in layout_set_path()
187 return svn_error_trace(lb->layout(lb->layout_baton, in layout_link_path()
220 return svn_error_trace(lb->layout(lb->layout_baton, in layout_delete_path()
260 svn_client__layout_func_t layout, in svn_client__layout_list() argument
273 lb.layout = layout; in svn_client__layout_list()
/freebsd-13.1/contrib/kyua/cli/
H A Dcmd_db_migrate.cpp46 namespace layout = store::layout;
74 const fs::path results_file = layout::find_results( in run()
H A Dcmd_report_junit.cpp49 namespace layout = store::layout;
77 const fs::path results_file = layout::find_results( in run()
H A Dcmd_test.cpp50 namespace layout = store::layout;
151 const layout::results_id_file_pair results = layout::new_db( in run()
/freebsd-13.1/sys/contrib/openzfs/lib/libuutil/
H A Dlibuutil.abi650 <data-member access='public' layout-offset-in-bits='0'>
658 <data-member access='public' layout-offset-in-bits='0'>
849 <data-member access='public' layout-offset-in-bits='0'>
863 <data-member access='public' layout-offset-in-bits='0'>
883 <data-member access='public' layout-offset-in-bits='0'>
937 <data-member access='public' layout-offset-in-bits='0'>
1023 <data-member access='public' layout-offset-in-bits='0'>
1098 <data-member access='public' layout-offset-in-bits='0'>
1216 <data-member access='public' layout-offset-in-bits='0'>
1224 <data-member access='public' layout-offset-in-bits='0'>
[all …]
/freebsd-13.1/sys/contrib/openzfs/lib/libzfsbootenv/
H A Dlibzfsbootenv.abi57 <data-member access='public' layout-offset-in-bits='0'>
60 <data-member access='public' layout-offset-in-bits='32'>
63 <data-member access='public' layout-offset-in-bits='64'>
66 <data-member access='public' layout-offset-in-bits='128'>
69 <data-member access='public' layout-offset-in-bits='160'>
91 <data-member access='public' layout-offset-in-bits='0'>
94 <data-member access='public' layout-offset-in-bits='64'>
97 <data-member access='public' layout-offset-in-bits='128'>
100 <data-member access='public' layout-offset-in-bits='192'>
103 <data-member access='public' layout-offset-in-bits='256'>
[all …]
/freebsd-13.1/tools/lua/
H A Dtemplate.lua244 function template.new(view, layout)
253 if layout then
254 if type(layout) == "table" then
259 layout.blocks = context.blocks or {}
260 layout.view = context.view or EMPTY
261 layout:render()
267 layout.blocks = context.blocks or {}
268 layout.view = context.view
269 return tostring(layout)
276 template.render(layout, context)
[all …]
/freebsd-13.1/sys/contrib/openzfs/lib/libnvpair/
H A Dlibnvpair.abi608 <data-member access='public' layout-offset-in-bits='0'>
628 <data-member access='public' layout-offset-in-bits='0'>
1399 <data-member access='public' layout-offset-in-bits='0'>
1417 <data-member access='public' layout-offset-in-bits='0'>
1444 <data-member access='public' layout-offset-in-bits='0'>
1527 <data-member access='public' layout-offset-in-bits='0'>
1535 <data-member access='public' layout-offset-in-bits='0'>
1543 <data-member access='public' layout-offset-in-bits='0'>
1551 <data-member access='public' layout-offset-in-bits='0'>
1559 <data-member access='public' layout-offset-in-bits='0'>
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGVTables.h65 const VTableLayout &layout, unsigned componentIndex,
96 const VTableLayout &layout, llvm::Constant *rtti,
149 llvm::Type *getVTableType(const VTableLayout &layout);
H A DConstantInitBuilder.cpp210 auto &layout = Builder.CGM.getDataLayout(); in addPlaceholderWithSize() local
213 layout.getABITypeAlignment(type))); in addPlaceholderWithSize()
214 offset += CharUnits::fromQuantity(layout.getTypeStoreSize(type)); in addPlaceholderWithSize()
245 auto &layout = Builder.CGM.getDataLayout(); in getOffsetFromGlobalTo() local
253 layout.getABITypeAlignment(elementType))); in getOffsetFromGlobalTo()
254 offset += CharUnits::fromQuantity(layout.getTypeStoreSize(elementType)); in getOffsetFromGlobalTo()

12345678910>>...13