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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/state_trackers/xvmc/
xvmc_private.h 74 XvMCSurface *ref[2]; member in struct:__anon34087
  /external/mesa3d/src/mesa/math/
m_debug_norm.c 199 GLvector4f source[1], dest[1], dest2[1], ref[1], ref2[1]; local
266 ref->data = r;
267 ref->start = (GLfloat *) r;
268 ref->count = TEST_COUNT;
269 ref->stride = sizeof(float[4]);
270 ref->flags = 0;
279 ref_norm_transform_rescale( mat, scale, source, NULL, ref );
281 ref_norm_transform_normalize( mat, scale, source, NULL, ref );
m_debug_xform.c 171 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/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/metrics/
DerivedDoubleGaugeImpl.java 34 import java.lang.ref.WeakReference;
134 @javax.annotation.Nullable private final WeakReference<T> ref; field in class:DerivedDoubleGaugeImpl.PointWithFunction
142 ref = obj != null ? new WeakReference<T>(obj) : null;
147 final T obj = ref != null ? ref.get() : null;
DerivedLongGaugeImpl.java 34 import java.lang.ref.WeakReference;
132 @javax.annotation.Nullable private final WeakReference<T> ref; field in class:DerivedLongGaugeImpl.PointWithFunction
140 ref = obj != null ? new WeakReference<T>(obj) : null;
145 final T obj = ref != null ? ref.get() : null;
  /external/skia/gm/
hsl.cpp 177 SkPaint ref; local
178 ref.setColor(blend(bg.getColor(), fg.getColor(), test.reference));
179 canvas->drawCircle(50,50, 20, ref);
  /external/skia/src/core/
SkCachedData.h 28 void ref() const { this->internalRef(false); } function in class:SkCachedData
94 * ref's the data (typically from a find(key, visitor) call).
96 * Thus the data will always be "locked" when a non-cache has a ref on it (whether or not
  /external/skia/src/gpu/gl/
GrGLPathRendering.cpp 251 // Just the func, ref, and mask is set here. The op and write mask are params to the call
253 uint16_t ref = stencilSettings.front().fRef; local
258 ref != fHWPathStencilSettings.front().fRef ||
261 GL_CALL(PathStencilFunc(GrToGLStencilFunc(test), ref, testMask));
  /external/skia/src/gpu/vk/
GrVkResource.h 26 objects. When an existing owner wants to share a reference, it calls ref().
40 // Simple refCount tracing, to ensure that everything ref'ed is unref'ed.
110 void ref() const { function in class:GrVkResource
123 // A release here acts in place of all releases we "should" have been doing in ref().
136 // A release here acts in place of all releases we "should" have been doing in ref().
186 * Called when the ref count goes to 0. Will free Vk resources.
228 // When recycle is called and there is only one ref left on the resource, we will signal that
  /external/skia/src/pdf/
SkPDFTag.cpp 167 SkPDFIndirectReference ref = doc->reserveRef(); local
174 kids->appendRef(prepare_tag_tree_to_emit(ref, child, doc));
183 node->fRef = ref;
188 return doc->emit(dict, ref);
198 SkPDFIndirectReference ref = doc->reserveRef(); local
204 structTreeRoot.insertRef("K", prepare_tag_tree_to_emit(ref, fRoot, doc));
225 return doc->emit(structTreeRoot, ref);
  /external/skia/src/utils/mac/
SkCreateCGImageRef.cpp 149 CGImageRef ref = CGImageCreate(w, h, bitsPerComponent, local
158 return ref;
  /external/skia/tests/
ColorSpaceTest.cpp 38 const float* ref[3] = { red, green, blue }; local
40 REPORTER_ASSERT(r, almost_equal(ref[i][0], mat.vals[0][i]));
41 REPORTER_ASSERT(r, almost_equal(ref[i][1], mat.vals[1][i]));
42 REPORTER_ASSERT(r, almost_equal(ref[i][2], mat.vals[2][i]));
  /external/skqp/gm/
hsl.cpp 177 SkPaint ref; local
178 ref.setColor(blend(bg.getColor(), fg.getColor(), test.reference));
179 canvas->drawCircle(50,50, 20, ref);
  /external/skqp/src/core/
SkCachedData.h 28 void ref() const { this->internalRef(false); } function in class:SkCachedData
94 * ref's the data (typically from a find(key, visitor) call).
96 * Thus the data will always be "locked" when a non-cache has a ref on it (whether or not
  /external/skqp/src/gpu/gl/
GrGLPathRendering.cpp 251 // Just the func, ref, and mask is set here. The op and write mask are params to the call
253 uint16_t ref = stencilSettings.front().fRef; local
258 ref != fHWPathStencilSettings.front().fRef ||
261 GL_CALL(PathStencilFunc(GrToGLStencilFunc(test), ref, testMask));
  /external/skqp/src/gpu/vk/
GrVkResource.h 26 objects. When an existing owner wants to share a reference, it calls ref().
40 // Simple refCount tracing, to ensure that everything ref'ed is unref'ed.
110 void ref() const { function in class:GrVkResource
123 // A release here acts in place of all releases we "should" have been doing in ref().
136 // A release here acts in place of all releases we "should" have been doing in ref().
186 * Called when the ref count goes to 0. Will free Vk resources.
228 // When recycle is called and there is only one ref left on the resource, we will signal that
  /external/skqp/src/pdf/
SkPDFTag.cpp 167 SkPDFIndirectReference ref = doc->reserveRef(); local
174 kids->appendRef(prepare_tag_tree_to_emit(ref, child, doc));
183 node->fRef = ref;
188 return doc->emit(dict, ref);
198 SkPDFIndirectReference ref = doc->reserveRef(); local
204 structTreeRoot.insertRef("K", prepare_tag_tree_to_emit(ref, fRoot, doc));
225 return doc->emit(structTreeRoot, ref);
  /external/skqp/src/utils/mac/
SkCreateCGImageRef.cpp 149 CGImageRef ref = CGImageCreate(w, h, bitsPerComponent, local
158 return ref;
  /external/skqp/tests/
ColorSpaceTest.cpp 38 const float* ref[3] = { red, green, blue }; local
40 REPORTER_ASSERT(r, almost_equal(ref[i][0], mat.vals[0][i]));
41 REPORTER_ASSERT(r, almost_equal(ref[i][1], mat.vals[1][i]));
42 REPORTER_ASSERT(r, almost_equal(ref[i][2], mat.vals[2][i]));
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
BasicMarker.java 124 Marker ref = (Marker) referenceList.get(i); local
125 if (ref.contains(other)) {
147 Marker ref = (Marker) referenceList.get(i); local
148 if (ref.contains(name)) {
  /external/v8/src/
external-reference-table.cc 117 ExternalReference ref = ExternalReference::Create(runtime_functions[i].id); local
118 Add(ref.address(), runtime_functions[i].name, index);
  /external/webrtc/webrtc/p2p/base/
transportcontroller.h 138 int ref() const { return ref_; } function in struct:cricket::TransportController::RefCountedChannel
  /external/emma/core/java12/com/vladium/util/
SoftValueMap.java 11 import java.lang.ref.Reference;
12 import java.lang.ref.ReferenceQueue;
13 import java.lang.ref.SoftReference;
179 final Reference ref = entry.m_softValue; local
180 result = ref.get (); // may return null to the caller
185 ref.enqueue ();
195 final Reference ref = entry.m_softValue; local
196 result = ref.get (); // may return null to the caller
201 ref.enqueue ();
266 final IndexedSoftReference ref = currentKeyEntry.m_softValue local
322 final IndexedSoftReference ref = entry.m_softValue; local
490 IndexedSoftReference ref = entry.m_softValue; \/\/ get the soft value reference local
    [all...]
  /external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
PacketStream.java 191 writeClassRef(refType.ref());
192 writeMethodRef(((MethodImpl)location.method()).ref());
228 writeObjectRef(((ObjectReferenceImpl)val).ref());
435 long ref = readObjectRef(); local
436 return vm.stringMirror(ref);
440 long ref = readObjectRef(); local
441 return vm.arrayMirror(ref);
445 long ref = readObjectRef(); local
446 return vm.threadMirror(ref);
450 long ref = readObjectRef() local
455 long ref = readObjectRef(); local
460 long ref = readObjectRef(); local
466 long ref = readObjectRef(); local
    [all...]
  /art/compiler/utils/
intrusive_forward_list_test.cc 169 std::forward_list<int> ref({ 1, 2, 7 });
170 std::vector<ValueType> storage(ref.begin(), ref.end());
172 ASSERT_LISTS_EQUAL(ref, ifl);
206 std::forward_list<int> ref; local
208 ASSERT_LISTS_EQUAL(ref, ifl);
209 ref.push_front(3);
211 ASSERT_LISTS_EQUAL(ref, ifl);
213 ref.push_front(7);
215 ASSERT_LISTS_EQUAL(ref, ifl)
239 std::forward_list<int> ref; local
    [all...]

Completed in 980 milliseconds

1 2 3 4 5 6 7 8 91011>>