HomeSort by relevance Sort by last modified time
    Searched refs:ref (Results 226 - 250 of 3257) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/vpx_dsp/arm/
sad_neon.c 140 const uint8_t *ref, int ref_stride) {
149 const uint8x16_t vec_ref_00 = vld1q_u8(ref);
150 const uint8x16_t vec_ref_16 = vld1q_u8(ref + 16);
151 const uint8x16_t vec_ref_32 = vld1q_u8(ref + 32);
152 const uint8x16_t vec_ref_48 = vld1q_u8(ref + 48);
154 ref += ref_stride;
176 const uint8_t *ref, int ref_stride) {
184 const uint8x16_t vec_ref_00 = vld1q_u8(ref);
185 const uint8x16_t vec_ref_16 = vld1q_u8(ref + 16);
187 ref += ref_stride
    [all...]
  /external/opencv3/samples/winrt/FaceDetection/FaceDetection/
App.xaml.cpp 34 Suspending += ref new SuspendingEventHandler(this, &App::OnSuspending);
62 rootFrame = ref new Frame();
67 rootFrame->NavigationFailed += ref new Windows::UI::Xaml::Navigation::NavigationFailedEventHandler(this, &App::OnNavigationFailed);
124 throw ref new FailureException("Failed to load Page " + e->SourcePageType.Name);
MainPage.xaml.h 18 public ref class MainPage sealed
  /external/opencv3/samples/winrt_universal/PhoneTutorial/
MainPage.xaml.h 15 public ref class MainPage sealed
  /external/valgrind/none/tests/ppc32/
test_dfp3.stdout.exp     [all...]
  /frameworks/base/core/tests/coretests/src/android/content/res/
ResourceCacheActivity.java 23 import java.lang.ref.WeakReference;
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
TintContextWrapper.java 27 import java.lang.ref.WeakReference;
44 final WeakReference<TintContextWrapper> ref = sCache.get(i); local
45 final TintContextWrapper wrapper = ref != null ? ref.get() : null;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_encodemv.h 25 void vp9_encode_mv(VP9_COMP *cpi, vp9_writer* w, const MV* mv, const MV* ref,
  /libcore/ojluni/src/main/java/java/lang/ref/
SoftReference.java 26 package java.lang.ref;
  /libcore/ojluni/src/main/java/sun/security/jca/
JCAUtil.java 28 import java.lang.ref.*;
  /packages/apps/DeskClock/src/com/android/deskclock/widget/toast/
SnackbarManager.java 21 import java.lang.ref.WeakReference;
  /external/deqp/modules/egl/
teglImageUtil.cpp 232 MovePtr<ClientBuffer> TextureImageSource::createBuffer (const glw::Functions& gl, Texture2D* ref) const
247 if (ref != DE_NULL)
251 *ref = Texture2D(glu::mapGLTransferFormat(m_format, m_type), IMAGE_WIDTH, IMAGE_HEIGHT);
252 ref->allocLevel(0);
253 tcu::fillWithComponentGradients(ref->getLevel(0),
263 0, m_format, m_type, ref->getLevel(0).getDataPtr()));
345 void initializeStencilRbo(const glw::Functions& gl, GLuint rbo, Texture2D& ref)
361 const deUint32 numStencilBits = tcu::getTextureFormatBitDepth(tcu::getEffectiveDepthStencilTextureFormat(ref.getLevel(0).getFormat(), tcu::Sampler::MODE_STENCIL)).x();
368 tcu::clearStencil(ref.getLevel(0), 0);
375 const tcu::IVec2 size = tcu::IVec2((int)((float)(DE_LENGTH_OF_ARRAY(stencilValues) - ndx) * ((float)ref.getWidth() / float(DE_LENGTH_OF_ARRAY(stencilValues))))
    [all...]
  /art/tools/ahat/test-dump/
Main.java 19 import java.lang.ref.PhantomReference;
20 import java.lang.ref.ReferenceQueue;
21 import java.lang.ref.WeakReference;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
InitTest.java 35 float[] ref = new float[INPUTSIZE]; local
41 ref[i] = 2.0f;
52 checkArray(ref, out, INPUTSIZE, 1, 1, 0);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CodeItem.java 52 private final CstMethodRef ref; field in class:CodeItem
78 * @param ref {@code non-null;} method that this code implements
85 public CodeItem(CstMethodRef ref, DalvCode code, boolean isStatic,
89 if (ref == null) {
90 throw new NullPointerException("ref == null");
101 this.ref = ref;
121 debugInfo = new DebugInfoItem(code, isStatic, ref);
146 return ref.toHuman();
155 return ref;
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
CodeItem.java 43 private final CstMethodRef ref; field in class:CodeItem
69 * @param ref {@code non-null;} method that this code implements
76 public CodeItem(CstMethodRef ref, DalvCode code, boolean isStatic,
80 if (ref == null) {
81 throw new NullPointerException("ref == null");
92 this.ref = ref;
112 debugInfo = new DebugInfoItem(code, isStatic, ref);
137 return ref.toHuman();
146 return ref;
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CertPathValidatorExceptionTest.java 63 CertPathValidatorException ref = (CertPathValidatorException) oref; local
65 CertPath cp = ref.getCertPath();
66 int ind = ref.getIndex();
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyManager.java 50 * @param ref The key value we're looking for
58 XPathContext xctxt, int doc, QName name, XMLString ref, PrefixResolver nscontext)
84 nl = kt.getNodeSetDTMByKey(name, ref);
108 nl = kt.getNodeSetDTMByKey(name, ref);
  /external/clang/test/CodeGenCXX/
constructors.cpp 21 A::A(struct Undeclared &ref) : mem(0) {}
24 // CHECK-LABEL: define void @_ZN1AC2ER10Undeclared(%struct.A* %this, %struct.Undeclared* nonnull %ref) unnamed_addr
27 // CHECK-LABEL: define void @_ZN1AC1ER10Undeclared(%struct.A* %this, %struct.Undeclared* nonnull %ref) unnamed_addr
44 B::B(struct Undeclared &ref) : A(ref), mem(1) {}
46 // CHECK-LABEL: define void @_ZN1BC2ER10Undeclared(%struct.B* %this, %struct.Undeclared* nonnull %ref) unnamed_addr
50 // CHECK-LABEL: define void @_ZN1BC1ER10Undeclared(%struct.B* %this, %struct.Undeclared* nonnull %ref) unnamed_addr
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CodeItem.java 52 private final CstMethodRef ref; field in class:CodeItem
78 * @param ref {@code non-null;} method that this code implements
85 public CodeItem(CstMethodRef ref, DalvCode code, boolean isStatic,
89 if (ref == null) {
90 throw new NullPointerException("ref == null");
101 this.ref = ref;
121 debugInfo = new DebugInfoItem(code, isStatic, ref);
146 return ref.toHuman();
155 return ref;
    [all...]
  /external/guice/core/test/com/google/inject/
BindingOrderTest.java 61 final AtomicReference<B> ref = new AtomicReference<B>(); local
69 ref.set(a.b);
91 assertNotNull(ref.get());
  /external/libcxx/test/std/containers/sequences/list/list.ops/
remove_if.pass.cpp 40 c.remove_if(std::ref(cp));
49 c.remove_if(std::ref(cp));
59 c.remove_if(std::ref(cp));
  /external/libvpx/libvpx/vpx_dsp/x86/
halfpix_variance_sse2.c 15 void vpx_half_horiz_vert_variance16x_h_sse2(const unsigned char *ref,
22 void vpx_half_horiz_variance16x_h_sse2(const unsigned char *ref, int ref_stride,
26 void vpx_half_vert_variance16x_h_sse2(const unsigned char *ref, int ref_stride,
  /external/opencv3/samples/winrt/ImageManipulations/
App.xaml.cpp 48 this->Suspending += ref new SuspendingEventHandler(this, &SDKSample::App::OnSuspending);
71 auto rootFrame = ref new Frame();
90 throw ref new FailureException("Failed to create initial page");
  /frameworks/base/core/java/android/security/net/config/
NetworkSecurityConfig.java 59 // multiple entry refs by returning the certificate from the first entry ref.
83 for (CertificatesEntryRef ref : mCertificatesEntryRefs) {
84 Set<TrustAnchor> anchors = ref.getTrustAnchors();
122 for (CertificatesEntryRef ref : mCertificatesEntryRefs) {
123 TrustAnchor anchor = ref.findBySubjectAndPublicKey(cert);
133 for (CertificatesEntryRef ref : mCertificatesEntryRefs) {
134 TrustAnchor anchor = ref.findByIssuerAndSignature(cert);
145 for (CertificatesEntryRef ref : mCertificatesEntryRefs) {
146 certs.addAll(ref.findAllCertificatesByIssuerAndSignature(cert));
154 for (CertificatesEntryRef ref : mCertificatesEntryRefs)
    [all...]

Completed in 730 milliseconds

1 2 3 4 5 6 7 8 91011>>