Searched refs:expand (Results 1 - 25 of 137) sorted by relevance

123456

/freebsd-current/usr.bin/expand/
H A DMakefile2 PROG= expand
3 MLINKS= expand.1 unexpand.1
/freebsd-current/contrib/bmake/unit-tests/
H A Ddir-expand-path.exp1 dir-expand-path.dir.1/file1.src
2 dir-expand-path.dir.1/file2.src
3 dir-expand-path.dir.2/file3.src
H A Dvarname-make_print_var_on_error.mk15 # does not expand the node-local variables like .TARGET. This results in the
H A Dvarname-dollar.mk7 # and $$ would always expand to the same value.
H A Dvarname-make_print_var_on_error-jobs.mk17 # does not expand the node-local variables like .TARGET. This results in the
/freebsd-current/tools/tools/net80211/w00t/expand/
H A DMakefile4 PROG= expand
/freebsd-current/tools/tools/net80211/w00t/
H A DMakefile2 SUBDIR= libw00t ap assoc expand prga redir
/freebsd-current/contrib/dialog/samples/
H A Dtextbox-both11 expand < textbox.txt > $tempfile
12 expand < $TEXT >> $tempfile
H A Dtextbox311 expand < textbox.txt > $tempfile
12 expand < $TEXT >> $tempfile
H A Dtextbox-help11 expand < textbox.txt > $tempfile
12 expand < $TEXT >> $tempfile
/freebsd-current/contrib/ncurses/man/
H A DMKterminfo.sh80 /^#%center/s, expand,,
119 sed -e '/^center expand;/s, expand,,' \
/freebsd-current/crypto/openssl/crypto/comp/
H A Dcomp_local.h18 int (*expand) (COMP_CTX *ctx, member in struct:comp_method_st
H A Dcomp_lib.c79 if (ctx->meth->expand == NULL) {
82 ret = ctx->meth->expand(ctx, out, olen, in, ilen);
/freebsd-current/contrib/llvm-project/clang/lib/Tooling/
H A DExpandResponseFilesCompilationDatabase.cpp43 return expand(Base->getCompileCommands(FilePath));
47 return expand(Base->getAllCompileCommands());
51 std::vector<CompileCommand> expand(std::vector<CompileCommand> Cmds) const { function in class:clang::tooling::__anon942::ExpandResponseFilesDatabase
/freebsd-current/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DSetTheory.h92 virtual void expand(SetTheory&, Record*, RecSet &Elts) = 0;
137 /// expand - Expand a record into a set of elements if possible. Return a
140 const RecVec *expand(Record *Set);
/freebsd-current/contrib/tcp_wrappers/
H A Dtcpdmatch.c328 static void expand(char *text, char *pattern, struct request_info *request) function
345 expand("client: hostname", "%n", request);
346 expand("client: address ", "%a", request);
347 expand("client: username", "%u", request);
348 expand("server: hostname", "%N", request);
349 expand("server: address ", "%A", request);
350 expand("server: process ", "%d", request);
/freebsd-current/contrib/bmake/
H A Dstr.c114 * If expand is true, quotes are removed and escape sequences such as \r, \t,
121 Substring_Words(const char *str, bool expand) argument
165 if (!expand) {
175 if (!expand) {
207 if (expand && inquote != '\0') {
222 if (!expand) {
276 Str_Words(const char *str, bool expand) argument
282 swords = Substring_Words(str, expand);
/freebsd-current/crypto/openssl/crypto/objects/
H A Dobjects.pl160 sub expand subroutine
173 print expand("#define SN_$Cname\t\t\"$sn{$Cname}\"\n") if $sn{$Cname} ne "";
174 print expand("#define LN_$Cname\t\t\"$ln{$Cname}\"\n") if $ln{$Cname} ne "";
175 print expand("#define NID_$Cname\t\t$nid{$Cname}\n") if $nid{$Cname} ne "";
176 print expand("#define OBJ_$Cname\t\t$obj{$Cname}\n") if $obj{$Cname} ne "";
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRShiftExpand.cpp36 void expand(BinaryOperator *BI);
43 INITIALIZE_PASS(AVRShiftExpand, "avr-shift-expand", "AVR Shift Expansion",
53 // Only expand shift instructions (shl, lshr, ashr).
56 // Only expand non-8-bit and non-16-bit shifts, since those are expanded
60 // Only expand when the shift amount is not known.
66 // The expanding itself needs to be done separately as expand() will remove
70 expand(I);
77 void AVRShiftExpand::expand(BinaryOperator *BI) { function in class:AVRShiftExpand
130 llvm_unreachable("asked to expand an instruction that is not a shift");
H A DAVRExpandPseudoInsts.cpp54 template <unsigned OP> bool expand(Block &MBB, BlockIt MBBI);
136 assert(ExpandCount < 10 && "pseudo expand limit reached");
289 bool AVRExpandPseudo::expand<AVR::ADDWRdRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
294 bool AVRExpandPseudo::expand<AVR::ADCWRdRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
299 bool AVRExpandPseudo::expand<AVR::SUBWRdRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
304 bool AVRExpandPseudo::expand<AVR::SUBIWRdK>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
353 bool AVRExpandPseudo::expand<AVR::SBCWRdRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
358 bool AVRExpandPseudo::expand<AVR::SBCIWRdK>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
398 bool AVRExpandPseudo::expand<AVR::ANDWRdRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
403 bool AVRExpandPseudo::expand<AV function in class:__anon2286::AVRExpandPseudo
408 bool AVRExpandPseudo::expand<AVR::ORWRdRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
413 bool AVRExpandPseudo::expand<AVR::ORIWRdK>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
418 bool AVRExpandPseudo::expand<AVR::EORWRdRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
423 bool AVRExpandPseudo::expand<AVR::COMWRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
455 bool AVRExpandPseudo::expand<AVR::NEGWRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
494 bool AVRExpandPseudo::expand<AVR::CPWRdRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
527 bool AVRExpandPseudo::expand<AVR::CPCWRdRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
562 bool AVRExpandPseudo::expand<AVR::LDIWRdK>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
613 bool AVRExpandPseudo::expand<AVR::LDSWRdK>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
659 bool AVRExpandPseudo::expand<AVR::LDWRdPtr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
703 bool AVRExpandPseudo::expand<AVR::LDWRdPtrPi>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
736 bool AVRExpandPseudo::expand<AVR::LDWRdPtrPd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
769 bool AVRExpandPseudo::expand<AVR::LDDWRdPtrQ>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
940 bool AVRExpandPseudo::expand<AVR::LPMWRdZ>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
945 bool AVRExpandPseudo::expand<AVR::ELPMWRdZ>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
986 bool AVRExpandPseudo::expand<AVR::ELPMBRdZ>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
991 bool AVRExpandPseudo::expand<AVR::LPMBRdZ>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
996 bool AVRExpandPseudo::expand<AVR::LPMWRdZPi>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1001 bool AVRExpandPseudo::expand<AVR::ELPMBRdZPi>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1006 bool AVRExpandPseudo::expand<AVR::ELPMWRdZPi>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1053 bool AVRExpandPseudo::expand<AVR::AtomicLoad8>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1058 bool AVRExpandPseudo::expand<AVR::AtomicLoad16>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1063 bool AVRExpandPseudo::expand<AVR::AtomicStore8>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1068 bool AVRExpandPseudo::expand<AVR::AtomicStore16>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1073 bool AVRExpandPseudo::expand<AVR::AtomicFence>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1080 bool AVRExpandPseudo::expand<AVR::STSWKRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1147 bool AVRExpandPseudo::expand<AVR::STWPtrRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1199 bool AVRExpandPseudo::expand<AVR::STWPtrPiRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1234 bool AVRExpandPseudo::expand<AVR::STWPtrPdRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1269 bool AVRExpandPseudo::expand<AVR::STDWPtrQRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1341 bool AVRExpandPseudo::expand<AVR::STDSPQRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1360 bool AVRExpandPseudo::expand<AVR::STDWSPQRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1379 bool AVRExpandPseudo::expand<AVR::INWRdA>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1411 bool AVRExpandPseudo::expand<AVR::OUTWARr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1443 bool AVRExpandPseudo::expand<AVR::PUSHWRr>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1468 bool AVRExpandPseudo::expand<AVR::POPWRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1523 bool AVRExpandPseudo::expand<AVR::ROLBRdR1>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1528 bool AVRExpandPseudo::expand<AVR::ROLBRdR17>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1533 bool AVRExpandPseudo::expand<AVR::RORBRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1561 bool AVRExpandPseudo::expand<AVR::LSLWRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1595 bool AVRExpandPseudo::expand<AVR::LSLWHiRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1745 bool AVRExpandPseudo::expand<AVR::LSLWNRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1762 bool AVRExpandPseudo::expand<AVR::LSRWRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1794 bool AVRExpandPseudo::expand<AVR::LSRWLoRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1943 bool AVRExpandPseudo::expand<AVR::LSRWNRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1960 bool AVRExpandPseudo::expand<AVR::RORWRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1966 bool AVRExpandPseudo::expand<AVR::ROLWRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
1972 bool AVRExpandPseudo::expand<AVR::ASRWRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
2004 bool AVRExpandPseudo::expand<AVR::ASRWLoRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
2201 bool AVRExpandPseudo::expand<AVR::ASRWNRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
2257 bool AVRExpandPseudo::expand<AVR::LSLBNRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
2309 bool AVRExpandPseudo::expand<AVR::LSRBNRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
2391 bool AVRExpandPseudo::expand<AVR::ASRBNRd>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
2405 template <> bool AVRExpandPseudo::expand<AVR::SEXT>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
2462 template <> bool AVRExpandPseudo::expand<AVR::ZEXT>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
2500 bool AVRExpandPseudo::expand<AVR::SPREAD>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
2527 bool AVRExpandPseudo::expand<AVR::SPWRITE>(Block &MBB, BlockIt MBBI) { function in class:__anon2286::AVRExpandPseudo
[all...]
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_lock.cpp2994 #define expand(l, op) 0, __kmp_init_direct_lock, macro
2996 __kmp_init_indirect_lock, 0, KMP_FOREACH_D_LOCK(expand, init)};
2997 #undef expand macro
3000 #define expand(l, op) 0, (void (*)(kmp_dyna_lock_t *))__kmp_##op##_##l##_lock, macro
3002 __kmp_destroy_indirect_lock, 0, KMP_FOREACH_D_LOCK(expand, destroy)};
3003 #undef expand macro
3004 #define expand(l, op) \ macro
3007 __kmp_destroy_indirect_lock, 0, KMP_FOREACH_D_LOCK(expand, destroy)};
3008 #undef expand macro
3011 #define expand( macro
3015 #undef expand macro
3016 #define expand macro
3021 #undef expand macro
3024 #define expand macro
3030 #undef expand macro
3031 #define expand macro
3038 #undef expand macro
3047 #define expand macro
3050 #undef expand macro
3052 #define expand macro
3055 #undef expand macro
3056 #define expand macro
3060 #undef expand macro
3063 #define expand macro
3067 #undef expand macro
3068 #define expand macro
3072 #undef expand macro
3075 #define expand macro
3081 #undef expand macro
3082 #define expand macro
3088 #undef expand macro
3404 #define expand macro
3407 #undef expand macro
3408 #define expand macro
3411 #undef expand macro
3412 #define expand macro
3415 #undef expand macro
3416 #define expand macro
3419 #undef expand macro
[all...]
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DTableGen.cpp58 const std::vector<Record *> *Elts = Sets.expand(Rec);
59 assert(Elts && "Couldn't expand Set instance");
/freebsd-current/crypto/openssl/apps/
H A Dengine.c57 const int expand = 256; local
62 *size = ((len + expand - 1) / expand) * expand;
71 *size = ((len + expand - 1) / expand) * expand;
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp315 Value *Idx = expand(Offset);
474 // This is the first operand. Just expand it.
475 Sum = expand(Op);
497 Value *W = expand(SE.getNegativeSCEV(Op));
503 Value *W = expand(Op);
554 Value *P = expand(I->second);
575 // This is the first operand. Just expand it.
609 Value *LHS = expand(S->getLHS());
618 Value *RHS = expand(S->getRHS());
981 "Can't expand ad
1409 Value *SCEVExpander::expand(const SCEV *S) { function in class:SCEVExpander
[all...]
/freebsd-current/tools/test/stress2/misc/
H A Ddumpfs.sh61 dumpfs /dev/md$mdstart | expand > $dump

Completed in 328 milliseconds

123456