Home
last modified time | relevance | path

Searched refs:Extend (Results 1 - 25 of 75) sorted by relevance

123

/third_party/json/include/nlohmann/detail/meta/
H A Dcpp_future.hpp86 struct Extend;
90 struct Extend<integer_sequence<T, Ints...>, SeqSize, 0>
96 struct Extend<integer_sequence<T, Ints...>, SeqSize, 1>
107 typename Extend < typename Gen < T, N / 2 >::type, N / 2, N % 2 >::type;
/third_party/skia/third_party/externals/abseil-cpp/absl/utility/
H A Dutility.h92 struct Extend;
96 struct Extend<integer_sequence<T, Ints...>, SeqSize, 0> { struct
101 struct Extend<integer_sequence<T, Ints...>, SeqSize, 1> { struct
110 typename Extend<typename Gen<T, N / 2>::type, N / 2, N % 2>::type;
/third_party/vixl/src/aarch64/
H A Doperands-aarch64.h327 explicit Operand(Register reg, Extend extend, unsigned shift_amount = 0);
364 Extend GetExtend() const { in GetExtend()
368 VIXL_DEPRECATED("GetExtend", Extend extend() const) { return GetExtend(); }
382 Extend extend_;
403 Extend extend,
419 Extend GetExtend() const { return extend_; } in GetExtend()
422 // Extend modes can also encode a shift for some instructions. in GetShiftAmount()
473 Extend extend_;
530 // corresponding `Extend` value.
546 // `Shift` or `Extend` valu
[all...]
H A Doperands-aarch64.cc165 Operand::Operand(Register reg, Extend extend, unsigned shift_amount) in Operand()
174 // Extend modes SXTX and UXTX require a 64-bit register. in Operand()
250 Extend extend, in MemOperand()
/third_party/node/deps/v8/src/strings/
H A Dstring-builder.cc266 void IncrementalStringBuilder::Extend() { in Extend() function in v8::internal::IncrementalStringBuilder
318 if (current_index_ == part_length_) Extend(); in AppendStringByCopy()
329 Extend(); // Attach current part and allocate new part. in AppendString()
H A Dstring-builder-inl.h144 if (current_index_ == part_length_) Extend();
205 Extend(); in ChangeEncoding()
321 void Extend();
361 if (current_index_ == part_length_) Extend();
/third_party/node/deps/v8/tools/dev/
H A Dgm.py283 def Extend(self, targets, tests=[], clean=False): member in Config
415 self.configs[path].Extend(targets, tests)
423 self.configs[c].Extend(**impact)
500 self.configs[c].Extend(self.global_targets, self.global_tests)
/third_party/protobuf/python/google/protobuf/pyext/
H A Drepeated_scalar_container.h70 PyObject* Extend(RepeatedScalarContainer* self, PyObject* value);
H A Drepeated_composite_container.h86 PyObject* Extend(RepeatedCompositeContainer* self, PyObject* value);
H A Drepeated_composite_container.cc172 PyObject* Extend(RepeatedCompositeContainer* self, PyObject* value) { in Extend() function
202 return Extend(reinterpret_cast<RepeatedCompositeContainer*>(self), value); in ExtendMethod()
206 return Extend(self, other); in MergeFrom()
H A Drepeated_scalar_container.cc491 PyObject* Extend(RepeatedScalarContainer* self, PyObject* value) { in Subscript() function
560 return Extend(reinterpret_cast<RepeatedScalarContainer*>(self), value); in Subscript()
666 return Extend(reinterpret_cast<RepeatedScalarContainer*>(pself), arg); in Subscript()
/third_party/node/deps/v8/src/compiler/
H A Dload-elimination.h61 AbstractElements const* Extend(Node* object, Node* index, Node* value, in Extend() function in v8::internal::compiler::final::final
137 AbstractField const* Extend(Node* object, FieldInfo info, in Extend() function in v8::internal::compiler::final::final
182 AbstractMaps const* Extend(Node* object, ZoneHandleSet<Map> maps,
/third_party/rust/crates/serde/test_suite/tests/macros/
H A Dmod.rs76 $(<Vec<Token> as Extend<Token>>::extend(&mut vec, $elem.into_iter());)*
/third_party/rust/crates/either/src/
H A Dlib.rs920 impl<L, R, A> Extend<A> for Either<L, R>
922 L: Extend<A>,
923 R: Extend<A>,
984 B: Default + Extend<Self::Item>, in partition()
/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/
H A Dserialization.go212 if group.Extend != nil {
214 sb.WriteString(fmt.Sprintf("%v", *group.Extend))
414 g.Extend = &extend
H A Doptimization.go109 a.grp.Extend = &extend
H A Dtree.go177 for id := tc.Group; id != nil; id = tf.spangroups[*id].Extend {
477 Extend *SpanGroupID
/third_party/rust/crates/cxx/gen/src/
H A Dinclude.rs177 impl<'i, 'a> Extend<&'i Include> for Includes<'a> {
/third_party/rust/crates/cxx/gen/cmd/src/gen/
H A Dinclude.rs177 impl<'i, 'a> Extend<&'i Include> for Includes<'a> {
/third_party/rust/crates/cxx/gen/build/src/gen/
H A Dinclude.rs177 impl<'i, 'a> Extend<&'i Include> for Includes<'a> {
/third_party/rust/crates/cxx/gen/lib/src/gen/
H A Dinclude.rs177 impl<'i, 'a> Extend<&'i Include> for Includes<'a> {
/third_party/node/deps/v8/src/codegen/arm64/
H A Dassembler-arm64.h82 inline Operand(Register reg, Extend extend, unsigned shift_amount = 0);
116 inline Extend extend() const;
127 Extend extend_;
139 inline explicit MemOperand(Register base, Register regoffset, Extend extend,
149 Extend extend() const { return extend_; } in extend()
162 Extend extend_;
2185 inline static Instr ExtendMode(Extend extend);
2495 void EmitExtendShift(const Register& rd, const Register& rn, Extend extend,
H A Dassembler-arm64-inl.h256 Operand::Operand(Register reg, Extend extend, unsigned shift_amount) in Operand()
266 // Extend modes SXTX and UXTX require a 64-bit register. in Operand()
354 Extend Operand::extend() const { in extend()
384 MemOperand::MemOperand(Register base, Register regoffset, Extend extend, in MemOperand()
968 Instr Assembler::ExtendMode(Extend extend) { in ExtendMode()
/third_party/node/deps/v8/src/handles/
H A Dhandles.cc92 Address* HandleScope::Extend(Isolate* isolate) { in Extend() function in v8::internal::HandleScope
H A Dhandles.h259 // Extend the handle scope making room for more handles.
260 V8_EXPORT_PRIVATE static Address* Extend(Isolate* isolate);

Completed in 19 milliseconds

123