Searched defs:sc (Results 26 - 35 of 35) sorted by relevance

12

/frameworks/rs/cpu_ref/
H A DrsCpuCore.cpp403 const RsScriptCall *sc, MTLaunchStruct *mtls) {
474 RsdCpuScriptImpl * RsdCpuReferenceImpl::setTLS(RsdCpuScriptImpl *sc) { argument
475 //ALOGE("setTls %p", sc);
479 tls->mImpl = sc;
481 if (sc) {
482 tls->mScript = sc->getScript();
402 launchThreads(const Allocation * ain, Allocation * aout, const RsScriptCall *sc, MTLaunchStruct *mtls) argument
H A DrsCpuScript.cpp745 const RsScriptCall *sc,
775 if (!sc || (sc->xEnd == 0)) {
778 rsAssert(sc->xStart < mtls->fep.dimX);
779 rsAssert(sc->xEnd <= mtls->fep.dimX);
780 rsAssert(sc->xStart < sc->xEnd);
781 mtls->xStart = rsMin(mtls->fep.dimX, sc->xStart);
782 mtls->xEnd = rsMin(mtls->fep.dimX, sc->xEnd);
786 if (!sc || (s
743 forEachMtlsSetup(const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc, MTLaunchStruct *mtls) argument
843 invokeForEach(uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc) argument
1120 preLaunch(uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc) argument
1126 postLaunch(uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc) argument
[all...]
/frameworks/base/core/java/android/view/
H A DVolumePanel.java413 StreamControl sc = new StreamControl();
414 sc.streamType = streamType;
415 sc.group = (ViewGroup) inflater.inflate(R.layout.volume_adjust_item, null);
416 sc.group.setTag(sc);
417 sc.icon = (ImageView) sc.group.findViewById(R.id.stream_icon);
418 sc.icon.setTag(sc);
419 sc
466 updateSlider(StreamControl sc) argument
[all...]
/frameworks/native/opengl/libagl/
H A Dprimitives.cpp773 int sc = lerp.iteratorsScale(itw, w0, w1, w2); local
774 sc += wscale - 16;
818 itt[6] = sc - lerp.iteratorsScale(itt+0, s0, s1, s2);
819 itt[7] = sc - lerp.iteratorsScale(itt+3, t0, t1, t2);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmMmiCode.java283 scToCallForwardReason(String sc) { argument
284 if (sc == null) {
285 throw new RuntimeException ("invalid call forward sc");
288 if (sc.equals(SC_CF_All)) {
290 } else if (sc.equals(SC_CFU)) {
292 } else if (sc.equals(SC_CFB)) {
294 } else if (sc.equals(SC_CFNR)) {
296 } else if (sc.equals(SC_CFNRy)) {
298 } else if (sc.equals(SC_CF_All_Conditional)) {
301 throw new RuntimeException ("invalid call forward sc");
355 isServiceCodeCallForwarding(String sc) argument
364 isServiceCodeCallBarring(String sc) argument
379 scToBarringFacility(String sc) argument
[all...]
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp269 } sc; member in struct:meas
503 measPtr->sc.minWidth = scMinWidth(format->format, measPtr->df.minDim);
504 testPrintI(" scMinWidth: %u", measPtr->sc.minWidth);
506 measPtr->sc.minHeight = scMinHeight(format->format, measPtr->df.minDim);
507 testPrintI(" scMinHeight: %u", measPtr->sc.minHeight);
509 measPtr->sc.maxWidth = scMaxWidth(format->format, measPtr->df.maxDim);
510 testPrintI(" scMaxWidth: %s%u", (measPtr->sc.maxWidth
512 measPtr->sc.maxWidth);
514 measPtr->sc.maxHeight = scMaxHeight(format->format, measPtr->df.maxDim);
515 testPrintI(" scMaxHeight: %s%u", (measPtr->sc
[all...]
/frameworks/rs/
H A DrsContext.cpp520 Context * Context::createContext(Device *dev, const RsSurfaceConfig *sc, argument
532 if (!rsc->initContext(dev, sc)) {
545 bool Context::initContext(Device *dev, const RsSurfaceConfig *sc) { argument
553 if (sc) {
554 mUserSurfaceConfig = *sc;
559 mIsGraphicsContext = sc != NULL;
949 uint32_t sdkVersion, RsSurfaceConfig sc,
953 Context *rsc = Context::createContext(dev, &sc);
948 rsContextCreateGL(RsDevice vdev, uint32_t version, uint32_t sdkVersion, RsSurfaceConfig sc, uint32_t dpi) argument
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp808 RsScriptCall sc; local
809 sc.xStart = xstart;
810 sc.xEnd = xend;
811 sc.yStart = ystart;
812 sc.yEnd = yend;
813 sc.zStart = zstart;
814 sc.zEnd = zend;
815 sc.strategy = RS_FOR_EACH_STRATEGY_DONT_CARE;
816 sc.arrayStart = 0;
817 sc
830 RsScriptCall sc; local
[all...]
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp449 const Script *sc = RsdCpuReference::getTlsScript(); local
450 return rsdScriptGetAllocationForPointer(rsc, sc, ptr);
504 const Script *sc = RsdCpuReference::getTlsScript(); local
505 return rsrGetDt(rsc, sc);
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp199 RsSurfaceConfig sc; local
200 sc.alphaMin = alphaMin;
201 sc.alphaPref = alphaPref;
202 sc.colorMin = colorMin;
203 sc.colorPref = colorPref;
204 sc.depthMin = depthMin;
205 sc.depthPref = depthPref;
206 sc.samplesMin = samplesMin;
207 sc.samplesPref = samplesPref;
208 sc
1146 RsScriptCall sc; local
1168 RsScriptCall sc; local
[all...]

Completed in 471 milliseconds

12