Home
last modified time | relevance | path

Searched refs:Imp (Results 1 - 11 of 11) sorted by relevance

/third_party/rust/crates/memchr/src/
H A Dcow.rs10 pub struct CowBytes<'a>(Imp<'a>);
17 enum Imp<'a> { enum
24 struct Imp<'a>(&'a [u8]); structure names
39 CowBytes(Imp::new(bytes.as_ref())) in new()
46 CowBytes(Imp::Owned(bytes)) in new_owned()
64 Imp::Borrowed(b) => CowBytes::new_owned(Box::from(b)), in into_owned()
65 Imp::Owned(b) => CowBytes::new_owned(b), in into_owned()
70 impl<'a> Imp<'a> { impls
73 pub fn new(bytes: &'a [u8]) -> Imp<'a> { in new()
74 Imp in new()
[all...]
/third_party/rust/crates/aho-corasick/src/
H A Dahocorasick.rs87 imp: Imp<S>,
1014 Imp::NFA(ref nfa) => nfa.heap_bytes(), in heap_bytes()
1015 Imp::DFA(ref dfa) => dfa.heap_bytes(), in heap_bytes()
1024 enum Imp<S: StateID> { enum
1029 impl<S: StateID> Imp<S> { impls
1033 Imp::NFA(ref nfa) => nfa.match_kind(), in match_kind()
1034 Imp::DFA(ref dfa) => dfa.match_kind(), in match_kind()
1041 Imp::NFA(ref nfa) => nfa.start_state(), in start_state()
1042 Imp::DFA(ref dfa) => dfa.start_state(), in start_state()
1051 Imp in max_pattern_len()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossImpSubsection.cpp87 CrossModuleImport Imp; in commit() local
88 Imp.ModuleNameOffset = Strings.getIdForString(Item->getKey()); in commit()
89 Imp.Count = Item->getValue().size(); in commit()
90 if (auto EC = Writer.writeObject(Imp)) in commit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
H A DCOFFImportFile.cpp175 NewArchiveMember createWeakExternal(StringRef Sym, StringRef Weak, bool Imp);
473 auto *Imp = reinterpret_cast<coff_import_header *>(P); in createShortImport() local
474 P += sizeof(*Imp); in createShortImport()
475 Imp->Sig2 = 0xFFFF; in createShortImport()
476 Imp->Machine = Machine; in createShortImport()
477 Imp->SizeOfData = ImpSize; in createShortImport()
479 Imp->OrdinalHint = Ordinal; in createShortImport()
480 Imp->TypeInfo = (NameType << 2) | ImportType; in createShortImport()
491 StringRef Weak, bool Imp) { in createWeakExternal()
558 StringRef Prefix = Imp in createWeakExternal()
490 createWeakExternal(StringRef Sym, StringRef Weak, bool Imp) createWeakExternal() argument
[all...]
/third_party/rust/crates/once_cell/src/
H A Dlib.rs836 use super::{imp::OnceCell as Imp, unwrap_unchecked};
866 pub struct OnceCell<T>(Imp<T>);
916 OnceCell(Imp::new())
921 OnceCell(Imp::with_value(value))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.cpp124 void CompileOnDemandLayer::setImplMap(ImplSymbolMap *Imp) { in setImplMap() argument
125 this->AliaseeImpls = Imp; in setImplMap()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp397 bool Imp = II && (IIOpNum >= II->getNumOperands() && !II->isVariadic());
398 MIB.addReg(VReg, getImplRegState(Imp));
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h96 void setImplMap(ImplSymbolMap *Imp);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp5953 Optional<bool> Imp = isImpliedByDomCondition(BI->getCondition(), BI, DL); in SimplifyCondBranch()
5954 if (Imp) { in SimplifyCondBranch()
5957 ConstantInt *TorF = *Imp ? ConstantInt::getTrue(BB->getContext()) in SimplifyCondBranch()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DInstructionSimplify.cpp4027 Optional<bool> Imp = isImpliedByDomCondition(Cond, Q.CxtI, Q.DL); in SimplifySelectInst()
4028 if (Imp) in SimplifySelectInst()
4029 return *Imp ? TrueVal : FalseVal; in SimplifySelectInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1479 Optional<bool> Imp = isImpliedCondition(DomCond, &Cmp, DL, TrueBB == CmpBB); in foldICmpWithDominatingICmp()
1480 if (Imp) in foldICmpWithDominatingICmp()
1481 return replaceInstUsesWith(Cmp, ConstantInt::get(Cmp.getType(), *Imp)); in foldICmpWithDominatingICmp()

Completed in 32 milliseconds