/third_party/rust/crates/memchr/src/memmem/x86/ |
H A D | avx.rs | 2 pub(crate) use self::nostd::Forward; 4 pub(crate) use self::std::Forward; 15 pub(crate) struct Forward(genericsimd::Forward); 17 impl Forward { impls 23 ) -> Option<Forward> { 27 genericsimd::Forward::new(ninfo, needle).map(Forward) 44 // SAFETY: The only way a Forward value can exist is if the avx2 79 pub(crate) struct Forward(()); 81 impl Forward { global() impls [all...] |
H A D | sse.rs | 8 pub(crate) struct Forward(genericsimd::Forward); 10 impl Forward { impls 13 pub(crate) fn new(ninfo: &NeedleInfo, needle: &[u8]) -> Option<Forward> { 17 genericsimd::Forward::new(ninfo, needle).map(Forward) 66 super::Forward::new(ninfo, needle).unwrap().find(haystack, needle) in find() 78 // filter our tests such that Forward::new will be guaranteed in prefilter_permutations() 81 let fwd = match super::Forward::new(&t.ninfo, &t.needle) { in prefilter_permutations()
|
/third_party/rust/crates/memchr/src/memmem/ |
H A D | wasm.rs | 8 pub(crate) struct Forward(genericsimd::Forward); 10 impl Forward { impls 13 pub(crate) fn new(ninfo: &NeedleInfo, needle: &[u8]) -> Option<Forward> { 17 genericsimd::Forward::new(ninfo, needle).map(Forward) 54 super::Forward::new(ninfo, needle).unwrap().find(haystack, needle) in find() 64 // filter our tests such that Forward::new will be guaranteed in prefilter_permutations() 67 let fwd = match super::Forward::new(&t.ninfo, &t.needle) { in prefilter_permutations()
|
H A D | genericsimd.rs | 56 pub(crate) struct Forward { 61 impl Forward { impls 64 pub(crate) fn new(ninfo: &NeedleInfo, needle: &[u8]) -> Option<Forward> { 76 Some(Forward { rare1i, rare2i }) 104 fwd: &Forward, 218 fwd: &Forward, in fwd_find_in_chunk()
|
H A D | mod.rs | 810 TwoWay(twoway::Forward), 812 GenericSIMD128(x86::sse::Forward), 814 GenericSIMD128(wasm::Forward), 816 GenericSIMD256(x86::avx::Forward), 840 if let Some(fwd) = x86::avx::Forward::new(&ninfo, needle) { in new() 842 } else if let Some(fwd) = x86::sse::Forward::new(&ninfo, needle) { in new() 848 if let Some(fwd) = wasm::Forward::new(&ninfo, needle) { in new() 853 mk(TwoWay(twoway::Forward::new(needle))) in new() 992 tw: &twoway::Forward, in find_tw()
|
H A D | twoway.rs | 7 pub(crate) struct Forward(TwoWay); 46 /// This type is wrapped in Forward and Reverse types that expose consistent 77 impl Forward { impls 80 pub(crate) fn new(needle: &[u8]) -> Forward { 82 return Forward(TwoWay::empty()); 95 Forward(TwoWay { byteset, critical_pos, shift }) 855 Forward::new(needle).find_general(None, haystack, needle)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | TpiHashing.h | 22 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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | AliasSetTracker.cpp | 54 assert(!AS.Forward && "Alias set is already forwarding!"); in mergeSetIn() 55 assert(!Forward && "This set is a forwarding set!!"); in mergeSetIn() 95 AS.Forward = this; // Forward across AS now... in mergeSetIn() 115 if (AliasSet *Fwd = AS->Forward) { in removeAliasSet() 117 AS->Forward = nullptr; in removeAliasSet() 313 if (Cur->Forward) in mergeAliasSetsForPointer() 340 if (Cur->Forward || !Cur->aliasesUnknownInst(Inst, AA)) in findAliasSetForUnknownInst() 529 if (AS.Forward) in add() 627 AliasSet *FwdTo = Cur->Forward; in mergeAllAliasSets() [all...] |
H A D | LoopAccessAnalysis.cpp | 1240 case Forward: in isSafeForVectorization() 1257 case Forward: in isBackward() 1276 case Forward: in isForward() 1527 LLVM_DEBUG(dbgs() << "LAA: Forward but may prevent st->ld forwarding\n"); in isDependent() 1532 return Dependence::Forward; in isDependent() 1539 return Dependence::Forward; in isDependent() 1725 "NoDep", "Unknown", "Forward", "ForwardButPreventsForwarding", "Backward",
|
/third_party/skia/src/core/ |
H A D | SkTBlockList.h | 15 // Forward declarations for the iterators used by SkTBlockList 19 template <typename T, bool Forward, bool Const, IndexFn Start, IndexFn End, NextFn Next, 370 bool Forward, // Are indices within a block increasing or decreasing with iteration? 378 using BlockIter = typename SkBlockAllocator::BlockIter<Forward, Const>; 396 SkASSERT((Forward && Next(block, fIndex) > fIndex) || in operator ++() 397 (!Forward && Next(block, fIndex) < fIndex)); in operator ++() 399 if ((Forward && fIndex > fEndIndex) || (!Forward && fIndex < fEndIndex)) { in operator ++() 427 SkASSERT((Forward && fIndex <= fEndIndex) || (!Forward in setIndices() [all...] |
H A D | SkBlockAllocator.h | 388 template <bool Forward, bool Const> class BlockIter; 393 * Forward iteration from head to tail block (or non-const variant): 691 template <bool Forward, bool Const> 719 fNext = block ? (Forward ? block->fNext : block->fPrev) : nullptr; in advance() 720 if (!Forward && fNext && fNext->isScratch()) { in advance() 733 Item begin() const { return Item(Forward ? &fAllocator->fHead : fAllocator->fTail); } in begin()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | AliasSetTracker.h | 118 if (AS->Forward) { in getAliasSet() 147 AliasSet *Forward = nullptr; member in llvm::AliasSet 215 bool isForwardingAliasSet() const { return Forward; } 285 if (!Forward) return this; in getForwardedTarget() 287 AliasSet *Dest = Forward->getForwardedTarget(AST); in getForwardedTarget() 288 if (Dest != Forward) { in getForwardedTarget() 290 Forward->dropRef(AST); in getForwardedTarget() 291 Forward = Dest; in getForwardedTarget()
|
H A D | LoopAccessAnalysis.h | 129 Forward, enumerator 130 // Forward, but if vectorized, is likely to prevent store-to-load
|
/third_party/skia/third_party/externals/dawn/generator/templates/ |
H A D | mock_webgpu.cpp | 22 {{as_cType(method.return_type.name)}} Forward{{as_MethodSuffix(type.name, method.name)}}( 48 table->{{as_varName(type.name, method.name)}} = reinterpret_cast<{{as_cProc(type.name, method.name)}}>(Forward{{as_MethodSuffix(type.name, method.name)}}); in GetProcTableAndDevice()
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | jump-threading.cc | 31 void Forward(RpoNumber to) { in Forward() function 159 state.Forward(fw); in ComputeForwarding()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | parse_dependency.py | 40 Forward, 134 expr = Forward()
|
/third_party/vulkan-headers/registry/ |
H A D | parse_dependency.py | 40 Forward, 134 expr = Forward()
|
/third_party/skia/resources/sksl/es2_conformance/ |
H A D | import_conformance_tests.py | 80 group = pp.Forward()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 10606 Forward(typename RemoveReference<T>::Type& aX) 10613 Forward(typename RemoveReference<T>::Type&& aX) 10616 "misuse of Forward detected! try the other overload"); 11006 return ((*mRawPtr).*mFunction)(mozilla::Forward<ActualArgs>(aArgs)...); 11284 RefPtr<T> p(new T(Forward<Args>(aArgs)...)); 11316 : mFirstA(Forward<AArg>(aA)), 11317 mSecondB(Forward<BArg>(aB)) 11342 : B(Forward<BArg>(aB)), 11343 mFirstA(Forward<AArg>(aA)) 11367 : A(Forward<AAr [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonISelDAGToDAGHVX.cpp | 37 // - Forward delta. 42 // Forward delta network consists of log(N) steps, where N is the number 329 Forward, 353 if (Dir == Forward) in getControls() 386 getControls(V, 0, Forward); in run() 415 getControls(F, 0, Forward); in run()
|
/third_party/python/Lib/test/ |
H A D | test_types.py | 23 class Forward: ... class 886 ForwardAfter = T | 'Forward' 887 ForwardBefore = 'Forward' | T 890 assert typing.get_args(typing.get_type_hints(forward_after)['x']) == (int, Forward) 891 assert typing.get_args(typing.get_type_hints(forward_before)['x']) == (int, Forward)
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8632/ |
H A D | GPRArith.cpp | 1782 static constexpr ValueType BitIndex(bool Forward, ValueType Index) { in BitIndex() argument 1787 : BitIndex(Forward, (Forward ? Index + 1 : Index - 1))); in BitIndex() 1792 static constexpr ValueType bsf = BitIndex(/*Forward*/ true, /*Index=*/0); 1794 BitIndex(/*Forward*/ false, /*Index=*/Bits - 1);
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8664/ |
H A D | GPRArith.cpp | 1798 static constexpr ValueType BitIndex(bool Forward, ValueType Index) { in BitIndex() argument 1803 : BitIndex(Forward, (Forward ? Index + 1 : Index - 1))); in BitIndex() 1808 static constexpr ValueType bsf = BitIndex(/*Forward*/ true, /*Index=*/0); 1810 BitIndex(/*Forward*/ false, /*Index=*/Bits - 1);
|
/third_party/node/deps/v8/src/wasm/ |
H A D | function-body-decoder-impl.h | 905 F(Forward, const Value& from, Value* to) 2770 CALL_INTERFACE(Forward, ref_object, stack_value(1)); in DECODE() 2780 CALL_INTERFACE(Forward, ref_object, stack_value(1)); in DECODE() 3139 // We are in unreachable code. Forward the bottom value. in DECODE() 4545 CALL_INTERFACE(Forward, obj, &value); in DecodeGCOpcode() 4629 CALL_INTERFACE(Forward, obj, value_on_branch); in DecodeGCOpcode() 4790 CALL_INTERFACE(Forward, arg, &result); \ in DecodeGCOpcode()
|
H A D | graph-builder-interface.cc | 1314 void Forward(FullDecoder* decoder, const Value& from, Value* to) { in Forward() function
|