Searched refs:wrap (Results 1 - 25 of 74) sorted by relevance

123

/freebsd-10.0-release/contrib/dialog/samples/
H A Dinputbox18 $DIALOG --cr-wrap \
H A Dmsgbox127 $DIALOG --aspect 6 --cr-wrap --title "MESSAGE BOX aspect=6 with --cr-wrap" \
33 The box will remain until you press the ENTER key. This box is being displayed with an aspect ratio of 6, and using --cr-wrap.\n" 0 0
H A Dmsgbox227 $DIALOG --aspect 6 --cr-wrap --title "MESSAGE BOX aspect=6 with --cr-wrap" \
33 The box will remain until you press the ENTER key. This box is being displayed with an aspect ratio of 6, and using --cr-wrap.\n" 0 0
H A Dform353 --backtitle "$backtitle" --no-collapse --cr-wrap \
60 --backtitle "$backtitle" --no-collapse --cr-wrap \
H A Dform454 --backtitle "$backtitle" --no-collapse --cr-wrap \
61 --backtitle "$backtitle" --no-collapse --cr-wrap \
H A Dform555 --backtitle "$backtitle" --no-collapse --cr-wrap \
62 --backtitle "$backtitle" --no-collapse --cr-wrap \
H A Dform655 --backtitle "$backtitle" --no-collapse --cr-wrap \
62 --backtitle "$backtitle" --no-collapse --cr-wrap \
H A Dmixedform44 --backtitle "$backtitle" --no-collapse --cr-wrap \
H A Dmixedform244 --backtitle "$backtitle" --no-collapse --cr-wrap \
/freebsd-10.0-release/usr.bin/tail/
H A Dread.c58 * storing the data in a wrap-around buffer which is then displayed. If the
69 int wrap; local
75 for (wrap = 0, ep = p + off; (ch = getc(fp)) != EOF;) {
78 wrap = 1;
94 if (wrap) {
113 if (wrap && (len = ep - p))
144 int blen, cnt, recno, wrap; local
149 blen = cnt = recno = wrap = 0;
170 wrap = 1;
185 wrap
[all...]
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DCore.cpp69 return wrap(new LLVMContext());
73 return wrap(&getGlobalContext());
93 return wrap(new Module(ModuleID, getGlobalContext()));
98 return wrap(new Module(ModuleID, *unwrap(C)));
154 return wrap(&unwrap(M)->getContext());
206 return wrap(&unwrap(Ty)->getContext());
227 return wrap(IntegerType::get(*unwrap(C), NumBits));
305 return wrap(FunctionType::get(unwrap(ReturnType), Tys, IsVarArg != 0));
313 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType());
324 *Dest++ = wrap(*
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DExpressionSourceCode.h62 bool wrap) :
66 m_wrap(wrap)
59 ExpressionSourceCode(const char *name, const char *prefix, const char *body, bool wrap) argument
/freebsd-10.0-release/lib/libwrap/
H A DMakefile7 LIB= wrap
/freebsd-10.0-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp25 return LLVMParseBitcodeInContext(wrap(&getGlobalContext()), MemBuf, OutModule,
35 *OutModule = wrap(ParseBitcodeFile(unwrap(MemBuf), *unwrap(ContextRef),
55 *OutM = wrap(getLazyBitcodeModule(unwrap(MemBuf), *unwrap(ContextRef),
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp32 inline LLVMTargetDataRef wrap(const DataLayout *P) { function
40 inline LLVMTargetLibraryInfoRef wrap(const TargetLibraryInfo *P) { function
52 return wrap(GenVal);
58 return wrap(GenVal);
73 return wrap(GenVal);
118 *OutEE = wrap(EE);
133 *OutInterp = wrap(Interp);
150 *OutJIT = wrap(JIT);
203 *OutJIT = wrap(JIT);
275 return wrap(Resul
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Object/
H A DObject.cpp26 inline LLVMObjectFileRef wrap(const ObjectFile *OF) { function
35 wrap(const section_iterator *SI) { function
45 wrap(const symbol_iterator *SI) { function
55 wrap(const relocation_iterator *SI) { function
62 return wrap(ObjectFile::createObjectFile(unwrap(MemBuf)));
72 return wrap(new section_iterator(SI));
99 return wrap(new symbol_iterator(SI));
157 return wrap(new relocation_iterator(SI));
226 return wrap(new symbol_iterator(ret));
/freebsd-10.0-release/contrib/llvm/lib/Target/
H A DTargetMachineC.cpp35 inline LLVMTargetDataRef wrap(const DataLayout *P) { function
43 inline LLVMTargetLibraryInfoRef wrap(const TargetLibraryInfo *P) { function
54 inline LLVMTargetMachineRef wrap(const TargetMachine *P) { function
58 inline LLVMTargetRef wrap(const Target * P) { function
64 return wrap(target);
67 return wrap(unwrap(T)->getNext());
128 return wrap(unwrap(T)->createTargetMachine(Triple, CPU, Features, opt, RM,
139 return wrap(target);
158 return wrap(unwrap(T)->getDataLayout());
H A DTarget.cpp31 inline LLVMTargetDataRef wrap(const DataLayout *P) { function
39 inline LLVMTargetLibraryInfoRef wrap(const TargetLibraryInfo *P) { function
54 return wrap(new DataLayout(StringRep));
84 return wrap(unwrap(TD)->getIntPtrType(getGlobalContext()));
88 return wrap(unwrap(TD)->getIntPtrType(getGlobalContext(), AS));
/freebsd-10.0-release/sys/dev/tsec/
H A Dif_tsec.h140 #define TSEC_CNT_INIT(cnt, wrap) ((cnt) = ((wrap) - 1))
142 #define TSEC_INC(count, wrap) (count = ((count) + 1) & ((wrap) - 1))
144 #define TSEC_GET_GENERIC(hand, tab, count, wrap) \
145 ((hand)->tab[TSEC_INC((hand)->count, wrap)])
147 #define TSEC_PUT_GENERIC(hand, tab, count, wrap, val) \
148 ((hand)->tab[TSEC_INC((hand)->count, wrap)] = val)
150 #define TSEC_BACK_GENERIC(sc, count, wrap) do { \
154 (sc)->count = (wrap)
[all...]
/freebsd-10.0-release/sys/compat/ndis/
H A Dkern_windrv.c583 windrv_wrap(func, wrap, argcnt, ftype)
585 funcptr *wrap;
612 *wrap = p;
755 windrv_wrap_fastcall(func, wrap, argcnt)
757 funcptr *wrap;
792 *wrap = p;
803 windrv_wrap_stdcall(func, wrap, argcnt)
805 funcptr *wrap;
836 *wrap = p;
846 windrv_wrap_regparm(func, wrap)
[all...]
/freebsd-10.0-release/sys/dev/sec/
H A Dsec.h233 /* Base allocation macros (warning: wrap must be 2^n) */
234 #define SEC_CNT_INIT(sc, cnt, wrap) \
235 (((sc)->cnt) = ((wrap) - 1))
236 #define SEC_ADD(sc, cnt, wrap, val) \
237 ((sc)->cnt = (((sc)->cnt) + (val)) & ((wrap) - 1))
238 #define SEC_INC(sc, cnt, wrap) \
239 SEC_ADD(sc, cnt, wrap, 1)
240 #define SEC_DEC(sc, cnt, wrap) \
241 SEC_ADD(sc, cnt, wrap, -1)
242 #define SEC_GET_GENERIC(sc, tab, cnt, wrap) \
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DCBindingWrapping.h24 inline ref wrap(const ty *P) { \
/freebsd-10.0-release/lib/libz/
H A Dinflate.h84 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ member in struct:inflate_state
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinflate.h82 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ member in struct:inflate_state
/freebsd-10.0-release/usr.bin/svn/lib/libsvn_repos/
H A DMakefile10 SRCS= authz.c commit.c delta.c deprecated.c dump.c fs-wrap.c \

Completed in 140 milliseconds

123