HomeSort by relevance Sort by last modified time
    Searched defs:front (Results 1 - 25 of 317) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_state_raster.c 126 int front = ctx->Polygon.FrontFace; local
143 nv04->ctrl[0] |= (cull == GL_FRONT) ^ (front == GL_CCW) ?
  /art/runtime/base/
bounded_fifo.h 56 const T& front() const { function in class:art::BoundedFifoPowerOfTwo
dchecked_vector.h 29 // DCHECK()s for the subscript operator, front(), back(), pop_back(),
131 // Element access: front(), back(). Check not empty.
132 reference front() { DCHECK(!empty()); return Base::front(); } function in class:art::dchecked_vector
133 const_reference front() const { DCHECK(!empty()); return Base::front(); } function in class:art::dchecked_vector
transform_array_ref.h 114 reference front() { return GetFunction()(base().front()); } function in class:art::TransformArrayRef
115 const_reference front() const { return GetFunction()(base().front()); } function in class:art::TransformArrayRef
  /external/eigen/unsupported/Eigen/CXX11/src/util/
EmulateArray.h 29 EIGEN_STRONG_INLINE T& front() { return values[0]; } function in class:Eigen::array
31 EIGEN_STRONG_INLINE const T& front() const { return values[0]; } function in class:Eigen::array
145 EIGEN_STRONG_INLINE T& front() { function in class:Eigen::array
150 EIGEN_STRONG_INLINE const T& front() const { function in class:Eigen::array
  /external/icu/icu4c/source/layoutex/
LXUtilities.cpp 79 le_int32 front, back; local
81 for (front = 0, back = length - 1; front < back; front += 1, back -= 1) {
82 le_int32 swap = array[front];
84 array[front] = array[back];
91 le_int32 front, back; local
93 for (front = 0, back = length - 1; front < back; front += 1, back -= 1)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
device.hpp 96 device &front() { function in class:clover::device_registry
97 return devs.front();
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
TinyPtrVector.h 91 EltTy front() const { function in class:llvm::TinyPtrVector
95 return Val.template get<VecTy*>()->front();
ArrayRef.h 91 /// front - Get the first element.
92 const T &front() const { function in class:llvm::ArrayRef
  /frameworks/av/media/libstagefright/webm/
LinkedBlockingQueue.h 32 T front(bool remove) { function in class:android::LinkedBlockingQueue
64 return front(false);
68 return front(true);
  /frameworks/base/libs/hwui/utils/
RingBuffer.h 45 T& front() { function in class:android::uirenderer::RingBuffer
  /frameworks/compile/mclinker/include/mcld/LD/
ELFSegmentFactory.h 36 const ELFSegment* front() const { return m_Segments.front(); } function in class:mcld::ELFSegmentFactory
37 ELFSegment* front() { return m_Segments.front(); } function in class:mcld::ELFSegmentFactory
  /frameworks/compile/mclinker/include/mcld/Script/
SectionsCmd.h 43 const_reference front() const { return m_SectionCommands.front(); } function in class:mcld::SectionsCmd
44 reference front() { return m_SectionCommands.front(); } function in class:mcld::SectionsCmd
StringList.h 45 const_reference front() const { return m_Tokens.front(); } function in class:mcld::StringList
46 reference front() { return m_Tokens.front(); } function in class:mcld::StringList
  /hardware/ril/libril/
rilSocketQueue.h 54 * Front of the queue.
56 T *front; member in class:Ril_queue
68 * Add a request to the front of the queue.
98 front = NULL;
109 temp = this->front;
110 if(NULL != this->front->p_next) {
111 this->front = this->front->p_next;
113 this->front = NULL;
125 if(NULL == this->front) {
    [all...]
  /cts/apps/CtsVerifier/jni/audio_loopback/audio_utils/
fifo.c 65 // Return the difference between two indices: rear - front, where 0 <= difference <= mFrameCount.
67 int32_t front)
69 int32_t diff = rear - front;
72 int32_t genDiff = (rear & mask) - (front & mask);
85 int32_t front = android_atomic_acquire_load(&fifo->mFront); local
87 size_t availToWrite = fifo->mFrameCount - audio_utils_fifo_diff(fifo, rear, front);
113 int32_t front = fifo->mFront; local
114 size_t availToRead = audio_utils_fifo_diff(fifo, rear, front);
118 front &= fifo->mFrameCountP2 - 1;
119 size_t part1 = fifo->mFrameCount - front;
    [all...]
  /external/libchrome/base/memory/
ref_counted_memory.cc 15 (memcmp(front(), other->front(), size()) == 0);
22 const unsigned char* RefCountedStaticMemory::front() const { function in class:base::RefCountedStaticMemory
48 const unsigned char* RefCountedBytes::front() const { function in class:base::RefCountedBytes
49 // STL will assert if we do front() on an empty vector, but calling code
51 return size() ? &data_.front() : NULL;
72 const unsigned char* RefCountedString::front() const { function in class:base::RefCountedString
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
op_queue.hpp 47 static Operation*& front(op_queue<Operation>& q) function in class:asio::detail::op_queue_access
81 // Get the operation at the front of the queue.
82 Operation* front() function in class:asio::detail::op_queue
87 // Pop an operation from the front of the queue.
120 if (Operation* other_front = op_queue_access::front(q))
127 op_queue_access::front(q) = 0;
141 // The front of the queue.
  /frameworks/wilhelm/src/itf/
I3DLocation.cpp 171 SLVec3D front = *pFront; local
176 thiz->mOrientationVectors.mFront = front;
251 SLVec3D front = thiz->mOrientationVectors.mFront; local
254 *pFront = front;
I3DMacroscopic.cpp 104 SLVec3D front = *pFront; local
108 thiz->mOrientationVectors.mFront = front;
164 SLVec3D front = thiz->mOrientationVectors.mFront; local
167 *pFront = front;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_list.h 73 Item *front() { return first_; } function in struct:__sanitizer::IntrusiveList
74 const Item *front() const { return first_; } function in struct:__sanitizer::IntrusiveList
  /external/llvm/include/llvm/ADT/
StringRef.h 126 /// front - Get the first character in the string.
127 char front() const { function in class:llvm::StringRef
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_st.c 229 unsigned front = ST_ATTACHMENT_FRONT_LEFT, back = ST_ATTACHMENT_BACK_LEFT; local
234 ptex = stwfb->textures[front];
235 stwfb->textures[front] = stwfb->textures[back];
239 front = 1 << front;
243 mask = stwfb->texture_mask & ~(front | back);
244 if (stwfb->texture_mask & front)
247 mask |= front;
250 front = ST_ATTACHMENT_FRONT_LEFT;
251 return stw_st_framebuffer_present_locked(hdc, &stwfb->base, front);
    [all...]
  /external/skia/include/core/
SkDeque.h 40 const void* front() const { return fFront; } function in class:SkDeque
43 void* front() { function in class:SkDeque
44 return (void*)((const SkDeque*)this)->front();
  /external/skia/src/core/
SkSinglyLinkedList.h 33 T* front() { return fHead ? &fHead->fData : nullptr; } function in class:SkSinglyLinkedList

Completed in 1357 milliseconds

1 2 3 4 5 6 7 8 91011>>