Lines Matching defs:front
42 uint32_t front = obj->GetFront();
51 } else if ((tail + 1) % oldLength == front) {
53 newElements = thread->GetEcmaVM()->GetFactory()->CopyQueue(oldElements, newCapacity, front, tail);
54 front = 0;
61 obj->SetFront(front);
88 uint32_t front = queue->GetFront();
90 JSTaggedValue value = elements->Get(front);
94 queue->SetFront((front + 1) % elementsSize);
113 uint32_t front = GetCurrentFront();
115 uint32_t curIndex = (front + index) % capacity;
164 uint32_t front = obj->GetFront();
167 thread->GetEcmaVM()->GetFactory()->CopyQueue(oldElements, newCapacity, front, tail);
183 uint32_t front = obj->GetFront();
186 thread->GetEcmaVM()->GetFactory()->CopyQueue(oldElements, newCapacity, front, tail);