HomeSort by relevance Sort by last modified time
    Searched refs:Seq (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/SemaCXX/
make_integer_seq.cpp 6 struct Seq {
11 using MakeSeq = __make_integer_seq<Seq, T, N>;
13 static_assert(__is_same(MakeSeq<int, 0>, Seq<int>), "");
14 static_assert(__is_same(MakeSeq<int, 1>, Seq<int, 0>), "");
15 static_assert(__is_same(MakeSeq<int, 2>, Seq<int, 0, 1>), "");
16 static_assert(__is_same(MakeSeq<int, 3>, Seq<int, 0, 1, 2>), "");
17 static_assert(__is_same(MakeSeq<int, 4>, Seq<int, 0, 1, 2, 3>), "");
19 static_assert(__is_same(MakeSeq<unsigned int, 0U>, Seq<unsigned int>), "");
20 static_assert(__is_same(MakeSeq<unsigned int, 1U>, Seq<unsigned int, 0U>), "");
21 static_assert(__is_same(MakeSeq<unsigned int, 2U>, Seq<unsigned int, 0U, 1U>), "")
    [all...]
  /external/clang/test/PCH/
make-integer-seq.cpp 5 struct Seq {
10 using MakeSeq = __make_integer_seq<Seq, T, N>;
  /external/swiftshader/third_party/subzero/src/
IceThreading.cpp 22 EmitterWorkItem::EmitterWorkItem(uint32_t Seq)
23 : Sequence(Seq), Kind(WI_Nop), GlobalInits(nullptr), Function(nullptr),
25 EmitterWorkItem::EmitterWorkItem(uint32_t Seq,
27 : Sequence(Seq), Kind(WI_GlobalInits), GlobalInits(std::move(D)),
29 EmitterWorkItem::EmitterWorkItem(uint32_t Seq, std::unique_ptr<Assembler> A)
30 : Sequence(Seq), Kind(WI_Asm), GlobalInits(nullptr), Function(std::move(A)),
32 EmitterWorkItem::EmitterWorkItem(uint32_t Seq, std::unique_ptr<Cfg> F)
33 : Sequence(Seq), Kind(WI_Cfg), GlobalInits(nullptr), Function(nullptr),
IceThreading.h 177 explicit EmitterWorkItem(uint32_t Seq);
179 EmitterWorkItem(uint32_t Seq, std::unique_ptr<VariableDeclarationList> D);
181 EmitterWorkItem(uint32_t Seq, std::unique_ptr<Assembler> A);
183 EmitterWorkItem(uint32_t Seq, std::unique_ptr<Cfg> F);
  /external/llvm/utils/TableGen/
SequenceToOffsetTable.h 68 void add(const SeqT &Seq) {
70 typename SeqMap::iterator I = Seqs.lower_bound(Seq);
72 // If SeqMap contains a sequence that has Seq as a suffix, I will be
74 if (I != Seqs.end() && isSuffix(Seq, I->first))
77 I = Seqs.insert(I, std::make_pair(Seq, 0u));
79 // The entry before I may be a suffix of Seq that can now be erased.
80 if (I != Seqs.begin() && isSuffix((--I)->first, Seq))
103 /// get - Returns the offset of Seq in the final table.
104 unsigned get(const SeqT &Seq) const {
106 typename SeqMap::const_iterator I = Seqs.lower_bound(Seq);
    [all...]
CodeGenSchedule.h 75 CodeGenSchedRW(unsigned Idx, bool Read, ArrayRef<unsigned> Seq,
78 HasVariants(false), IsVariadic(false), IsSequence(true), Sequence(Seq) {
380 unsigned findOrInsertRW(ArrayRef<unsigned> Seq, bool IsRead);
396 std::string genRWName(ArrayRef<unsigned> Seq, bool IsRead);
397 unsigned findRWForSequence(ArrayRef<unsigned> Seq, bool IsRead);
  /external/llvm/lib/Target/Mips/
MipsAnalyzeImmediate.cpp 86 void MipsAnalyzeImmediate::ReplaceADDiuSLLWithLUi(InstSeq &Seq) {
89 if ((Seq.size() < 2) || (Seq[0].Opc != ADDiu) ||
90 (Seq[1].Opc != SLL) || (Seq[1].ImmOpnd < 16))
94 int64_t Imm = SignExtend64<16>(Seq[0].ImmOpnd);
95 int64_t ShiftedImm = (uint64_t)Imm << (Seq[1].ImmOpnd - 16);
101 Seq[0].Opc = LUi;
102 Seq[0].ImmOpnd = (unsigned)(ShiftedImm & 0xffff);
103 Seq.erase(Seq.begin() + 1)
    [all...]
MipsAnalyzeImmediate.h 51 void ReplaceADDiuSLLWithLUi(InstSeq &Seq);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Output.c 332 Head->Seq = NTOHL (Seg->Seq);
346 TCP_SEQ_BETWEEN (Seg->Seq, Tcb->SndPsh, Seg->End)) {
364 TCP_SEQ_LEQ (Seg->Seq, Tcb->SndUp)) {
370 Seg->Urg = (UINT16) TCP_SUB_SEQ (Tcb->SndUp, Seg->Seq);
375 Seg->Seq),
406 @param Seq The sequence number of the segment.
415 IN TCP_SEQNO Seq,
430 ASSERT ((Tcb != NULL) && TCP_SEQ_LEQ (Seq, Tcb->SndNxt) && (Len > 0));
433 // Find the segment that contains the Seq.
    [all...]
Tcp4Input.c 36 TCP_SEQ_LT (Seg->Seq, Tcb->RcvWl2 + Tcb->RcvWnd));
278 if (TCP_SEQ_LEQ (Seg->End, Left) || TCP_SEQ_LEQ (Right, Seg->Seq)) {
283 Seg->Seq = Seg->End;
291 if (TCP_SEQ_LT (Seg->Seq, Left)) {
293 Drop = TCP_SUB_SEQ (Left, Seg->Seq);
294 Urg = Seg->Seq + Seg->Urg;
295 Seg->Seq = Left;
307 if (TCP_SEQ_LT (Urg, Seg->Seq)) {
311 Seg->Urg = (UINT16) TCP_SUB_SEQ (Urg, Seg->Seq);
377 TCP_SEQNO Seq;
    [all...]
Tcp4Func.h 296 Retransmit the segment from sequence Seq.
299 @param Seq The sequence number of the segment to be retransmitted.
308 IN TCP_SEQNO Seq
359 @param Seq The sequence number of the segment.
368 IN TCP_SEQNO Seq,
376 @param Seq The sequence number of the segment.
385 IN TCP_SEQNO Seq,
390 Get a segment starting from sequence Seq of a maximum
394 @param Seq The sequence number of the segment.
403 IN TCP_SEQNO Seq,
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpOutput.c 326 Head->Seq = NTOHL (Seg->Seq);
340 TCP_SEQ_BETWEEN (Seg->Seq, Tcb->SndPsh, Seg->End)
357 if (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_SND_URG) && TCP_SEQ_LEQ (Seg->Seq, Tcb->SndUp)) {
363 Seg->Urg = (UINT16) TCP_SUB_SEQ (Tcb->SndUp, Seg->Seq);
368 Seg->Seq),
398 @param[in] Seq The sequence number of the segment.
407 IN TCP_SEQNO Seq,
422 ASSERT ((Tcb != NULL) && TCP_SEQ_LEQ (Seq, Tcb->SndNxt) && (Len > 0));
425 // Find the segment that contains the Seq.
    [all...]
TcpInput.c 35 TCP_SEQ_LT (Seg->Seq, Tcb->RcvWl2 + Tcb->RcvWnd));
302 if (TCP_SEQ_LEQ (Seg->End, Left) || TCP_SEQ_LEQ (Right, Seg->Seq)) {
307 Seg->Seq = Seg->End;
315 if (TCP_SEQ_LT (Seg->Seq, Left)) {
317 Drop = TCP_SUB_SEQ (Left, Seg->Seq);
318 Urg = Seg->Seq + Seg->Urg;
319 Seg->Seq = Left;
331 if (TCP_SEQ_LT (Urg, Seg->Seq)) {
335 Seg->Urg = (UINT16) TCP_SUB_SEQ (Urg, Seg->Seq);
399 TCP_SEQNO Seq;
    [all...]
  /external/skia/tests/
SkPEGTest.cpp 164 REPORTER_ASSERT(r, (Seq<LIT<'X'>, EOS>::Match("X")));
165 REPORTER_ASSERT(r, !(Seq<LIT<'X'>, EOS>::Match("x")));
166 REPORTER_ASSERT(r, !(Seq<LIT<'X'>, EOS>::Match("xX")));
167 REPORTER_ASSERT(r, !(Seq<LIT<'X'>, EOS>::Match("XX")));
168 REPORTER_ASSERT(r, (Seq<LIT<'X'>, Seq<LIT<'X'>, EOS>>::Match("XX")));
169 REPORTER_ASSERT(r, (Seq<LIT<'X'>, Seq<LIT<'X'>, EOS>>::Match("XX")));
171 REPORTER_ASSERT(r, !(Seq<LIT<'F', 'o', 'o'>, EOS>::Match("FooBar")));
172 REPORTER_ASSERT(r, (Seq<LIT<'F', 'o', 'o'>, EOS>::Match("Foo")))
    [all...]
  /external/skia/experimental/svg/model/
SkPEG.h 87 template <typename... E> struct Seq;
90 struct Seq<> {
100 struct Seq<E, Es...> {
103 V(const typename E::V& head, const typename Seq<Es...>::V& tail)
118 typename Seq<Es...>::V fTailV;
128 const auto tailMatch = Seq<Es...>::Match(headMatch.fNext);
198 using Some = Seq<E, Any<E>>;
  /external/llvm/lib/Transforms/ObjCARC/
PtrState.h 110 unsigned char Seq : 8;
115 PtrState() : KnownPositiveRefCount(false), Partial(false), Seq(S_None) {}
149 Sequence GetSeq() const { return static_cast<Sequence>(Seq); }
PtrState.cpp 128 Seq = NewSeq;
139 Seq = MergeSeqs(GetSeq(), Other.GetSeq(), TopDown);
143 if (Seq == S_None) {
225 DEBUG(dbgs() << " CanAlterRefCount: Seq: " << S << "; " << *Ptr
252 DEBUG(dbgs() << " CanUse: Seq: " << GetSeq() << "; " << *Ptr
263 } else if (Seq == S_Release && IsUser(Class)) {
264 DEBUG(dbgs() << " PreciseReleaseUse: Seq: " << GetSeq() << "; "
278 DEBUG(dbgs() << " PreciseStopUse: Seq: " << GetSeq() << "; "
358 DEBUG(dbgs() << " CanAlterRefCount: Seq: " << GetSeq() << "; " << *Ptr
391 DEBUG(dbgs() << " CanUse: Seq: " << GetSeq() << "; " << *Pt
    [all...]
  /external/v8/src/
effects.h 47 static Effect Seq(Effect e1, Effect e2, Zone* zone) {
94 void Seq(Var var, Effect effect) {
97 effect = Effect::Seq(locator.value(), effect, Base::zone());
102 void Seq(Effects that) {
128 Seq(override.effects);
136 void Call(Var var, Effect effect) { self.Seq(var, effect); }
161 void Call(Var var, Effect effect) { effects.Seq(var, new_effect); }
  /external/llvm/utils/lit/lit/
ShUtil.py 5 from lit.ShCommands import Command, Pipeline, Seq
244 lhs = Seq(lhs, operator[0], self.parse_pipeline())
323 Seq(Pipeline([Command(['a'], [])], False),
328 Seq(Pipeline([Command(['a'], [])], False),
333 Seq(Pipeline([Command(['a'], [])], False),
338 Seq(Pipeline([Command(['a'], [])], False),
343 Seq(Seq(Pipeline([Command(['a'], [])], False),
350 Seq(Pipeline([Command(['a'], [])], False),
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
ShUtil.py 4 from ShCommands import Command, Pipeline, Seq
243 lhs = Seq(lhs, operator[0], self.parse_pipeline())
326 Seq(Pipeline([Command(['a'], [])], False),
331 Seq(Pipeline([Command(['a'], [])], False),
336 Seq(Pipeline([Command(['a'], [])], False),
341 Seq(Pipeline([Command(['a'], [])], False),
346 Seq(Seq(Pipeline([Command(['a'], [])], False),
  /prebuilts/misc/common/swig/include/2.0.11/octave/
octcontainer.swg 196 OctSequence_Ref(const octave_value& seq, int index)
197 : _seq(seq), _index(index)
255 OctSequence_InputIterator(const octave_value& seq, int index)
256 : _seq(seq), _index(index)
348 OctSequence_Cont(const octave_value& seq) : _seq(seq)
352 if (!OctSequence_Check(seq)) {
355 _seq = seq;
544 template <class OctSeq, class Seq>
546 assign(const OctSeq& octseq, Seq* seq)
    [all...]
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
client.go 53 c.pending[r.Seq] = r.ServiceMethod
57 c.req.Id = r.Seq
85 r.Seq = c.resp.Id
server.go 31 mutex sync.Mutex // protects seq, pending
32 seq uint64
75 c.seq++
76 c.pending[c.seq] = c.req.Id
78 r.Seq = c.seq
104 b, ok := c.pending[r.Seq]
109 delete(c.pending, r.Seq)
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
client.go 53 c.pending[r.Seq] = r.ServiceMethod
57 c.req.Id = r.Seq
85 r.Seq = c.resp.Id
server.go 31 mutex sync.Mutex // protects seq, pending
32 seq uint64
75 c.seq++
76 c.pending[c.seq] = c.req.Id
78 r.Seq = c.seq
104 b, ok := c.pending[r.Seq]
109 delete(c.pending, r.Seq)

Completed in 4084 milliseconds

1 2 3 4 5 6 7