| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/ |
| TpiHashing.h | 22 uint32_t Forward) 23 : FullRecordHash(Full), ForwardDeclHash(Forward), Class(std::move(CR)) { 28 uint32_t Forward) 29 : FullRecordHash(Full), ForwardDeclHash(Forward), Enum(std::move(ER)) { 34 uint32_t Forward) 35 : FullRecordHash(Full), ForwardDeclHash(Forward), Union(std::move(UR)) { 65 /// the hash of its forward decl and full decl.
|
| /src/crypto/external/bsd/openssh/dist/ |
| readconf.h | 32 int forward_agent; /* Forward authentication agent. */ 34 int forward_x11; /* Forward X11 display. */ 36 int forward_x11_trusted; /* Trust Forward X11 display. */ 121 /* Local TCP/IP forward requests. */ 123 struct Forward *local_forwards; 125 /* Remote TCP/IP forward requests. */ 127 struct Forward *remote_forwards; 269 int parse_forward(struct Forward *, const char *, int, int); 279 void add_local_forward(Options *, const struct Forward *); 280 void add_remote_forward(Options *, const struct Forward *); [all...] |
| channels.h | 89 "tun-*,x11-*,session*,stdio-forward" 365 struct Forward; 383 int channel_request_remote_forwarding(struct ssh *, struct Forward *); 384 int channel_setup_local_fwd_listener(struct ssh *, struct Forward *, 386 int channel_request_rforward_cancel(struct ssh *, struct Forward *); 387 int channel_setup_remote_fwd_listener(struct ssh *, struct Forward *, 389 int channel_cancel_rport_listener(struct ssh *, struct Forward *); 390 int channel_cancel_lport_listener(struct ssh *, struct Forward *,
|
| misc.h | 32 struct Forward { 34 int listen_port; /* Port to forward. */ 43 int forward_equals(const struct Forward *, const struct Forward *);
|
| mux.c | 84 int fid; /* forward id */ 566 format_forward(u_int ftype, struct Forward *fwd) 572 xasprintf(&ret, "local forward %.200s:%d -> %.200s:%d", 581 xasprintf(&ret, "dynamic forward %.200s:%d -> *", 587 xasprintf(&ret, "remote forward %.200s:%d -> %.200s:%d", 596 fatal_f("unknown forward type %u", ftype); 612 compare_forward(struct Forward *a, struct Forward *b) 635 struct Forward *rfwd; 665 "mux remote forward to %s:%d", port [all...] |
| readconf.c | 410 * Adds a local TCP/IP port forward to options. Never returns if there is an 415 add_local_forward(Options *options, const struct Forward *newfwd) 417 struct Forward *fwd; 439 * Adds a remote TCP/IP port forward to options. Never returns if there is 444 add_remote_forward(Options *options, const struct Forward *newfwd) 446 struct Forward *fwd; 1188 struct Forward fwd; 3438 parse_forward(struct Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd) 3841 dump_cfg_forwards(OpCodes code, u_int count, const struct Forward *fwds) 3843 const struct Forward *fwd [all...] |
| channels.c | 104 * Data structure for storing which hosts are permitted for forward requests. 110 /* Overload host_to_connect; we could just make this match Forward */ 668 fatal("Unknown forward permission list %d/%d", who, where); 753 debug("channel %d: cleanup remote forward for %s:%u", 757 "cancel-tcpip-forward")) != 0 || 1805 c = channel_new(ssh, "stdio-forward", SSH_CHANNEL_OPENING, in, out, 1807 0, "stdio-forward", nonblock); 3196 * - We forward all messages (mostly) unmodified to the server. 3320 if (strcmp(ctype, "tcpip-forward") != 0) { 3331 error_f("tcpip-forward for %s: bad port %u" [all...] |
| misc.c | 2021 forward_equals(const struct Forward *a, const struct Forward *b)
|
| serverloop.c | 474 logit("refused local port forward: " 519 logit("refused streamlocal port forward: " 787 struct Forward fwd; 799 if (strcmp(rtype, "tcpip-forward") == 0) { 802 sshpkt_fatal(ssh, r, "%s: parse tcpip-forward", __func__); 803 debug_f("tcpip-forward listen %s port %u", 825 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) { 828 sshpkt_fatal(ssh, r, "%s: parse cancel-tcpip-forward", __func__); 830 debug_f("cancel-tcpip-forward addr %s port %d", 836 } else if (strcmp(rtype, "streamlocal-forward@openssh.com") == 0) [all...] |
| ssh.c | 138 * A config can specify a path to forward, overriding SSH_AUTH_SOCK. If this is 139 * not NULL, forward the socket at this path instead. 626 struct Forward fwd; 748 else if (strcmp(optarg, "forward") == 0) 894 fatal("stdio forward already specified"); 896 fatal("Cannot specify stdio forward with -O"); 1491 error("Cannot forward agent socket path \"%s\": %s", 1908 /* Callback for remote forward global requests */ 1913 struct Forward *rfwd; 1923 debug("remote forward %s for: listen %s%s%d, connect %s:%d" [all...] |
| clientloop.c | 340 * ssh's willingness to forward X11 connections to 994 struct Forward fwd; 1013 "Request local forward"); 1015 "Request remote forward"); 1017 "Request dynamic forward"); 1019 "Cancel local forward"); 1021 "Cancel remote forward"); 1023 "Cancel dynamic forward");
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| AliasSetTracker.cpp | 49 assert(!AS.Forward && "Alias set is already forwarding!"); 50 assert(!Forward && "This set is a forwarding set!!"); 90 AS.Forward = this; // Forward across AS now... 110 if (AliasSet *Fwd = AS->Forward) { 112 AS->Forward = nullptr; 308 if (AS.Forward) 333 if (AS.Forward || !AS.aliasesUnknownInst(Inst, AA)) 524 if (AS.Forward) 603 // Copy all instructions and pointers into a new set, and forward all othe [all...] |
| LoopAccessAnalysis.cpp | 1250 case Forward: 1267 case Forward: 1286 case Forward: 1537 LLVM_DEBUG(dbgs() << "LAA: Forward but may prevent st->ld forwarding\n"); 1542 return Dependence::Forward; 1549 return Dependence::Forward; 1735 "NoDep", "Unknown", "Forward", "ForwardButPreventsForwarding", "Backward",
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| AliasSetTracker.h | 114 if (AS->Forward) { 143 AliasSet *Forward = nullptr; 211 bool isForwardingAliasSet() const { return Forward; } 234 /// Define an iterator for alias sets... this is just a forward iterator. 286 if (!Forward) return this; 288 AliasSet *Dest = Forward->getForwardedTarget(AST); 289 if (Dest != Forward) { 291 Forward->dropRef(AST); 292 Forward = Dest;
|
| LoopAccessAnalysis.h | 115 // Lexically forward. 117 // FIXME: If we only have loop-independent forward dependences (e.g. a 120 // enumerating loop-independent forward dependences in 124 Forward, 125 // Forward, but if vectorized, is likely to prevent store-to-load 158 /// Lexically forward dependence.
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| ExternalASTMerger.cpp | 310 ForEachMatchingDC(Tag, [&](ASTImporter &Forward, ASTImporter &Reverse, 317 Forward.MapImported(SourceTag, Tag); 318 if (llvm::Error Err = Forward.ImportDefinition(SourceTag)) 328 Interface, [&](ASTImporter &Forward, ASTImporter &Reverse, 337 Forward.MapImported(SourceInterface, Interface); 338 if (llvm::Error Err = Forward.ImportDefinition(SourceInterface)) 349 [&](ASTImporter &Forward, ASTImporter &Reverse, 490 [&](ASTImporter &Forward, ASTImporter &Reverse, 500 FilterFoundDecl(std::make_pair(FromD, &Forward)); 531 ForEachMatchingDC(DC, [&](ASTImporter &Forward, ASTImporter &Reverse [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/test/ |
| dummyrange.d | 14 Forward, 98 static if (rt >= RangeType.Forward) 193 DummyRange!(ReturnBy.Reference, Length.Yes, RangeType.Forward), 196 DummyRange!(ReturnBy.Reference, Length.No, RangeType.Forward), 199 DummyRange!(ReturnBy.Value, Length.Yes, RangeType.Forward), 203 DummyRange!(ReturnBy.Value, Length.No, RangeType.Forward), 210 DummyRange!(ReturnBy.Reference, Length.Yes, RangeType.Forward, T), 213 DummyRange!(ReturnBy.Reference, Length.No, RangeType.Forward, T), 216 DummyRange!(ReturnBy.Value, Length.Yes, RangeType.Forward, T), 220 DummyRange!(ReturnBy.Value, Length.No, RangeType.Forward, T) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/ |
| SerialSnippetGenerator.cpp | 137 const AliasingConfigurations Forward(Instr, *OtherInstr); 141 if (!Forward.hasImplicitAliasing()) 142 setRandomAliasing(Forward, ThisIT, OtherIT);
|
| /src/external/gpl3/gdb/dist/readline/readline/doc/ |
| texi2html | 527 # 'Forward_Button' =>'Forward', 682 # Forward -- next node in reading order 751 # T2H_HREF of Next, Prev, Up, Forward, Back are not defined 806 # T2H_HREF of Next, Prev, Up, Forward, Back, etc are not defined 1010 'Back', 'Forward', ' ', 'FastBack', 'Up', 'FastForward', 1031 'Forward', '', 1051 'Forward', '', 1080 'Forward', ' > ', 1277 'Forward', 'next section in reading order', 1295 'Forward', '1.2.4' [all...] |
| /src/external/gpl3/gdb.old/dist/readline/readline/doc/ |
| texi2html | 527 # 'Forward_Button' =>'Forward', 682 # Forward -- next node in reading order 751 # T2H_HREF of Next, Prev, Up, Forward, Back are not defined 806 # T2H_HREF of Next, Prev, Up, Forward, Back, etc are not defined 1010 'Back', 'Forward', ' ', 'FastBack', 'Up', 'FastForward', 1031 'Forward', '', 1051 'Forward', '', 1080 'Forward', ' > ', 1277 'Forward', 'next section in reading order', 1295 'Forward', '1.2.4' [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| HexagonISelDAGToDAGHVX.cpp | 37 // - Forward delta. 42 // Forward delta network consists of log(N) steps, where N is the number 95 // Benes network is a forward delta network immediately followed by 329 Forward, 353 if (Dir == Forward) 386 getControls(V, 0, Forward); 415 getControls(F, 0, Forward); 431 // the "big" switch, i.e. the one that changes halves, and in a forward
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| SIInstrInfo.cpp | 551 RS.forward(MI); 605 const TargetRegisterClass *RC, bool Forward) { 635 if (!Forward) 640 if (!Forward) 879 const bool Forward = RI.getHWRegIndex(DestReg) <= RI.getHWRegIndex(SrcReg); 885 expandSGPRCopy(*this, MBB, MI, DL, DestReg, SrcReg, KillSrc, RC, Forward); 923 if (Forward)
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/ |
| sorting.d | 149 Checks whether a $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives) 162 r = Forward range to check for sortedness. 945 $(REF_ALTTEXT forward range, isForwardRange, std,range,primitives), and the 2799 // false = forward / lower, true = reverse / upper 2844 static if (!lowerUpper) alias comp = greater; // forward lower 2845 static if (lowerUpper) alias comp = greaterEqual; // forward upper 2847 // Gallop Search Forward 2862 // Binary Search Forward 3548 // Failed - abort sampling going forward 3939 DummyRange!(ReturnBy.Reference, Length.Yes, RangeType.Forward), [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/admin/ |
| acinclude.m4.in | 30 dnl Forward compatibility macros (make autoconf 2.13 look like 2.50),
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/range/ |
| package.d | 66 $(TD Creates an infinite range that repeats the given forward range 141 $(TD Creates a forward range whose values are defined by a 1401 R1) is a random-access range and `R2` is a forward range). 2140 A forward range with length 2814 alias DummyType = DummyRange!(ReturnBy.Value, Length.No, RangeType.Forward); 2847 regardless of `R`'s capabilities, as long as it is a forward range. 2849 (D R) is an input range but not a forward range, return type is an input 3345 // Neither are non-forward ranges without length 3870 Repeats the given forward range ad infinitum. If the original range is 3873 itself. That works for non-forward ranges too [all...] |