Home
last modified time | relevance | path

Searched refs:Forward (Results 1 – 25 of 63) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DTpiHashing.h22 uint32_t Forward) in TagRecordHash()
23 : FullRecordHash(Full), ForwardDeclHash(Forward), Class(std::move(CR)) { in TagRecordHash()
28 uint32_t Forward) in TagRecordHash()
29 : FullRecordHash(Full), ForwardDeclHash(Forward), Enum(std::move(ER)) { in TagRecordHash()
34 uint32_t Forward) in TagRecordHash()
35 : FullRecordHash(Full), ForwardDeclHash(Forward), Union(std::move(UR)) { in TagRecordHash()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasSetTracker.cpp46 assert(!AS.Forward && "Alias set is already forwarding!"); in mergeSetIn()
47 assert(!Forward && "This set is a forwarding set!!"); in mergeSetIn()
83 AS.Forward = this; // Forward across AS now... in mergeSetIn()
91 if (AliasSet *Fwd = AS->Forward) { in removeAliasSet()
93 AS->Forward = nullptr; in removeAliasSet()
226 if (AS.Forward) in mergeAliasSetsForMemoryLocation()
259 if (AS.Forward || !isModOrRefSet(AS.aliasesUnknownInst(Inst, AA))) in findAliasSetForUnknownInst()
445 if (AS.Forward) in add()
480 AliasSet *FwdTo = Cur->Forward; in mergeAllAliasSets()
482 Cur->Forward = AliasAnyAS; in mergeAllAliasSets()
[all …]
H A DLoopAccessAnalysis.cpp1696 case Forward: in isSafeForVectorization()
1714 case Forward: in isBackward()
1734 case Forward: in isForward()
2069 return Dependence::Forward; in isDependent()
2104 return Dependence::Forward; in isDependent()
2732 case MemoryDepChecker::Dependence::Forward: in emitUnsafeDependenceRemark()
/freebsd/crypto/openssh/
H A Dreadconf.h106 struct Forward *local_forwards;
110 struct Forward *remote_forwards;
245 int parse_forward(struct Forward *, const char *, int, int);
253 void add_local_forward(Options *, const struct Forward *);
254 void add_remote_forward(Options *, const struct Forward *);
H A Dchannels.h350 struct Forward;
367 int channel_request_remote_forwarding(struct ssh *, struct Forward *);
368 int channel_setup_local_fwd_listener(struct ssh *, struct Forward *,
370 int channel_request_rforward_cancel(struct ssh *, struct Forward *);
371 int channel_setup_remote_fwd_listener(struct ssh *, struct Forward *,
373 int channel_cancel_rport_listener(struct ssh *, struct Forward *);
374 int channel_cancel_lport_listener(struct ssh *, struct Forward *,
H A Dmisc.h31 struct Forward { struct
42 int forward_equals(const struct Forward *, const struct Forward *); argument
H A Dmux.c530 format_forward(u_int ftype, struct Forward *fwd) in format_forward()
576 compare_forward(struct Forward *a, struct Forward *b) in compare_forward()
599 struct Forward *rfwd; in mux_confirm_remote_forward()
686 struct Forward fwd; in mux_master_process_open_fwd()
851 struct Forward fwd, *found_fwd; in mux_master_process_close_fwd()
1763 mux_client_forward(int fd, int cancel_flag, u_int ftype, struct Forward *fwd) in mux_client_forward()
H A Dreadconf.c378 add_local_forward(Options *options, const struct Forward *newfwd) in add_local_forward()
380 struct Forward *fwd; in add_local_forward()
407 add_remote_forward(Options *options, const struct Forward *newfwd) in add_remote_forward()
409 struct Forward *fwd; in add_remote_forward()
1103 struct Forward fwd; in process_config_line_depth()
3160 parse_forward(struct Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd) in parse_forward()
3510 dump_cfg_forwards(OpCodes code, u_int count, const struct Forward *fwds) in dump_cfg_forwards()
3512 const struct Forward *fwd; in dump_cfg_forwards()
H A Dchannels.c3792 struct Forward *fwd, int *allocated_listen_port, in channel_setup_fwd_listener_tcpip()
3950 struct Forward *fwd, struct ForwardOptions *fwd_opts) in channel_setup_fwd_listener_streamlocal()
4066 channel_cancel_rport_listener(struct ssh *ssh, struct Forward *fwd) in channel_cancel_rport_listener()
4142 struct Forward *fwd, int cport, struct ForwardOptions *fwd_opts) in channel_cancel_lport_listener()
4156 struct Forward *fwd, struct ForwardOptions *fwd_opts) in channel_setup_local_fwd_listener()
4169 remote_open_match(struct permission *allowed_open, struct Forward *fwd) in remote_open_match()
4196 check_rfwd_permission(struct ssh *ssh, struct Forward *fwd) in check_rfwd_permission()
4232 channel_setup_remote_fwd_listener(struct ssh *ssh, struct Forward *fwd, in channel_setup_remote_fwd_listener()
4288 channel_request_remote_forwarding(struct ssh *ssh, struct Forward *fwd) in channel_request_remote_forwarding()
4476 channel_request_rforward_cancel(struct ssh *ssh, struct Forward *fwd) in channel_request_rforward_cancel()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExternalASTMerger.cpp307 ForEachMatchingDC(Tag, [&](ASTImporter &Forward, ASTImporter &Reverse, in CompleteType()
314 Forward.MapImported(SourceTag, Tag); in CompleteType()
315 if (llvm::Error Err = Forward.ImportDefinition(SourceTag)) in CompleteType()
325 Interface, [&](ASTImporter &Forward, ASTImporter &Reverse, in CompleteType() argument
334 Forward.MapImported(SourceInterface, Interface); in CompleteType()
335 if (llvm::Error Err = Forward.ImportDefinition(SourceInterface)) in CompleteType()
346 [&](ASTImporter &Forward, ASTImporter &Reverse, in CanComplete() argument
485 [&](ASTImporter &Forward, ASTImporter &Reverse, in FindExternalVisibleDeclsByName()
495 FilterFoundDecl(std::make_pair(FromD, &Forward)); in FindExternalVisibleDeclsByName()
526 ForEachMatchingDC(DC, [&](ASTImporter &Forward, ASTImporter &Reverse, in FindExternalLexicalDecls()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h51 AliasSet *Forward = nullptr; variable
112 bool isForwardingAliasSet() const { return Forward; } in isForwardingAliasSet()
241 if (AS->Forward) { in collapseForwardingIn()
242 collapseForwardingIn(AS->Forward); in collapseForwardingIn()
244 AliasSet *NewAS = AS->Forward; in collapseForwardingIn()
H A DLoopAccessAnalysis.h137 Forward, enumerator
/freebsd/sys/teken/
H A Dsequences38 CHT Cursor Forward Tabulation ^[ [ I n
45 CUF Cursor Forward ^[ [ C n
46 CUF Cursor Forward ^[ [ a n
/freebsd/contrib/less/
H A Dless.hlp14 e ^E j ^N CR * Forward one line (or _N lines).
16 f ^F ^V SPACE * Forward one window (or _N lines).
18 z * Forward one window (and set window to _N).
20 ESC-SPACE * Forward one window, but don't stop at end-of-file.
21 d ^D * Forward one half-window (and set half-window to _N).
27 F Forward forever; like "tail -f".
208 Forward scroll limit.
/freebsd/contrib/dialog/samples/
H A Dtextbox.txt16 '/' - Forward search
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFPStack.td90 bit Forward = 1> {
94 [!if(Forward,
101 [!if(Forward,
108 [!if(Forward,
115 [!if(Forward,
122 [!if(Forward,
136 [!if(Forward,
143 [!if(Forward,
150 [!if(Forward,
157 [!if(Forward,
[all...]
/freebsd/contrib/googletest/docs/
H A Dgmock_for_dummies.md110 virtual void Forward(int distance) = 0;
124 and `PenDown()`, and control its movement using `Forward()`, `Turn()`, and
174 MOCK_METHOD(void, Forward, (int distance), (override));
353 EXPECT_CALL(turtle, Forward(100));
384 EXPECT_CALL(turtle, Forward(Ge(100)));
392 EXPECT_CALL(turtle, Forward);
540 EXPECT_CALL(turtle, Forward(_)); // #1
541 EXPECT_CALL(turtle, Forward(10)) // #2
545 If `Forward(10)` is called three times in a row, the third time it will be an
547 the third `Forward(10)` call is replaced by `Forward(20)`, then it would be OK,
[all …]
/freebsd/share/misc/
H A Dusb_hid_usages198 0x22 Pitch Forward/Backward
201 0x25 Move Forward/Backward
204 0x28 Lean Forward/Backward
309 0x4C Keyboard Delete Forward
503 0x31 Forward
507 0x35 Fast Forward
558 0x28 Forward Calls
682 0xB3 Fast Forward
695 0xC0 Frame Forward
701 0xC6 Search Mark Forward
[all …]
/freebsd/sys/contrib/device-tree/Bindings/misc/
H A Dxlnx,sd-fec.txt3 The Soft Decision Forward Error Correction (SDFEC) Engine is a Hard IP block
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_malloc_mac.inc292 // Forward declare and expect the implementation to provided by
314 // Forward declare and expect the implementation to provided by
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp704 m_compiler_type_resolve_state = ResolveState::Forward; in ResolveCompilerType()
736 encoding_compiler_type_resolve_state = ResolveState::Forward; in ResolveCompilerType()
767 ResolveCompilerType(ResolveState::Forward); in GetForwardCompilerType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp455 type_resolve_state = Type::ResolveState::Forward; in CreateLLDBTypeFromPDBType()
458 type_resolve_state = Type::ResolveState::Forward; in CreateLLDBTypeFromPDBType()
761 lldb_private::Type::ResolveState::Forward); in CreateLLDBTypeFromPDBType()
/freebsd/sys/contrib/device-tree/Bindings/regulator/
H A Dti-abb-regulator.txt33 1-Forward Body Bias(FBB)
/freebsd/contrib/file/magic/Magdir/
H A Dmail.news13 0 string/t Forward\ to mail forwarding text
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp513 decl, record_type, lldb_private::Type::ResolveState::Forward); in CreateRecord()
569 forward_compiler_type, Type::ResolveState::Forward); in CreateForward()

123