Home
last modified time | relevance | path

Searched refs:ref (Results 1 – 6 of 6) sorted by relevance

/system/netd/
DMDnsSdListener.cpp70 DNSServiceRef *ref = mMonitor->allocateServiceRef(requestId, context); in discover() local
71 if (ref == NULL) { in discover()
77 if (VDBG) ALOGD("using ref %p", ref); in discover()
81 DNSServiceErrorType result = DNSServiceBrowse(ref, nativeFlags, interfaceInt, regType, in discover()
139 DNSServiceRef *ref = mMonitor->lookupServiceRef(requestId); in stop() local
140 if (ref == NULL) { in stop()
145 if (VDBG) ALOGD("Stopping %s with ref %p", str, ref); in stop()
146 DNSServiceRefDeallocate(*ref); in stop()
162 DNSServiceRef *ref = mMonitor->allocateServiceRef(requestId, context); in serviceRegister() local
164 if (ref == NULL) { in serviceRegister()
[all …]
/system/core/libpixelflinger/codeflinger/
DGGLAssembler.cpp702 int ref = scratches.obtain(); in build_alpha_test() local
704 CONTEXT_LOAD(ref, state.alpha_test.ref); in build_alpha_test()
705 if (shift) CMP(AL, fragment.reg, reg_imm(ref, LSR, shift)); in build_alpha_test()
706 else CMP(AL, fragment.reg, ref); in build_alpha_test()
/system/core/include/pixelflinger/
Dpixelflinger.h286 void (*alphaFuncx)(void* c, GGLenum func, GGLclampx ref);
/system/core/libpixelflinger/
Dpixelflinger.cpp549 static void ggl_alphaFuncx(void* con, GGLenum func, GGLclampx ref) in ggl_alphaFuncx() argument
556 c->state.alpha_test.ref = gglFixedToIteratedColor(gglClampx(ref)); in ggl_alphaFuncx()
Dscanline.cpp841 GGLcolor ref = c->state.alpha_test.ref; in scanline() local
846 case GGL_LESS: if (alpha<ref) break; goto discard; in scanline()
847 case GGL_EQUAL: if (alpha==ref) break; goto discard; in scanline()
848 case GGL_LEQUAL: if (alpha<=ref) break; goto discard; in scanline()
849 case GGL_GREATER: if (alpha>ref) break; goto discard; in scanline()
850 case GGL_NOTEQUAL: if (alpha!=ref) break; goto discard; in scanline()
851 case GGL_GEQUAL: if (alpha>=ref) break; goto discard; in scanline()
/system/core/include/private/pixelflinger/
Dggl_context.h317 GGLcolor ref;