Home
last modified time | relevance | path

Searched refs:using (Results 226 - 250 of 3035) sorted by relevance

12345678910>>...122

/third_party/gn/src/gn/
H A Dpointer_set.h62 using NodeType = PointerSetNode;
63 using BaseType = HashTableBase<NodeType>;
137 // is slightly more efficient than using range insertion
166 using iterator_category = std::forward_iterator_tag;
167 using difference_type = std::ptrdiff_t;
168 using value_type = T*;
169 using pointer = T**;
170 using reference = T*&;
192 // Convert this to a vector, more convenient and slightly faster than using
/third_party/node/src/crypto/
H A Dcrypto_dh.h63 // Diffie-Hellman can either generate keys using a fixed prime, or by first
73 using DhKeyPairGenConfig = KeyPairGenConfig<DhKeyPairParams>;
76 using AdditionalParameters = DhKeyPairGenConfig;
88 using DHKeyPairGenJob = KeyGenJob<KeyPairGenTraits<DhKeyGenTraits>>;
98 using AdditionalParameters = DHKeyExportConfig;
112 using DHKeyExportJob = KeyExportJob<DHKeyExportTraits>;
123 using AdditionalParameters = DHBitsConfig;
146 using DHBitsJob = DeriveBitsJob<DHBitsTraits>;
H A Dcrypto_random.h24 using AdditionalParameters = RandomBytesConfig;
47 using RandomBytesJob = DeriveBitsJob<RandomBytesTraits>;
61 using AdditionalParameters = RandomPrimeConfig;
84 using RandomPrimeJob = DeriveBitsJob<RandomPrimeTraits>;
96 using AdditionalParameters = CheckPrimeConfig;
120 using CheckPrimeJob = DeriveBitsJob<CheckPrimeTraits>;
/third_party/node/deps/v8/src/base/
H A Dbit-field.h18 // Instantiate them via 'using', which is cheaper than deriving a new class:
19 // using MyBitField = base::BitField<MyEnum, 4, 2>;
31 using FieldType = T;
35 // without using a shift count of x in the computation.
46 using Next = BitField<T2, kShift + kSize, size2, U>;
71 using BitField8 = BitField<T, shift, size, uint8_t>;
74 using BitField16 = BitField<T, shift, size, uint16_t>;
77 using BitField64 = BitField<T, shift, size, uint64_t>;
102 using Name = base::BitField<Type, RangesName::k##Name##Start, Size>;
105 using Nam
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DGenericIteratedDominanceFrontier.h9 /// Compute iterated dominance frontiers using a linear time algorithm.
19 /// to directly compute pruned SSA using per-variable liveness information.
40 using NodeRef = typename GraphTraits<NodeTy>::NodeRef;
41 using ChildrenTy = SmallVector<NodeRef, 8>;
54 /// pruned using the live-in set.
59 using OrderedNodeTy =
61 using ChildrenGetterTy =
99 /// the file-level comment. It performs DF->IDF pruning using the live-in
121 using OrderedNodeTy = in get()
137 using DomTreeNodePai in calculate()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DBitmaskEnum.h33 /// instance of the underlying type (e.g. int). But using this macro, bitwise
47 /// Suppose you have an enum foo::bar::MyEnum. Before using
56 using ::llvm::BitmaskEnumDetail::operator~; \
57 using ::llvm::BitmaskEnumDetail::operator|; \
58 using ::llvm::BitmaskEnumDetail::operator&; \
59 using ::llvm::BitmaskEnumDetail::operator^; \
60 using ::llvm::BitmaskEnumDetail::operator|=; \
61 using ::llvm::BitmaskEnumDetail::operator&=; \
63 using ::llvm::BitmaskEnumDetail::operator^=
H A DBreadthFirstIterator.h40 using bf_iterator_default_set = SmallPtrSet<NodeRef, SmallSize>;
50 using super = std::iterator<std::forward_iterator_tag, typename GT::NodeRef>;
52 using NodeRef = typename GT::NodeRef;
53 using ChildItTy = typename GT::ChildIteratorType;
56 using QueueElement = std::pair<NodeRef, Optional<ChildItTy>>;
110 using pointer = typename super::pointer;
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dhash_policy_traits.h34 using key_type = typename Policy::key_type;
73 using slot_type = typename Policy::slot_type;
78 using init_type = typename Policy::init_type;
80 using reference = decltype(Policy::element(std::declval<slot_type*>()));
81 using pointer = typename std::remove_reference<reference>::type*;
82 using value_type = typename std::remove_reference<reference>::type;
88 using constant_iterators = ConstantIteratorsImpl<>;
H A Draw_hash_set.h70 // The groups are probed using H1. For each group the slots are matched to H2 in
127 using std::swap; in SwapAlloc()
182 using std::swap;
212 using value_type = int;
213 using iterator = BitMask;
214 using const_iterator = BitMask;
254 using h2_t = uint8_t;
328 // Work around this by using the portable implementation of Group
329 // when using -funsigned-char under GCC.
450 using Grou
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Duniform_real_distribution.h66 using result_type = RealType;
70 using distribution_type = uniform_real_distribution;
101 "parameterized using a floating-point type.");
157 using random_internal::GeneratePositiveTag; in operator ()()
158 using random_internal::GenerateRealFromBits; in operator ()()
159 using real_type = in operator ()()
188 using param_type = typename uniform_real_distribution<RealType>::param_type; in operator >>()
189 using result_type = typename uniform_real_distribution<RealType>::result_type; in operator >>()
H A Dexponential_distribution.h38 using result_type = RealType;
42 using distribution_type = exponential_distribution;
68 "using a floating-point type.");
123 using random_internal::GenerateNegativeTag; in operator ()()
124 using random_internal::GenerateRealFromBits; in operator ()()
125 using real_type = in operator ()()
150 using result_type = typename exponential_distribution<RealType>::result_type; in operator >>()
151 using param_type = typename exponential_distribution<RealType>::param_type; in operator >>()
/third_party/node/deps/v8/src/common/
H A Dglobals.h145 using CodeT = CodeDataContainer;
149 using CodeT = Code;
179 // Superclass for classes only using static method functions.
188 using byte = uint8_t;
321 using Tagged_t = uint32_t;
322 using AtomicTagged_t = base::Atomic32;
331 using Tagged_t = Address;
332 using AtomicTagged_t = base::AtomicWord;
339 using AsAtomicTagged = base::AsAtomicPointerImpl<AtomicTagged_t>;
688 using RuntimeArgument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h59 using Kind = uint8_t;
68 using OffsetT = uint32_t;
69 using AddendT = int64_t;
134 using SectionOrdinal = unsigned;
169 using EdgeVector = std::vector<Edge>;
170 using edge_iterator = EdgeVector::iterator;
171 using const_edge_iterator = EdgeVector::const_iterator;
540 using SymbolSet = DenseSet<Symbol *>;
541 using BlockSet = DenseSet<Block *>;
544 using symbol_iterato
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Diterator.h30 // std::unique_ptr managed elements in the vector, behaving like we are using
35 using iterator_category = std::random_access_iterator_tag;
36 using value_type = ValueType;
38 using pointer = value_type*;
39 using reference = value_type&;
40 using difference_type = std::ptrdiff_t;
43 using Uptr = std::unique_ptr<ValueType>;
44 using UptrVector = typename std::conditional<IsConst, const std::vector<Uptr>,
46 using UnderlyingIterator =
176 using iterator_categor
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Diterator.h30 // std::unique_ptr managed elements in the vector, behaving like we are using
35 using iterator_category = std::random_access_iterator_tag;
36 using value_type = ValueType;
38 using pointer = value_type*;
39 using reference = value_type&;
40 using difference_type = std::ptrdiff_t;
43 using Uptr = std::unique_ptr<ValueType>;
44 using UptrVector = typename std::conditional<IsConst, const std::vector<Uptr>,
46 using UnderlyingIterator =
176 using iterator_categor
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h90 using word_t = size_t;
370 using SimpleBitstreamCursor::AtEndOfStream;
371 using SimpleBitstreamCursor::canSkipToPos;
372 using SimpleBitstreamCursor::fillCurWord;
373 using SimpleBitstreamCursor::getBitcodeBytes;
374 using SimpleBitstreamCursor::GetCurrentBitNo;
375 using SimpleBitstreamCursor::getCurrentByteNo;
376 using SimpleBitstreamCursor::getPointerToByte;
377 using SimpleBitstreamCursor::JumpToBit;
378 using SimpleBitstreamCurso
[all...]
/third_party/spirv-tools/source/opt/
H A Diterator.h30 // std::unique_ptr managed elements in the vector, behaving like we are using
35 using iterator_category = std::random_access_iterator_tag;
36 using value_type = ValueType;
38 using pointer = value_type*;
39 using reference = value_type&;
40 using difference_type = std::ptrdiff_t;
43 using Uptr = std::unique_ptr<ValueType>;
44 using UptrVector = typename std::conditional<IsConst, const std::vector<Uptr>,
46 using UnderlyingIterator =
176 using iterator_categor
[all...]
/third_party/node/deps/v8/src/heap/cppgc-js/
H A Dunified-heap-marking-visitor.h28 using cppgc::SourceLocation;
29 using cppgc::TraceDescriptor;
30 using cppgc::WeakCallback;
31 using cppgc::internal::HeapBase;
32 using cppgc::internal::MutatorMarkingState;
78 using MutatorUnifiedHeapMarkingVisitor::MutatorUnifiedHeapMarkingVisitor;
/third_party/node/deps/v8/src/objects/
H A Dallocation-site.h73 using ElementsKindBits = base::BitField<ElementsKind, 0, 6>;
74 using DoNotInlineBit = base::BitField<bool, 6, 1>;
78 using MementoFoundCountBits = base::BitField<int, 0, 26>;
79 using PretenureDecisionBits = base::BitField<PretenureDecision, 26, 3>;
80 using DeoptDependentCodeBit = base::BitField<bool, 29, 1>;
184 using BodyDescriptor = StructBodyDescriptor;
/third_party/skia/third_party/externals/dawn/src/common/
H A DSerialQueue.h27 using Serial = SerialT;
28 using Value = ValueT;
29 using SerialPair = std::pair<Serial, std::vector<Value>>;
30 using Storage = std::vector<SerialPair>;
31 using StorageIterator = typename Storage::iterator;
32 using ConstStorageIterator = typename Storage::const_iterator;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/
H A DProfile.h53 using ThreadID = uint64_t;
54 using PathID = unsigned;
55 using FuncID = int32_t;
106 using std::swap; in swap()
115 using BlockList = std::list<Block>;
140 using const_iterator = BlockList::const_iterator;
/third_party/skia/third_party/externals/swiftshader/third_party/marl/kokoro/ubuntu/
H A Ddocker.sh29 . /bin/using.sh # Declare the bash `using` function for configuring toolchains.
35 using gcc-9 # Always update gcc so we get a newer standard library.
38 using cmake-3.17.2
56 using ndk-r21d
62 using clang-10.0.0
90 # Cleans build directory and performs a build using the provided CMake flags.
135 # Cleans build directory and performs a build using the provided CMake
145 # Cleans build directory and performs a build using the provided CMake
169 using baze
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceELFObjectWriter.h23 using namespace llvm::ELF;
27 using VariableDeclarationPartition = std::vector<VariableDeclaration *>;
44 /// if using -fdata-sections. The requirement to invoke only once without
109 using SectionList = std::vector<ELFSection *>;
110 using TextSectionList = std::vector<ELFTextSection *>;
111 using DataSectionList = std::vector<ELFDataSection *>;
112 using RelSectionList = std::vector<ELFRelocationSection *>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DGCMetadata.h79 using iterator = std::vector<GCPoint>::iterator;
80 using roots_iterator = std::vector<GCRoot>::iterator;
81 using live_iterator = std::vector<GCRoot>::const_iterator;
112 // using MachineFrameInfo).
123 /// label just prior to the safe point (if the code generator is using
166 using FuncInfoVec = std::vector<std::unique_ptr<GCFunctionInfo>>;
177 using finfo_map_type = DenseMap<const Function *, GCFunctionInfo *>;
181 using iterator = SmallVector<std::unique_ptr<GCStrategy>, 1>::const_iterator;
H A DLiveIntervalUnion.h35 using LiveVirtRegBitSet = SparseBitVector<128>;
46 using LiveSegments = IntervalMap<SlotIndex, LiveInterval*>;
52 using SegmentIter = LiveSegments::iterator;
55 using ConstSegmentIter = LiveSegments::const_iterator;
58 using Allocator = LiveSegments::Allocator;
81 using Map = LiveSegments;
99 // Print union, using TRI to translate register names

Completed in 15 milliseconds

12345678910>>...122