Searched defs:ref (Results 126 - 150 of 556) sorted by relevance

1234567891011>>

/external/lzma/CPP/7zip/Archive/7z/
H A D7zExtract.cpp84 // const CRef &ref = ref2.Refs[ri];
85 const CRef &ref = _refs[ref2Index]; local
87 int volumeIndex = ref.VolumeIndex;
90 UInt32 fileIndex = ref.ItemIndex;
/external/lzma/CPP/7zip/Common/
H A DStreamObjects.cpp59 CMyComPtr<IUnknown> ref = referenceBuf; local
/external/mesa3d/src/gallium/auxiliary/postprocess/
H A Dpp_mlaa.c87 const struct pipe_stencil_ref ref = { {1} }; local
89 cso_set_stencil_ref(p->cso, &ref);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_scene.c217 /* Decrement texture ref counts
220 struct resource_ref *ref; local
223 for (ref = scene->resources; ref; ref = ref->next) {
224 for (i = 0; i < ref->count; i++) {
228 (void *) ref->resource[i],
229 ref->resource[i]->width0,
230 ref
345 struct resource_ref *ref, **last = &scene->resources; local
403 const struct resource_ref *ref; local
[all...]
H A Dlp_test_main.c254 compare_vec_with_eps(struct lp_type type, const void *res, const void *ref, double eps) argument
260 double ref_elem = read_elem(type, ref, i);
276 compare_vec(struct lp_type type, const void *res, const void *ref) argument
279 return compare_vec_with_eps(type, res, ref, eps);
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_winsys.h30 struct nouveau_bufref *ref = local
32 ref->priv = res;
33 ref->priv_data = flags;
45 struct nouveau_pushbuf_refn ref = { bo, flags }; local
46 nouveau_pushbuf_refn(push, &ref, 1);
/external/mesa3d/src/gallium/state_trackers/xvmc/
H A Dxvmc_private.h74 XvMCSurface *ref[2]; member in struct:__anon13978
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_wm_pass0.c70 struct brw_wm_ref *ref = &c->undef_ref; local
71 ref->value = &c->undef_value;
72 ref->hw_reg = brw_vec8_grf(0, 0);
73 ref->insn = 0;
74 ref->prevuse = NULL;
84 struct brw_wm_ref *ref = get_ref(c); local
85 ref->value = value;
86 ref->hw_reg = brw_vec8_grf(0, 0);
87 ref->insn = 0;
88 ref
113 struct brw_wm_ref *ref = get_ref(c); local
171 const struct brw_wm_ref *ref = c->pass0_fp_reg[file][idx][component]; local
288 const struct brw_wm_ref *ref = get_fp_src_reg_ref(c, src, i); local
[all...]
/external/mesa3d/src/mesa/math/
H A Dm_debug_xform.c171 GLvector4f source[1], dest[1], ref[1]; local
236 ref->data = (GLfloat(*)[4])r;
237 ref->start = (GLfloat *)r;
238 ref->count = TEST_COUNT;
239 ref->stride = sizeof(float[4]);
240 ref->size = 0;
241 ref->flags = 0;
243 ref_transform( ref, mat, source );
/external/opencv3/3rdparty/libwebp/dsp/
H A Denc_neon.c29 // for subtraction to *ref. See the comments there for algorithmic explanations.
30 static void ITransformOne(const uint8_t* ref, argument
107 "vld1.32 d6[0], [%[ref]], %[kBPS] \n"
108 "vld1.32 d6[1], [%[ref]], %[kBPS] \n"
109 "vld1.32 d7[0], [%[ref]], %[kBPS] \n"
110 "vld1.32 d7[1], [%[ref]], %[kBPS] \n"
112 "sub %[ref], %[ref], %[kBPS], lsl #2 \n"
139 : [kBPS] "r"(kBPS), [kC1C2] "r"(kC1C2), [ref] "r"(ref) // constant
144 ITransform(const uint8_t* ref, const int16_t* in, uint8_t* dst, int do_two) argument
233 FTransform(const uint8_t* src, const uint8_t* ref, int16_t* out) argument
[all...]
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
H A Dtexture.hpp63 static TexRef ref; member in struct:__anon15412::CvCudevTextureRef
70 ref.normalized = normalizedCoords;
71 ref.filterMode = filterMode;
72 ref.addressMode[0] = addressMode;
73 ref.addressMode[1] = addressMode;
74 ref.addressMode[2] = addressMode;
78 CV_CUDEV_SAFE_CALL( cudaBindTexture2D(0, &ref, mat.data, &desc, mat.cols, mat.rows, mat.step) );
83 cudaUnbindTexture(ref);
88 typename CvCudevTextureRef<T>::TexRef CvCudevTextureRef<T>::ref; member in class:__anon15412::CvCudevTextureRef
111 return tex2D(CvCudevTextureRef<T>::ref,
[all...]
/external/skia/include/core/
H A DSkRefCnt.h18 objects. When an existing owner wants to share a reference, it calls ref().
60 void ref() const { function in class:SkRefCntBase
79 // A release here acts in place of all releases we "should" have been doing in ref().
109 * Called when the ref count goes to 0.
136 null in on each side of the assignment, and ensuring that ref() is called
141 if (src) src->ref(); \
147 /** Call obj->ref() and return obj. The obj must not be nullptr.
151 obj->ref();
155 /** Check if the argument is non-null, and if so, call obj->ref() and return obj.
159 obj->ref();
217 void ref() const { (void)sk_atomic_fetch_add(&fRefCnt, +1, sk_memory_order_relaxed); } function in class:SkNVRefCnt
[all...]
/external/skia/src/animator/
H A DSkScriptCallBack.h28 virtual SkOperand2::OpType getReturnType(size_t ref, SkOperand2*) { argument
42 virtual bool invoke(size_t ref, SkOpArray* params, SkOperand2* value) = 0;
47 bool getMemberReference(const char* , size_t len, void* object, SkScriptValue2* ref);
49 virtual bool invoke(size_t ref, void* object, SkOperand2* value) = 0;
54 bool getMemberReference(const char* , size_t len, void* object, SkScriptValue2* ref);
57 virtual bool invoke(size_t ref, void* object, SkOpArray* params, SkOperand2* value) = 0;
63 virtual bool getResult(size_t ref, SkOperand2* answer) { return false; } argument
/external/skia/src/core/
H A DSkCachedData.h27 void ref() const { this->internalRef(false); } function in class:SkCachedData
93 * ref's the data (typically from a find(key, visitor) call).
95 * Thus the data will always be "locked" when a non-cache has a ref on it (whether or not
/external/skia/tests/
H A DFontHostStreamTest.cpp31 /** Assumes that the ref draw was completely inside ref canvas --
34 ref is "bgColor".
36 static bool compare(const SkBitmap& ref, const SkIRect& iref, argument
42 SkAutoLockPixels alpRef(ref);
51 if (refX >= 0 && refX < ref.width() &&
52 refY >= 0 && refY < ref.height())
54 refColor = ref.getColor(refX, refY);
/external/webp/src/enc/
H A Dpicture_psnr.c29 const uint8_t* ref, int ref_stride,
40 const double value = (double)ref[y * ref_stride + x];
72 int WebPPictureDistortion(const WebPPicture* src, const WebPPicture* ref, argument
79 if (src == NULL || ref == NULL ||
80 src->width != ref->width || src->height != ref->height ||
81 src->use_argb != ref->use_argb || result == NULL) {
88 if (src->argb == NULL || ref->argb == NULL) {
102 tmp2[j * w + i] = ref->argb[i + j * ref
28 AccumulateLSIM(const uint8_t* src, int src_stride, const uint8_t* ref, int ref_stride, int w, int h, DistoStats* stats) argument
[all...]
/external/webrtc/webrtc/p2p/base/
H A Dtransportcontroller.h138 int ref() const { return ref_; } function in struct:cricket::TransportController::RefCountedChannel
/external/webrtc/webrtc/test/testsupport/metrics/
H A Dvideo_metrics.cc37 const VideoFrame* ref,
45 frame_result.value = I420PSNR(ref, test);
48 frame_result.value = I420SSIM(ref, test);
36 CalculateFrame(VideoMetricsType video_metrics_type, const VideoFrame* ref, const VideoFrame* test, int frame_number, QualityMetricsResult* result) argument
/external/webrtc/webrtc/voice_engine/
H A Dvoice_engine_impl.cc124 int ref = s->Release(); local
127 if (ref != 0) {
132 ref);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBaseTraversers.java21 package org.apache.xml.dtm.ref;
H A DDTMManagerDefault.java21 package org.apache.xml.dtm.ref;
36 import org.apache.xml.dtm.ref.dom2dtm.DOM2DTM;
37 import org.apache.xml.dtm.ref.sax2dtm.SAX2DTM;
38 import org.apache.xml.dtm.ref.sax2dtm.SAX2RTFDTM;
349 Class.forName("org.apache.xml.dtm.ref.IncrementalSAXSource_Xerces").newInstance();
496 if (node instanceof org.apache.xml.dtm.ref.DTMNodeProxy)
497 return ((org.apache.xml.dtm.ref.DTMNodeProxy) node).getDTMNodeNumber();
564 if(node instanceof org.apache.xml.dtm.ref.dom2dtm.DOM2DTMdefaultNamespaceDeclarationNode)
H A DExpandedNameTable.java21 package org.apache.xml.dtm.ref;
/external/avahi/avahi-common/
H A Ddbus-watch-glue.c65 int ref; member in struct:__anon339
70 assert(d->ref >= 1);
72 d->ref++;
78 assert(d->ref >= 1);
80 if (--d->ref <= 0) {
200 int ref; member in struct:TimeoutData
205 assert(t->ref >= 1);
207 t->ref++;
213 assert(t->ref >= 1);
215 if (--t->ref <
[all...]
/external/avahi/avahi-core/
H A Dbrowse.c44 unsigned ref; member in struct:AvahiSRBLookup
102 l->ref = 1;
123 assert(l->ref >= 1);
125 if (--l->ref >= 1)
152 assert(l->ref >= 1);
154 l->ref++;
208 assert(l->ref >= 1);
387 if (!l->record_browser->dead && l->ref > 1) {
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
H A Dtest_db.py40 ref = ReferenceProperty(reference_class=TestBasic, collection_name='refs') variable in class:TestReference
125 tt.ref = t
130 assert tt.ref.id == t.id

Completed in 1145 milliseconds

1234567891011>>