Searched refs:layout (Results 1 - 25 of 42) sorted by relevance

12

/freebsd-10.1-release/contrib/mdocml/
H A Dtbl_data.c46 if (dp->last && dp->last->layout)
47 cp = dp->last->layout->next;
49 cp = dp->layout->first;
53 * we want to match data with data layout cells in the header.
62 * Stop processing when we reach the end of the available layout
76 dat->layout = cp;
130 if (TBL_CELL_HORIZ == dat->layout->pos ||
131 TBL_CELL_DHORIZ == dat->layout->pos ||
132 TBL_CELL_DOWN == dat->layout->pos)
176 if (TBL_CELL_DOWN == dat->layout
[all...]
H A Dout.c166 * Account for the data cells in the layout, matching it
176 assert(dp->layout);
177 col = &tbl->cols[dp->layout->head->ident];
210 switch (dp->layout->pos) {
H A Dtbl_term.c289 assert(dp->layout);
309 switch (dp->layout->pos) {
379 switch (dp->layout->pos) {
H A Dtbl_html.c130 if (TBL_CELL_DOWN != dp->layout->pos)
H A Dmandoc.h122 MANDOCERR_TBLLAYOUT, /* bad table layout */
123 MANDOCERR_TBLNOLAYOUT, /* no table layout cells specified */
212 * A cell in a layout row.
230 * A layout row.
249 * string value that's in the cell. The rest is layout.
252 struct tbl_cell *layout; /* layout cell */ member in struct:tbl_dat
271 struct tbl_row *layout; /* layout row */ member in struct:tbl_span
H A Dtree.c342 if (NULL == dp->layout)
/freebsd-10.1-release/contrib/ntp/ntpdc/
H A DMakefile.am7 EXTRA_PROGRAMS= ntpdc ntpdc-layout
8 EXTRA_DATA= check-layout
24 # ntpdc-layout doesn't need any additional libraries at all
28 CLEANFILES= check-layout layout.here nl.c ntpdc-layout
34 layout.std \
123 ntpdc-layout.o: nl.c
125 layout.here: ntpdc-layout
[all...]
H A DMakefile.in97 EXTRA_PROGRAMS = ntpdc$(EXEEXT) ntpdc-layout$(EXEEXT)
162 ntpdc_layout_SOURCES = ntpdc-layout.c
163 ntpdc_layout_OBJECTS = ntpdc-layout.$(OBJEXT)
199 SOURCES = $(ntpdc_SOURCES) ntpdc-layout.c
200 DIST_SOURCES = $(ntpdc_SOURCES) ntpdc-layout.c
534 EXTRA_DATA = check-layout
545 # ntpdc-layout doesn't need any additional libraries at all
548 CLEANFILES = check-layout layout.here nl.c ntpdc-layout chec
[all...]
/freebsd-10.1-release/contrib/gdb/gdb/tui/
H A Dtui-layout.c1 /* TUI layout window management.
74 #define LAYOUT_USAGE "Usage: layout prev | next | <layout_name> \n"
76 /* Show the screen layout defined. */
78 show_layout (enum tui_layout_type layout) argument
82 if (layout != cur_layout)
85 ** Since the new layout may cause changes in window size, we
91 if (layout == SRC_DATA_COMMAND || layout == DISASSEM_DATA_COMMAND)
93 show_data (layout);
98 /* First make the current layout b
315 tui_default_win_height(enum tui_win_type type, enum tui_layout_type layout) argument
354 tui_default_win_viewport_height(enum tui_win_type type, enum tui_layout_type layout) argument
[all...]
/freebsd-10.1-release/contrib/llvm/utils/TableGen/
H A DSequenceToOffsetTable.h30 /// Compute the layout of a table that contains all the sequences, possibly by
56 // Entries in the final table, or 0 before layout was called.
68 /// This must be called before layout().
70 assert(Entries == 0 && "Cannot call add() after layout()");
87 /// layout - Computes the final table layout.
88 void layout() { function in class:llvm::SequenceToOffsetTable
89 assert(Entries == 0 && "Can only call layout() once");
101 assert(Entries && "Call layout() before get()");
113 assert(Entries && "Call layout() befor
[all...]
H A DRegisterInfoEmitter.cpp780 // Compute the final layout of the sequence table.
781 DiffSeqs.layout();
782 SubRegIdxSeqs.layout();
812 RegStrings.layout();
1043 VTSeqs.layout();
1120 SuperRegIdxSeqs.layout();
H A DAsmWriterEmitter.cpp316 StringTable.layout();
560 StringTable.layout();
H A DInstrInfoEmitter.cpp406 InstrNames.layout();
H A DIntrinsicEmitter.cpp454 LongEncodingTable.layout();
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBlocks.cpp110 // GC layout.
131 Purely notional variadic template describing the layout of a block.
307 assert(intSize <= ptrSize && "layout assumptions horribly violated");
329 /// Compute the layout of the given block. Attempts to lay the block
349 // Collect the layout chunks.
350 SmallVector<BlockLayoutChunk, 16> layout; local
351 layout.reserve(block->capturesCXXThis() +
367 layout.push_back(BlockLayoutChunk(tinfo.second, tinfo.first,
389 layout.push_back(BlockLayoutChunk(tinfo.second, tinfo.first,
395 // Otherwise, build a layout chun
[all...]
H A DCGRecordLayoutBuilder.cpp103 /// LayoutUnionField - Will layout a field in an union and return the type
108 /// LayoutUnion - Will layout a union RecordDecl.
117 /// LayoutFields - try to layout all fields in the record decl.
126 /// LayoutVirtualBase - layout a single virtual base.
130 /// LayoutVirtualBases - layout the virtual bases of a record decl.
134 /// MSLayoutVirtualBases - layout the virtual bases of a record decl,
139 /// LayoutNonVirtualBase - layout a single non-virtual base.
143 /// LayoutNonVirtualBases - layout the virtual bases of a record decl.
150 /// LayoutField - layout a single field. Returns false if the operation failed
154 /// LayoutBitField - layout
475 const ASTRecordLayout &layout = Types.getContext().getASTRecordLayout(D); local
[all...]
H A DCGExprConstant.cpp362 // Don't emit anonymous bitfields, they just affect layout.
452 // Don't emit anonymous bitfields, they just affect layout.
508 // Pick the type to use. If the type is layout identical to the ConvertType
1329 const CGRecordLayout &layout = CGM.getTypes().getCGRecordLayout(record); local
1331 (asCompleteObject ? layout.getLLVMType()
1332 : layout.getBaseSubobjectLLVMType());
1353 unsigned fieldIndex = layout.getNonVirtualBaseLLVMFieldNo(base);
1366 unsigned fieldIndex = layout.getLLVMFieldNo(field);
1386 unsigned fieldIndex = layout.getVirtualBaseIndex(base);
H A DCGDebugInfo.cpp813 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(CXXDecl); local
831 layout.getFieldOffset(fieldno), VUnit, RecordTy);
844 layout.getFieldOffset(fieldno), VUnit, RecordTy);
924 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record); local
945 CollectRecordNormalField(field, layout.getFieldOffset(fieldNo),
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclObjC.cpp1186 SmallVector<SynthesizeIvarChunk, 16> layout; local
1191 layout.push_back(SynthesizeIvarChunk(
1202 if (!layout.empty()) {
1204 std::stable_sort(layout.begin(), layout.end());
1205 unsigned Ix = 0, EIx = layout.size();
1207 data().IvarList = layout[0].Ivar; Ix++;
1210 for ( ; Ix != EIx; curIvar = layout[Ix].Ivar, Ix++)
1211 curIvar->setNextIvar(layout[Ix].Ivar);
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dsa.c73 * layout. The ZPL for example will usually have only about 10 different
82 * Each distinct layout is given a unique layout number and that is whats
85 * A layout only covers a single dbuf (bonus or spill). If a set of
92 * be rewritten and could result in a new layout number being constructed
93 * as part of the rewrite if no such layout exists for the new set of
97 * Both the attribute registration and attribute layout information are
102 * The registered attributes and layout "table" information is maintained
116 * the normal byteswap processing. The special ZAP layout attribute and
122 * and the layout/attribut
1125 sa_lot_t *layout; local
[all...]
/freebsd-10.1-release/sys/dev/hatm/
H A Dif_hatm.c1970 static const u_int layout[2][7] = HE_CONFIG_MEM_LAYOUT; local
2025 sc->cells_per_row = layout[sc->he622][0];
2026 sc->bytes_per_row = layout[sc->he622][1];
2027 sc->r0_numrows = layout[sc->he622][2];
2028 sc->tx_numrows = layout[sc->he622][3];
2029 sc->r1_numrows = layout[sc->he622][4];
2030 sc->r0_startrow = layout[sc->he622][5];
2033 sc->cells_per_lbuf = layout[sc->he622][6];
/freebsd-10.1-release/gnu/usr.bin/gdb/libgdb/
H A DMakefile52 tui-io.c tui-layout.c tui-out.c tui-regs.c tui-source.c \
/freebsd-10.1-release/contrib/dtc/Documentation/
H A Ddtc-paper.tex199 \caption{Device tree blob layout}
200 \label{fig:blob-layout}
209 Figure \ref{fig:blob-layout} shows the layout of the blob of data
404 layout of \texttt{/proc/device-tree} (roughly, a directory for each
/freebsd-10.1-release/gnu/usr.bin/cc/cc_int/
H A DMakefile58 see.o simplify-rtx.o sreal.o stmt.o stor-layout.o stringpool.o \
/freebsd-10.1-release/contrib/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp1236 TargetJITInfo::StubLayout layout = getJITInfo().getStubLayout();
1237 JE->startGVStub(Stub, layout.Size);

Completed in 139 milliseconds

12