HomeSort by relevance Sort by last modified time
    Searched defs:Front (Results 1 - 19 of 19) sorted by null

  /frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
ring_buffer.h 13 // or erase() from the front which is inefficient.
62 const T& Front() const { return Get(0); }
64 T& Front() { return Get(0); }
  /prebuilts/go/darwin-x86/src/container/list/
list.go 8 // for e := l.Front(); e != nil; e = e.Next() {
20 // element (l.Front()).
68 // Front returns the first element of list l or nil if the list is empty.
69 func (l *List) Front() *Element {
131 // PushFront inserts a new element e with value v at the front of list l and returns e.
165 // MoveToFront moves element e to the front of list l.
211 for i, e := other.Len(), other.Front(); i > 0; i, e = i-1, e.Next() {
216 // PushFrontList inserts a copy of an other list at the front of list l.
  /prebuilts/go/linux-x86/src/container/list/
list.go 8 // for e := l.Front(); e != nil; e = e.Next() {
20 // element (l.Front()).
68 // Front returns the first element of list l or nil if the list is empty.
69 func (l *List) Front() *Element {
131 // PushFront inserts a new element e with value v at the front of list l and returns e.
165 // MoveToFront moves element e to the front of list l.
211 for i, e := other.Len(), other.Front(); i > 0; i, e = i-1, e.Next() {
216 // PushFrontList inserts a copy of an other list at the front of list l.
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Keyboard/VirtualKeyboardDxe/
VirtualKeyboard.h 73 UINTN Front;
  /external/swiftshader/third_party/subzero/src/
IceThreading.h 48 /// MaxStaticSize, where the queue boundaries are denoted by the Front and Back
49 /// fields. Front==Back indicates an empty queue.
102 /// Lock guards access to WorkItems, Front, Back, and IsEnded.
120 /// Front is the index into WorkItems[] of the oldest element, i.e. the next
121 /// to be popped. (More precisely Front&MaxStaticSize is the index.) It is
123 size_t Front = 0;
134 bool empty() const { return Front == Back; }
135 size_t size() const { return Back - Front; }
142 return std::move(WorkItems[Front++ & MaxStaticSizeMask]);
  /device/linaro/bootloader/edk2/EmulatorPkg/EmuGopDxe/
Gop.h 42 UINTN Front;
  /external/llvm/lib/DebugInfo/Symbolize/
Symbolize.cpp 435 char Front = SymbolName.empty() ? '\0' : SymbolName[0];
436 if (Front == '_' || Front == '@')
440 if (Front != '?') {
479 if (!Name.empty() && Name.front() == '?') {
  /external/webrtc/talk/app/webrtc/
datachannel.cc 93 DataBuffer* DataChannel::PacketQueue::Front() {
94 return packets_.front();
102 byte_count_ -= packets_.front()->size();
113 delete packets_.front();
514 rtc::scoped_ptr<DataBuffer> buffer(queued_received_data_.Front());
529 DataBuffer* buffer = queued_send_data_.Front();
609 rtc::scoped_ptr<DataBuffer> buf(control_packets.Front());
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtGopDxe/
WinNtGop.h 65 UINTN Front;
  /external/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 182 SmallVector<MachineInstr *, 8> Front;
186 Front.push_back(MI);
188 while (Front.size() != 0) {
189 MI = Front.back();
190 Front.pop_back();
367 SmallVector<MachineInstr *, 8> Front;
368 Front.push_back(MI);
369 while (Front.size() != 0) {
370 MI = Front.back();
371 Front.pop_back()
    [all...]
  /external/lzma/CPP/Common/
MyVector.h 231 const T& Front() const { return _items[0]; }
232 T& Front() { return _items[0]; }
348 T* p = (&Front()) - 1;
388 T* p = (&Front()) - 1;
454 const T& Front() const { return operator[](0); }
455 T& Front() { return operator[](0); }
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/
BiosKeyboard.h 205 UINTN Front;
  /external/webrtc/webrtc/modules/video_coding/
jitter_buffer.cc 68 VCMFrameBuffer* FrameList::Front() const {
98 VCMFrameBuffer* oldest_frame = Front();
464 if (decodable_frames_.Front()->GetState() == kStateComplete) {
486 decodable_frames_.Front()->GetState() != kStateComplete) {
504 decodable_frames_.Front()->GetState() != kStateComplete) {
515 decodable_frames_.Front()->GetState() != kStateComplete) {
519 *timestamp = decodable_frames_.Front()->TimeStamp();
541 oldest_frame = incomplete_frames_.Front();
547 oldest_frame = decodable_frames_.Front();
976 uint32_t start_timestamp = incomplete_frames_.Front()->TimeStamp()
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp     [all...]
  /external/swiftshader/include/Direct3D/
d3d8types.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3d8types.h     [all...]
d3d9types.h     [all...]
ksmedia.h     [all...]
  /external/mesa3d/include/D3D9/
d3d9types.h     [all...]

Completed in 1480 milliseconds