Searched defs:sc (Results 51 - 60 of 60) sorted by relevance

123

/frameworks/rs/rsov/driver/
H A DrsovScript.cpp221 const RsScriptCall *sc) {
235 const RsScriptCall *sc) {
236 getCpuScript()->invokeReduce(slot, ains, inLen, aout, sc);
834 const RsScriptCall *sc) {
837 sc);
841 rsovScriptInvokeForEachMulti(rsc, s, slot, ains, 1, aout, usr, usrLen, sc);
848 size_t usrLen, const RsScriptCall *sc) {
850 cs->invokeForEach(slot, ains, inLen, aout, usr, usrLen, sc);
876 Allocation *aout, const RsScriptCall *sc) {
878 cs->invokeReduce(slot, ains, inLen, aout, sc);
218 invokeForEach(uint32_t slot, const Allocation **ains, uint32_t inLen, Allocation *aout, const void *usr, uint32_t usrLen, const RsScriptCall *sc) argument
233 invokeReduce(uint32_t slot, const Allocation **ains, uint32_t inLen, Allocation *aout, const RsScriptCall *sc) argument
831 rsovScriptInvokeForEach(const Context *rsc, Script *s, uint32_t slot, const Allocation *ain, Allocation *aout, const void *usr, size_t usrLen, const RsScriptCall *sc) argument
845 rsovScriptInvokeForEachMulti(const Context *rsc, Script *s, uint32_t slot, const Allocation **ains, size_t inLen, Allocation *aout, const void *usr, size_t usrLen, const RsScriptCall *sc) argument
874 rsovScriptInvokeReduce(const Context *dc, Script *s, uint32_t slot, const Allocation **ains, size_t inLen, Allocation *aout, const RsScriptCall *sc) argument
919 rsovScriptGetAllocationForPointer( const android::renderscript::Context *dc, const android::renderscript::Script *sc, const void *ptr) argument
[all...]
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp1245 for (const auto& sc : scs) {
1246 if (sc.isInput == ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS_INPUT &&
1247 sc.format == HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED) {
1248 if (sc.width * sc.height > maxPrivInputSize.width * maxPrivInputSize.height) {
1249 maxPrivInputSize = {sc.width, sc.height};
2935 const StreamConfiguration &sc = scs[i]; local
2936 if (sc.isInput == ANDROID_SCALER_AVAILABLE_STREAM_CONFIGURATIONS_OUTPUT &&
2937 sc
3008 StreamConfiguration sc = {format, width, height, isInput}; local
3062 const StreamConfiguration &sc = scs[i]; local
3075 const StreamConfiguration &sc = scs[i]; local
[all...]
/frameworks/base/core/java/android/view/
H A DSurfaceControl.java1381 public Transaction show(SurfaceControl sc) { argument
1382 sc.checkNotReleased();
1383 nativeSetFlags(mNativeObject, sc.mNativeObject, 0, SURFACE_HIDDEN);
1387 public Transaction hide(SurfaceControl sc) { argument
1388 sc.checkNotReleased();
1389 nativeSetFlags(mNativeObject, sc.mNativeObject, SURFACE_HIDDEN, SURFACE_HIDDEN);
1393 public Transaction setPosition(SurfaceControl sc, float x, float y) { argument
1394 sc.checkNotReleased();
1395 nativeSetPosition(mNativeObject, sc.mNativeObject, x, y);
1399 public Transaction setSize(SurfaceControl sc, in argument
1406 setLayer(SurfaceControl sc, int z) argument
1412 setRelativeLayer(SurfaceControl sc, SurfaceControl relativeTo, int z) argument
1419 setTransparentRegionHint(SurfaceControl sc, Region transparentRegion) argument
1426 setAlpha(SurfaceControl sc, float alpha) argument
1432 setMatrix(SurfaceControl sc, float dsdx, float dtdx, float dtdy, float dsdy) argument
1440 setMatrix(SurfaceControl sc, Matrix matrix, float[] float9) argument
1448 setWindowCrop(SurfaceControl sc, Rect crop) argument
1460 setFinalCrop(SurfaceControl sc, Rect crop) argument
1472 setLayerStack(SurfaceControl sc, int layerStack) argument
1478 deferTransactionUntil(SurfaceControl sc, IBinder handle, long frameNumber) argument
1488 deferTransactionUntilSurface(SurfaceControl sc, Surface barrierSurface, long frameNumber) argument
1499 reparentChildren(SurfaceControl sc, IBinder newParentHandle) argument
1506 reparent(SurfaceControl sc, IBinder newParentHandle) argument
1513 detachChildren(SurfaceControl sc) argument
1519 setOverrideScalingMode(SurfaceControl sc, int overrideScalingMode) argument
1530 setColor(SurfaceControl sc, @Size(3) float[] color) argument
1543 setGeometryAppliesWithResize(SurfaceControl sc) argument
1553 setSecure(SurfaceControl sc, boolean isSecure) argument
1567 setOpaque(SurfaceControl sc, boolean isOpaque) argument
1581 destroy(SurfaceControl sc) argument
[all...]
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp172 const Script *sc = RsdCpuReference::getTlsScript(); local
173 Allocation* alloc = rsdScriptGetAllocationForPointer(rsc, sc, ptr);
181 const Script *sc = RsdCpuReference::getTlsScript(); local
182 Allocation* alloc = rsdScriptGetAllocationForPointer(rsc, sc, ptr);
845 const Script *sc = RsdCpuReference::getTlsScript(); local
846 return rsrGetDt(rsc, sc);
/frameworks/rs/
H A DrsHidlAdaptation.cpp755 const RsScriptCall *sc, size_t scLen)
763 ScriptForEachMulti(context, script, slot, vains, inLen, vaout, params, paramLen, sc, scLen);
769 size_t paramLen, const RsScriptCall *sc,
786 if (sc) {
787 _sc.strategy = static_cast<ForEachStrategy>(sc->strategy);
788 _sc.xStart = sc->xStart;
789 _sc.xEnd = sc->xEnd;
790 _sc.yStart = sc->yStart;
791 _sc.yEnd = sc->yEnd;
792 _sc.zStart = sc
752 ScriptForEach(RsContext context, RsScript script, uint32_t slot, RsAllocation vain, RsAllocation vaout, const void *params, size_t paramLen, const RsScriptCall *sc, size_t scLen) argument
766 ScriptForEachMulti(RsContext context, RsScript script, uint32_t slot, RsAllocation *vains, size_t inLen, RsAllocation vaout, const void *params, size_t paramLen, const RsScriptCall *sc, size_t scLen) argument
808 ScriptReduce(RsContext context, RsScript script, uint32_t slot, RsAllocation *vains, size_t inLen, RsAllocation vaout, const RsScriptCall *sc, size_t scLen) argument
[all...]
H A DrsApiStubs.cpp652 const RsScriptCall * sc, size_t sc_length)
654 RS_DISPATCH(ctxWrapper, ScriptForEach, s, slot, ain, aout, usr, usr_length, sc, sc_length);
660 const RsScriptCall * sc, size_t sc_length)
662 RS_DISPATCH(ctxWrapper, ScriptForEachMulti, s, slot, ains, ains_length, aout, usr, usr_length, sc, sc_length);
667 const RsScriptCall * sc, size_t sc_length)
669 RS_DISPATCH(ctxWrapper, ScriptReduce, s, slot, ains, ains_length, aout, sc, sc_length);
721 RsSurfaceConfig sc, uint32_t dpi)
729 RsContext context = instance.GetEntryFuncs()->ContextCreateGL(vdev, version, sdkVersion, sc, dpi);
649 rsScriptForEach(RsContext ctxWrapper, RsScript s, uint32_t slot, RsAllocation ain, RsAllocation aout, const void * usr, size_t usr_length, const RsScriptCall * sc, size_t sc_length) argument
657 rsScriptForEachMulti(RsContext ctxWrapper, RsScript s, uint32_t slot, RsAllocation * ains, size_t ains_length, RsAllocation aout, const void * usr, size_t usr_length, const RsScriptCall * sc, size_t sc_length) argument
665 rsScriptReduce(RsContext ctxWrapper, RsScript s, uint32_t slot, RsAllocation * ains, size_t ains_length, RsAllocation aout, const RsScriptCall * sc, size_t sc_length) argument
720 rsContextCreateGL(RsDevice vdev, uint32_t version, uint32_t sdkVersion, RsSurfaceConfig sc, uint32_t dpi) argument
/frameworks/rs/support/jni/
H A Dandroid_renderscript_RenderScript.cpp1584 RsScriptCall sc; local
1585 sc.xStart = xstart;
1586 sc.xEnd = xend;
1587 sc.yStart = ystart;
1588 sc.yEnd = yend;
1589 sc.zStart = zstart;
1590 sc.zEnd = zend;
1591 sc.strategy = RS_FOR_EACH_STRATEGY_DONT_CARE;
1592 sc.arrayStart = 0;
1593 sc
1621 RsScriptCall sc; local
1699 RsScriptCall sc, *sca = nullptr; local
1796 RsScriptCall sc, *sca = nullptr; local
[all...]
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp869 RsSurfaceConfig sc = {}; local
870 sc.alphaMin = alphaMin;
871 sc.alphaPref = alphaPref;
872 sc.colorMin = colorMin;
873 sc.colorPref = colorPref;
874 sc.depthMin = depthMin;
875 sc.depthPref = depthPref;
876 sc.samplesMin = samplesMin;
877 sc.samplesPref = samplesPref;
878 sc
2051 RsScriptCall sc, *sca = nullptr; local
2152 RsScriptCall sc, *sca = nullptr; local
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 880 milliseconds

123