/external/skia/src/gpu/ |
GrAllocator.h | 53 SkASSERT(NULL == fBlocks.back()); 55 fBlocks.back() = initialBlock; 111 void* back() { function in class:GrAllocator 119 const void* back() const { function in class:GrAllocator 213 T& back() { function in class:GrTAllocator 214 return *(T*)fAllocator.back(); 220 const T& back() const { function in class:GrTAllocator 221 return *(const T*)fAllocator.back();
|
GrBufferAllocPool.cpp | 58 GrGeometryBuffer* buffer = fBlocks.back().fBuffer; 81 GrGeometryBuffer* buffer = fBlocks.back().fBuffer; 108 BufferBlock& block = fBlocks.back(); 113 flushCpuData(fBlocks.back().fBuffer, flushSize); 124 if (fBlocks.back().fBuffer->isLocked()) { 125 GrGeometryBuffer* buf = fBlocks.back().fBuffer; 131 SkASSERT(fBlocks.empty() || !fBlocks.back().fBuffer->isLocked()); 163 BufferBlock& back = fBlocks.back(); local 164 size_t usedBytes = back.fBuffer->sizeInBytes() - back.fBytesFree 192 BufferBlock& back = fBlocks.back(); local 203 const BufferBlock& back = fBlocks.back(); local [all...] |
/frameworks/compile/mclinker/include/mcld/LD/ |
ELFSegment.h | 51 LDSection* back() { return m_SectionList.back(); } function in class:mcld::ELFSegment 52 const LDSection* back() const { return m_SectionList.back(); } function in class:mcld::ELFSegment
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
stl_queue.h | 84 * that supports @c front, @c back, @c push_back, and @c pop_front, 184 back() function in class:queue 187 return c.back(); 195 back() const function in class:queue 198 return c.back();
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
stl_queue.h | 84 * that supports @c front, @c back, @c push_back, and @c pop_front, 184 back() function in class:queue 187 return c.back(); 195 back() const function in class:queue 198 return c.back();
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/ |
stl_queue.h | 85 * that supports @c front, @c back, @c push_back, and @c pop_front, 185 back() function in class:queue 188 return c.back(); 196 back() const function in class:queue 199 return c.back();
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
bdist_msi.py | 25 then a list of buttons: back, next, cancel. Optionally a bitmap at the 43 def back(self, title, next, name = "Back", active = 1): member in class:PyDialog 44 """Add a back button with a given title, the tab-next button, 468 fatal.back("< Back", "Finish", active = 0) 469 fatal.cancel("Cancel", "Back", active = 0) 480 user_exit.back("< Back", "Finish", active = 0) 481 user_exit.cancel("Cancel", "Back", active = 0 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
bdist_msi.py | 25 then a list of buttons: back, next, cancel. Optionally a bitmap at the 43 def back(self, title, next, name = "Back", active = 1): member in class:PyDialog 44 """Add a back button with a given title, the tab-next button, 468 fatal.back("< Back", "Finish", active = 0) 469 fatal.cancel("Cancel", "Back", active = 0) 480 user_exit.back("< Back", "Finish", active = 0) 481 user_exit.cancel("Cancel", "Back", active = 0 [all...] |
/dalvik/dx/src/com/android/dx/ssa/back/ |
IdenticalBlockCombiner.java | 17 package com.android.dx.ssa.back;
|
LivenessAnalyzer.java | 17 package com.android.dx.ssa.back;
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
ClassLoaderTest.java | 41 Policy back = Policy.getPolicy(); local 54 Policy.setPolicy(back);
|
/external/chromium_org/courgette/ |
memory_allocator.h | 109 // The memory that this class manages holds a pointer back to the TempMapping 225 // max heap allocation threshold, we back the allocation with a temp file. 426 const T& back() const { function in class:courgette::NoThrowBuffer 430 T& back() { function in class:courgette::NoThrowBuffer
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/ |
xm_st.c | 230 enum st_attachment_type back, front; local 232 back = ST_ATTACHMENT_BACK_LEFT; 234 /* copy the contents if front is newly allocated and back is not */ 235 if ((statt_mask & (1 << back)) && 237 !(new_mask & (1 << back))) { 238 xmesa_st_framebuffer_copy_textures(stfbi, back, front, 329 struct pipe_resource **front, **back, *tmp; local 332 back = &xstfb->textures[ST_ATTACHMENT_BACK_LEFT]; 336 *front = *back; 337 *back = tmp [all...] |
/external/chromium_org/third_party/skia/include/core/ |
SkTArray.h | 243 * Pushes or pops from the back to resize. Pushes will be default 294 T& back() { SkASSERT(fCount); return fItemArray[fCount - 1];} function in class:SkTArray 296 const T& back() const { SkASSERT(fCount > 0); return fItemArray[fCount - 1];} function in class:SkTArray
|
/external/chromium_org/third_party/skia/src/core/ |
SkClipStack.cpp | 432 Element* element = (Element*)fDeque.back(); 451 Element* element = (Element*)fDeque.back(); 465 Element* element = (Element*)fDeque.back(); 530 // Use reverse iterator instead of back because Rect path may need previous 562 element = (Element*) fDeque.back(); 566 ((Element*) fDeque.back())->updateBoundAndGenID(element); 575 Element* element = (Element*)fDeque.back(); 598 element = (Element*) fDeque.back(); 602 ((Element*) fDeque.back())->updateBoundAndGenID(element); 607 Element* element = (Element*) fDeque.back(); 730 const Element* back = static_cast<const Element*>(fDeque.back()); local [all...] |
/external/chromium_org/third_party/skia/src/gpu/ |
GrBufferAllocPool.cpp | 58 GrGeometryBuffer* buffer = fBlocks.back().fBuffer; 81 GrGeometryBuffer* buffer = fBlocks.back().fBuffer; 108 BufferBlock& block = fBlocks.back(); 113 flushCpuData(fBlocks.back().fBuffer, flushSize); 124 if (fBlocks.back().fBuffer->isLocked()) { 125 GrGeometryBuffer* buf = fBlocks.back().fBuffer; 131 SkASSERT(fBlocks.empty() || !fBlocks.back().fBuffer->isLocked()); 163 BufferBlock& back = fBlocks.back(); local 164 size_t usedBytes = back.fBuffer->sizeInBytes() - back.fBytesFree 192 BufferBlock& back = fBlocks.back(); local 203 const BufferBlock& back = fBlocks.back(); local [all...] |
/external/clang/include/clang/AST/ |
ASTVector.h | 123 reference back() { function in class:clang::ASTVector 126 const_reference back() const { function in class:clang::ASTVector 136 T Result = back(); 225 new (this->end()) T(this->back());
|
/external/clang/include/clang/Analysis/Support/ |
BumpVector.h | 114 reference back() { function in class:clang::BumpVector 117 const_reference back() const { function in class:clang::BumpVector 127 T Result = back(); 236 // For now, leak 'Begin'. We can add it back to a freelist in
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/ |
IdenticalBlockCombiner.java | 17 package com.android.dx.ssa.back;
|
LivenessAnalyzer.java | 17 package com.android.dx.ssa.back;
|
/external/linux-tools-perf/util/ui/browsers/ |
annotate.c | 122 unsigned back; local 125 back = self->b.height / 2; 130 while (self->b.top_idx != 0 && back != 0) { 134 --back;
|
/external/mesa3d/src/gallium/state_trackers/glx/xlib/ |
xm_st.c | 230 enum st_attachment_type back, front; local 232 back = ST_ATTACHMENT_BACK_LEFT; 234 /* copy the contents if front is newly allocated and back is not */ 235 if ((statt_mask & (1 << back)) && 237 !(new_mask & (1 << back))) { 238 xmesa_st_framebuffer_copy_textures(stfbi, back, front, 329 struct pipe_resource **front, **back, *tmp; local 332 back = &xstfb->textures[ST_ATTACHMENT_BACK_LEFT]; 336 *front = *back; 337 *back = tmp [all...] |
/external/opencv/cv/src/ |
cvoptflowbm.cpp | 111 const float back = 1.f / (float) (1 << 16); local 537 float vx = (float)velx[j]*back, vy = (float)vely[j]*back;
|
/external/skia/include/core/ |
SkTArray.h | 243 * Pushes or pops from the back to resize. Pushes will be default 294 T& back() { SkASSERT(fCount); return fItemArray[fCount - 1];} function in class:SkTArray 296 const T& back() const { SkASSERT(fCount > 0); return fItemArray[fCount - 1];} function in class:SkTArray
|
/external/skia/src/core/ |
SkClipStack.cpp | 432 Element* element = (Element*)fDeque.back(); 451 Element* element = (Element*)fDeque.back(); 465 Element* element = (Element*)fDeque.back(); 530 // Use reverse iterator instead of back because Rect path may need previous 562 element = (Element*) fDeque.back(); 566 ((Element*) fDeque.back())->updateBoundAndGenID(element); 575 Element* element = (Element*)fDeque.back(); 598 element = (Element*) fDeque.back(); 602 ((Element*) fDeque.back())->updateBoundAndGenID(element); 607 Element* element = (Element*) fDeque.back(); 730 const Element* back = static_cast<const Element*>(fDeque.back()); local [all...] |