/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_wm_debug.c | 62 struct brw_wm_ref *ref ) 64 struct brw_reg hw_reg = ref->hw_reg; 66 if (ref->unspill_reg) 67 printf("UNSPILL(%x)/", ref->value->spill_slot); 70 brw_print_reg(ref->hw_reg); 74 brw_wm_print_value(c, ref->value);
|
/external/mesa3d/src/mesa/main/ |
stencil.c | 126 * \param ref front and back reference value. 136 _mesa_StencilFuncSeparateATI( GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask ) 156 ref = CLAMP( ref, 0, stencilMax ); 163 ctx->Stencil.Ref[0] == ref && 164 ctx->Stencil.Ref[1] == ref) 169 ctx->Stencil.Ref[0] = ctx->Stencil.Ref[1] = ref [all...] |
/external/skia/src/gpu/gl/debug/ |
GrDebugGL.cpp | 50 fTextureUnits[i]->ref(); 107 fArrayBuffer->ref(); 135 fElementArrayBuffer->ref(); 159 fFrameBuffer->ref(); 179 fRenderBuffer->ref(); 199 fProgram->ref();
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_reconstruct.c | 297 image (ref) is read at correct position and the predicted part 303 u8 *ref, 326 ASSERT(ref); 331 h264bsdFillBlock(ref, block, x0, y0, width, height, 333 ref += width * height; 334 h264bsdFillBlock(ref, block + (chromaPartWidth+1)*(chromaPartHeight+1), 338 ref = block; 351 ptrA = ref + (comp * height + (u32)y0) * width + x0; 430 u8 *ref; local 450 ref = refPic->data + 256 * refPic->width * refPic->height 1985 u8 *partData, *ref; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ExtractIncludeWizard.java | 34 public ExtractIncludeWizard(ExtractIncludeRefactoring ref, LayoutEditorDelegate editor) { 35 super(ref, editor); 36 setDefaultPageTitle(ref.getName()); 41 ExtractIncludeRefactoring ref = (ExtractIncludeRefactoring) getRefactoring(); local 42 String initialName = ref.getInitialName(); 43 IFile sourceFile = ref.getSourceFile();
|
/art/runtime/base/ |
debug_stack.h | 66 explicit DebugStackIndirectTopRefImpl(DebugStackReferenceImpl<false>* ref ATTRIBUTE_UNUSED) {} 112 explicit DebugStackIndirectTopRefImpl(DebugStackReferenceImpl<kIsDebug>* ref) 113 : ref_(ref) {
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
FieldIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstFieldRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 FieldIdItem item = fieldIds.get(ref);
|
MethodIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstBaseMethodRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 MethodIdItem item = methodIds.get(ref);
|
/dalvik/dx/src/com/android/dx/dex/file/ |
FieldIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstFieldRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 FieldIdItem item = fieldIds.get(ref);
|
MethodIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstBaseMethodRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 MethodIdItem item = methodIds.get(ref);
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
FieldIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstFieldRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 FieldIdItem item = fieldIds.get(ref);
|
MethodIdsSection.java | 119 * @param ref {@code non-null;} the reference to look up 122 public int indexOf(CstBaseMethodRef ref) { 123 if (ref == null) { 124 throw new NullPointerException("ref == null"); 129 MethodIdItem item = methodIds.get(ref);
|
/external/llvm/lib/IR/ |
Use.cpp | 43 const UserRef *ref = reinterpret_cast<const UserRef *>(End); local 44 return ref->getInt() ? ref->getPointer()
|
/external/opencv3/samples/winrt/ImageManipulations/common/ |
LayoutAwarePage.cpp | 40 DefaultViewModel = ref new Map<String^, Object^>(std::less<String^>()); 45 Loaded += ref new RoutedEventHandler(this, &LayoutAwarePage::OnLoaded); 48 Unloaded += ref new RoutedEventHandler(this, &LayoutAwarePage::OnUnloaded); 96 ref new TypedEventHandler<CoreDispatcher^, AcceleratorKeyEventArgs^>(this, 99 ref new TypedEventHandler<CoreWindow^, PointerEventArgs^>(this, 211 GoBack(this, ref new RoutedEventArgs()); 218 GoForward(this, ref new RoutedEventArgs()); 244 if (backPressed) GoBack(this, ref new RoutedEventArgs()); 245 if (forwardPressed) GoForward(this, ref new RoutedEventArgs()); 276 _layoutAwareControls = ref new Vector<Control^>() [all...] |
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
ProviderExecutor.java | 23 import java.lang.ref.WeakReference; 58 for (WeakReference<Preemptable> ref : mPreemptable) { 59 final Preemptable p = ref.get();
|
/frameworks/base/tools/aapt2/link/ |
ReferenceLinker_test.cpp | 50 Reference* ref = test::getValue<Reference>(table.get(), u"@com.app.test:string/foo"); local 51 ASSERT_NE(ref, nullptr); 52 AAPT_ASSERT_TRUE(ref->id); 53 EXPECT_EQ(ref->id.value(), ResourceId(0x7f020001)); 55 ref = test::getValue<Reference>(table.get(), u"@com.app.test:string/bar"); 56 ASSERT_NE(ref, nullptr); 57 AAPT_ASSERT_TRUE(ref->id); 58 EXPECT_EQ(ref->id.value(), ResourceId(0x7f020002)); 60 ref = test::getValue<Reference>(table.get(), u"@com.app.test:string/baz"); 61 ASSERT_NE(ref, nullptr) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/ |
Activator.java | 59 ServiceReference ref = context.getServiceReference(clazz.getName()); local 60 return (ref != null) ? (T) context.getService(ref) : null;
|
/external/deqp/framework/common/ |
tcuTexture.hpp | 356 float sample1DCompare (const Sampler& sampler, Sampler::FilterMode filter, float ref, float s, const IVec2& offset) const; 357 float sample2DCompare (const Sampler& sampler, Sampler::FilterMode filter, float ref, float s, float t, const IVec3& offset) const; 443 float sampleLevelArray1DCompare (const ConstPixelBufferAccess* levels, int numLevels, const Sampler& sampler, float ref, float s, float lod, const IVec2& offset); 444 float sampleLevelArray2DCompare (const ConstPixelBufferAccess* levels, int numLevels, const Sampler& sampler, float ref, float s, float t, float lod, const IVec3& offset); 447 Vec4 gatherArray2DOffsetsCompare (const ConstPixelBufferAccess& src, const Sampler& sampler, float ref, float s, float t, int depth, const IVec2 (&offsets)[4]); 498 float sampleCompare (const Sampler& sampler, float ref, float s, float lod) const; 499 float sampleCompareOffset (const Sampler& sampler, float ref, float s, float lod, deInt32 offset) const; 523 inline float Texture1DView::sampleCompare (const Sampler& sampler, float ref, float s, float lod) const 525 return sampleLevelArray1DCompare(m_levels, m_numLevels, sampler, ref, s, lod, IVec2(0, 0)); 528 inline float Texture1DView::sampleCompareOffset (const Sampler& sampler, float ref, float s, float lod, deInt32 offset) cons [all...] |
/art/compiler/dex/ |
quick_compiler_callbacks.h | 43 void ClassRejected(ClassReference ref) OVERRIDE;
|
/external/antlr/antlr-3.4/runtime/Perl5/t/lib/My/Test/ |
Class.pm | 24 (my $class = ref $test) =~ s/^Test:://xms;
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
NodeLocator.java | 22 package org.apache.xml.dtm.ref;
|
/external/clang/test/CodeGenCXX/ |
debug-info-static-member.cpp | 100 int ref() { function
|
/external/eigen/test/ |
product_trsolve.cpp | 13 (XB).setRandom(); ref = (XB); \ 15 VERIFY_IS_APPROX((TRI).toDenseMatrix() * (XB), ref); \ 16 (XB).setRandom(); ref = (XB); \ 18 VERIFY_IS_APPROX((TRI).toDenseMatrix() * (XB), ref); \ 22 (XB).setRandom(); ref = (XB); \ 24 VERIFY_IS_APPROX((XB).transpose() * (TRI).transpose().toDenseMatrix(), ref.transpose()); \ 25 (XB).setRandom(); ref = (XB); \ 27 VERIFY_IS_APPROX((XB).transpose() * (TRI).transpose().toDenseMatrix(), ref.transpose()); \ 41 Matrix<Scalar,Dynamic,Dynamic,colmajor> ref(size,cols);
|
/external/eigen/unsupported/test/ |
splines.cpp | 219 PointType ref = points.col(i); local 220 VERIFY( (pt - ref).matrix().norm() < 1e-14 ); 231 PointType ref = points.col(i); local 232 VERIFY( (pt - ref).matrix().norm() < 1e-14 );
|
/external/guava/guava/src/com/google/common/base/internal/ |
Finalizer.java | 19 import java.lang.ref.PhantomReference; 20 import java.lang.ref.Reference; 21 import java.lang.ref.ReferenceQueue; 22 import java.lang.ref.WeakReference;
|