Searched refs:ref (Results 1 – 6 of 6) sorted by relevance
/system/netd/ |
D | MDnsSdListener.cpp | 70 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/ |
D | GGLAssembler.cpp | 702 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/ |
D | pixelflinger.h | 286 void (*alphaFuncx)(void* c, GGLenum func, GGLclampx ref);
|
/system/core/libpixelflinger/ |
D | pixelflinger.cpp | 549 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()
|
D | scanline.cpp | 841 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/ |
D | ggl_context.h | 317 GGLcolor ref;
|