Lines Matching defs:tail
28 uint32_t tail = queue->GetTail();
30 elements->Set(thread, tail, value);
35 queue->SetTail((tail + 1) % elementsSize);
43 uint32_t tail = obj->GetTail();
51 } else if ((tail + 1) % oldLength == front) {
53 newElements = thread->GetEcmaVM()->GetFactory()->CopyQueue(oldElements, newCapacity, front, tail);
55 tail = oldLength - 1;
62 obj->SetTail(tail);
165 uint32_t tail = obj->GetTail();
167 thread->GetEcmaVM()->GetFactory()->CopyQueue(oldElements, newCapacity, front, tail);
184 uint32_t tail = obj->GetTail();
186 thread->GetEcmaVM()->GetFactory()->CopyQueue(oldElements, newCapacity, front, tail);