/third_party/rust/crates/memchr/src/ |
H A D | cow.rs | 10 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 D | ahocorasick.rs | 87 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 D | DebugCrossImpSubsection.cpp | 87 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 D | COFFImportFile.cpp | 175 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 D | lib.rs | 836 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 D | CompileOnDemandLayer.cpp | 124 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 D | InstrEmitter.cpp | 397 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 D | CompileOnDemandLayer.h | 96 void setImplMap(ImplSymbolMap *Imp);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | SimplifyCFG.cpp | 5953 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 D | InstructionSimplify.cpp | 4027 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 D | InstCombineCompares.cpp | 1479 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()
|