Searched defs:rsc (Results 51 - 69 of 69) sorted by relevance

123

/frameworks/rs/
H A DrsScriptC.cpp47 Context * rsc = tls->mContext; \
50 ScriptC::ScriptC(Context *rsc) : Script(rsc) { argument
114 void ScriptC::setupScript(Context *rsc) { argument
125 rsc->mHal.funcs.script.setGlobalBind(rsc, this, ct, mSlots[ct].get());
129 void ScriptC::setupGLState(Context *rsc) { argument
132 rsc->setProgramStore(mEnviroment.mFragmentStore.get());
135 rsc->setProgramFragment(mEnviroment.mFragment.get());
138 rsc
146 run(Context *rsc) argument
171 runForEach(Context *rsc, uint32_t slot, const Allocation ** ains, size_t inLen, Allocation * aout, const void * usr, size_t usrBytes, const RsScriptCall *sc) argument
220 runReduce(Context *rsc, uint32_t slot, const Allocation ** ains, size_t inLen, Allocation *aout, const RsScriptCall *sc) argument
241 Invoke(Context *rsc, uint32_t slot, const void *data, size_t len) argument
294 runCompiler(Context *rsc, const char *resName, const char *cacheDir, const uint8_t *bitcode, size_t bitcodeLen) argument
442 rsi_ScriptCCreate(Context *rsc, const char *resName, size_t resName_length, const char *cacheDir, size_t cacheDir_length, const char *text, size_t text_length) argument
[all...]
H A DrsScriptGroup.cpp29 ScriptGroup::ScriptGroup(Context *rsc) : ScriptGroupBase(rsc) { argument
192 ScriptGroup * ScriptGroup::create(Context *rsc, argument
207 ScriptGroup *sg = new ScriptGroup(rsc);
234 Allocation * alloc = Allocation::createAllocation(rsc,
246 if (rsc->mHal.funcs.scriptgroup.init) {
247 rsc->mHal.funcs.scriptgroup.init(rsc, sg);
253 void ScriptGroup::setInput(Context *rsc, ScriptKernelID *kid, Allocation *a) { argument
258 if (rsc
267 setOutput(Context *rsc, ScriptKernelID *kid, Allocation *a) argument
281 validateInputAndOutput(Context *rsc) argument
299 execute(Context *rsc) argument
366 rsi_ScriptGroupCreate(Context *rsc, RsScriptKernelID * kernels, size_t kernelsSize, RsScriptKernelID * src, size_t srcSize, RsScriptKernelID * dstK, size_t dstKSize, RsScriptFieldID * dstF, size_t dstFSize, const RsType * type, size_t typeSize) argument
383 rsi_ScriptGroupSetInput(Context *rsc, RsScriptGroup sg, RsScriptKernelID kid, RsAllocation alloc) argument
390 rsi_ScriptGroupSetOutput(Context *rsc, RsScriptGroup sg, RsScriptKernelID kid, RsAllocation alloc) argument
397 rsi_ScriptGroupExecute(Context *rsc, RsScriptGroup sg) argument
[all...]
H A DrsType.cpp28 Type::Type(Context *rsc) : ObjectBase(rsc) { argument
164 void Type::serialize(Context *rsc, OStream *stream) const { argument
169 mElement->serialize(rsc, stream);
179 Type *Type::createFromStream(Context *rsc, IStream *stream) { argument
189 Element *elem = Element::createFromStream(rsc, stream);
201 Type *type = Type::getType(rsc, elem, &p, sizeof(p));
225 ObjectBaseRef<Type> Type::getTypeRef(Context *rsc, const Element *e, argument
229 TypeState * stc = &rsc->mStateType;
252 void* allocMem = rsc
296 cloneAndResize1D(Context *rsc, uint32_t dimX) const argument
306 cloneAndResize2D(Context *rsc, uint32_t dimX, uint32_t dimY) const argument
351 callUpdateCacheObject(const Context *rsc, void *dstObj) const argument
362 rsi_TypeCreate(Context *rsc, RsElement _e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv) argument
377 rsi_TypeCreate2(Context *rsc, const RsTypeCreateParams *p, size_t len) argument
[all...]
H A DrsElement.cpp23 Element::Element(Context *rsc) : ObjectBase(rsc) { argument
107 void Element::serialize(Context *rsc, OStream *stream) const { argument
119 mFields[ct].e->serialize(rsc, stream);
123 Element *Element::createFromStream(Context *rsc, IStream *stream) { argument
138 return (Element *)Element::create(rsc,
154 subElems[ct] = Element::createFromStream(rsc, stream);
157 const Element *elem = Element::create(rsc, fieldCount, subElems, subElemNames,
230 ObjectBaseRef<const Element> Element::createRef(Context *rsc, RsDataType dt, RsDataKind dk, argument
235 for (uint32_t ct=0; ct < rsc
275 createRef(Context *rsc, size_t count, const Element **ein, const char **nin, const size_t * lengths, const uint32_t *asin) argument
394 callUpdateCacheObject(const Context *rsc, void *dstObj) const argument
412 rsi_ElementCreate(Context *rsc, RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize) argument
421 rsi_ElementCreate2(Context *rsc, const RsElement * ein, size_t ein_length, const char ** names, size_t nameLengths_length, const size_t * nameLengths, const uint32_t * arraySizes, size_t arraySizes_length) argument
[all...]
H A DrsScript.cpp23 Script::Script(Context *rsc) : ObjectBase(rsc) { argument
108 void Script::callUpdateCacheObject(const Context *rsc, void *dstObj) const { argument
109 if (rsc->mHal.funcs.script.updateCachedObject != nullptr) {
110 rsc->mHal.funcs.script.updateCachedObject(rsc, this, (rs_script *)dstObj);
122 ScriptKernelID::ScriptKernelID(Context *rsc, Script *s, int slot, int sig) argument
123 : IDBase(rsc, s, slot) {
132 ScriptInvokeID::ScriptInvokeID(Context *rsc, Script *s, int slot) argument
133 : IDBase(rsc,
140 ScriptFieldID(Context *rsc, Script *s, int slot) argument
149 rsi_ScriptKernelIDCreate(Context *rsc, RsScript vs, int slot, int sig) argument
155 rsi_ScriptInvokeIDCreate(Context *rsc, RsScript vs, uint32_t slot) argument
161 rsi_ScriptFieldIDCreate(Context *rsc, RsScript vs, int slot) argument
167 rsi_ScriptBindAllocation(Context * rsc, RsScript vs, RsAllocation va, uint32_t slot) argument
173 rsi_ScriptSetTimeZone(Context * rsc, RsScript vs, const char * timeZone, size_t length) argument
192 rsi_ScriptForEachMulti(Context *rsc, RsScript vs, uint32_t slot, RsAllocation *vains, size_t inLen, RsAllocation vaout, const void *params, size_t paramLen, const RsScriptCall *sc, size_t scLen) argument
207 rsi_ScriptForEach(Context *rsc, RsScript vs, uint32_t slot, RsAllocation vain, RsAllocation vaout, const void *params, size_t paramLen, const RsScriptCall *sc, size_t scLen) argument
224 rsi_ScriptReduce(Context *rsc, RsScript vs, uint32_t slot, RsAllocation *vains, size_t inLen, RsAllocation vaout, const RsScriptCall *sc, size_t scLen) argument
236 rsi_ScriptInvoke(Context *rsc, RsScript vs, uint32_t slot) argument
242 rsi_ScriptInvokeData(Context *rsc, RsScript vs, uint32_t slot, void *data) argument
247 rsi_ScriptInvokeV(Context *rsc, RsScript vs, uint32_t slot, const void *data, size_t len) argument
252 rsi_ScriptSetVarI(Context *rsc, RsScript vs, uint32_t slot, int value) argument
257 rsi_ScriptSetVarObj(Context *rsc, RsScript vs, uint32_t slot, RsObjectBase value) argument
263 rsi_ScriptSetVarJ(Context *rsc, RsScript vs, uint32_t slot, int64_t value) argument
268 rsi_ScriptSetVarF(Context *rsc, RsScript vs, uint32_t slot, float value) argument
273 rsi_ScriptSetVarD(Context *rsc, RsScript vs, uint32_t slot, double value) argument
278 rsi_ScriptSetVarV(Context *rsc, RsScript vs, uint32_t slot, const void *data, size_t len) argument
283 rsi_ScriptGetVarV(Context *rsc, RsScript vs, uint32_t slot, void *data, size_t len) argument
288 rsi_ScriptSetVarVE(Context *rsc, RsScript vs, uint32_t slot, const void *data, size_t len, RsElement ve, const uint32_t *dims, size_t dimLen) argument
[all...]
H A DrsScriptC_LibGL.cpp45 void rsrBindTexture(Context *rsc, ProgramFragment *pf, uint32_t slot, Allocation *a) { argument
48 pf->bindTexture(rsc, slot, a);
51 void rsrBindConstant(Context *rsc, ProgramFragment *pf, uint32_t slot, Allocation *a) { argument
54 pf->bindAllocation(rsc, a, slot);
57 void rsrBindConstant(Context *rsc, ProgramVertex *pv, uint32_t slot, Allocation *a) { argument
60 pv->bindAllocation(rsc, a, slot);
63 void rsrBindSampler(Context *rsc, ProgramFragment *pf, uint32_t slot, Sampler *s) { argument
66 pf->bindSampler(rsc, slot, s);
69 void rsrBindProgramStore(Context *rsc, ProgramStore *ps) { argument
71 rsc
74 rsrBindProgramFragment(Context *rsc, ProgramFragment *pf) argument
79 rsrBindProgramVertex(Context *rsc, ProgramVertex *pv) argument
84 rsrBindProgramRaster(Context *rsc, ProgramRaster *pr) argument
89 rsrBindFrameBufferObjectColorTarget(Context *rsc, Allocation *a, uint32_t slot) argument
95 rsrBindFrameBufferObjectDepthTarget(Context *rsc, Allocation *a) argument
101 rsrClearFrameBufferObjectColorTarget(Context *rsc, uint32_t slot) argument
106 rsrClearFrameBufferObjectDepthTarget(Context *rsc) argument
111 rsrClearFrameBufferObjectTargets(Context *rsc) argument
120 rsrVpLoadProjectionMatrix(Context *rsc, const rsc_Matrix *m) argument
124 rsrVpLoadModelMatrix(Context *rsc, const rsc_Matrix *m) argument
128 rsrVpLoadTextureMatrix(Context *rsc, const rsc_Matrix *m) argument
132 rsrPfConstantColor(Context *rsc, ProgramFragment *pf, float r, float g, float b, float a) argument
138 rsrVpGetProjectionMatrix(Context *rsc, rsc_Matrix *m) argument
147 rsrDrawPath(Context *rsc, Path *sm) argument
151 rsrDrawMesh(Context *rsc, Mesh *sm) argument
159 rsrDrawMeshPrimitive(Context *rsc, Mesh *sm, uint32_t primIndex) argument
167 rsrDrawMeshPrimitiveRange(Context *rsc, Mesh *sm, uint32_t primIndex, uint32_t start, uint32_t len) argument
176 rsrMeshComputeBoundingBox(Context *rsc, Mesh *sm, float *minX, float *minY, float *minZ, float *maxX, float *maxY, float *maxZ) argument
195 rsrColor(Context *rsc, float r, float g, float b, float a) argument
200 rsrPrepareClear(Context *rsc) argument
205 rsrGetWidth(Context *rsc) argument
209 rsrGetHeight(Context *rsc) argument
213 rsrDrawTextAlloc(Context *rsc, Allocation *a, int x, int y) argument
220 rsrDrawText(Context *rsc, const char *text, int x, int y) argument
241 rsrMeasureTextAlloc(Context *rsc, Allocation *a, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
252 rsrMeasureText(Context *rsc, const char *text, int32_t *left, int32_t *right, int32_t *top, int32_t *bottom) argument
260 rsrBindFont(Context *rsc, Font *font) argument
265 rsrFontColor(Context *rsc, float r, float g, float b, float a) argument
[all...]
H A DrsFont.h69 virtual void serialize(Context *rsc, OStream *stream) const { argument
75 static Font * create(Context *rsc, const char *name, float fontSize, uint32_t dpi,
119 explicit Font(Context *rsc);
143 void init(Context *rsc);
144 void deinit(Context *rsc);
H A DrsScriptC_Lib.cpp78 time_t rsrTime(Context *rsc, time_t *timer) { argument
82 tm* rsrLocalTime(Context *rsc, tm *local, time_t *timer) { argument
89 pthread_mutex_lock(&rsc->gLibMutex);
92 pthread_mutex_unlock(&rsc->gLibMutex);
96 int64_t rsrUptimeMillis(Context *rsc) { argument
100 int64_t rsrUptimeNanos(Context *rsc) { argument
104 float rsrGetDt(Context *rsc, const Script *sc) { argument
114 static void SetObjectRef(const Context *rsc, const ObjectBase *dst, const ObjectBase *src) { argument
115 //ALOGE("setObjectRef %p,%p %p", rsc, dst, src);
127 void rsrClearObject(const Context *rsc, voi argument
151 rsrClearObject(const Context *rsc, rs_object_base *dst) argument
156 rsrSetObject(const Context *rsc, void *dst, ObjectBase *src) argument
170 rsrSetObject(const Context *rsc, rs_object_base *dst, const ObjectBase *src) argument
190 rsrIsObject(const Context *rsc, rs_object_base o) argument
196 rsrToClient(Context *rsc, int cmdID, const void *data, int len) argument
201 rsrToClientBlocking(Context *rsc, int cmdID, const void *data, int len) argument
208 rsrToClient(Context *rsc, int cmdID, void *data, int len) argument
212 rsrToClientBlocking(Context *rsc, int cmdID, void *data, int len) argument
216 rsrAllocationIoSend(Context *rsc, Allocation *src) argument
220 rsrAllocationIoReceive(Context *rsc, Allocation *src) argument
224 rsrForEach(Context *rsc, Script *target, uint32_t slot, uint32_t numInputs, Allocation **in, Allocation *out, const void *usr, uint32_t usrBytes, const RsScriptCall *call) argument
234 rsrAllocationSyncAll(Context *rsc, Allocation *a, RsAllocationUsageType usage) argument
247 validateCopyArgs(Context *rsc, bool isSrc, uint32_t expectDim, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, uint32_t w, uint32_t h) argument
302 rsrAllocationCopy1DRange(Context *rsc, Allocation *dstAlloc, uint32_t dstOff, uint32_t dstMip, uint32_t count, Allocation *srcAlloc, uint32_t srcOff, uint32_t srcMip) argument
317 rsrAllocationCopy2DRange(Context *rsc, Allocation *dstAlloc, uint32_t dstXoff, uint32_t dstYoff, uint32_t dstMip, uint32_t dstFace, uint32_t width, uint32_t height, Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcYoff, uint32_t srcMip, uint32_t srcFace) argument
334 rsrElementCreate(Context *rsc, RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize) argument
339 rsrTypeCreate(Context *rsc, const RsElement element, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv) argument
345 rsrAllocationCreateTyped(Context *rsc, const RsType type, RsAllocationMipmapControl mipmaps, uint32_t usages, uintptr_t ptr) argument
[all...]
H A DrsContext.cpp234 Context *rsc = static_cast<Context *>(vrsc); local
236 rsc->mNativeThreadId = gettid();
237 rsc->props.mLogTimes = getProp("debug.rs.profile") != 0;
238 rsc->props.mLogScripts = getProp("debug.rs.script") != 0;
239 rsc->props.mLogShaders = getProp("debug.rs.shader") != 0;
240 rsc->props.mLogShadersAttr = getProp("debug.rs.shader.attributes") != 0;
241 rsc->props.mLogShadersUniforms = getProp("debug.rs.shader.uniforms") != 0;
242 rsc->props.mLogVisual = getProp("debug.rs.visual") != 0;
243 rsc->props.mLogReduce = getProp("debug.rs.reduce");
244 rsc
390 Context *rsc = (Context *)ctx; local
465 Context * rsc = new Context(); local
486 Context * rsc = new Context(); local
747 rsi_ContextFinish(Context *rsc) argument
751 rsi_ContextBindRootScript(Context *rsc, RsScript vs) argument
758 rsi_ContextSetCacheDir(Context *rsc, const char *cacheDir, size_t cacheDir_length) argument
762 rsi_ContextBindSampler(Context *rsc, uint32_t slot, RsSampler vs) argument
774 rsi_ContextBindProgramStore(Context *rsc, RsProgramStore vpfs) argument
779 rsi_ContextBindProgramFragment(Context *rsc, RsProgramFragment vpf) argument
784 rsi_ContextBindProgramRaster(Context *rsc, RsProgramRaster vpr) argument
789 rsi_ContextBindProgramVertex(Context *rsc, RsProgramVertex vpv) argument
794 rsi_ContextBindFont(Context *rsc, RsFont vfont) argument
800 rsi_AssignName(Context *rsc, RsObjectBase obj, const char *name, size_t name_length) argument
805 rsi_ObjDestroy(Context *rsc, void *optr) argument
812 rsi_ContextPause(Context *rsc) argument
816 rsi_ContextResume(Context *rsc) argument
820 rsi_ContextSetSurface(Context *rsc, uint32_t w, uint32_t h, RsNativeWindow sur) argument
825 rsi_ContextSetPriority(Context *rsc, int32_t p) argument
829 rsi_ContextDump(Context *rsc, int32_t bits) argument
833 rsi_ContextDestroyWorker(Context *rsc) argument
837 rsi_ContextDestroy(Context *rsc) argument
844 rsi_ContextPeekMessage(Context *rsc, size_t * receiveLen, size_t receiveLen_length, uint32_t * subID, size_t subID_length) argument
850 rsi_ContextGetMessage(Context *rsc, void * data, size_t data_length, size_t * receiveLen, size_t receiveLen_length, uint32_t * subID, size_t subID_length) argument
858 rsi_ContextInitToClient(Context *rsc) argument
862 rsi_ContextDeinitToClient(Context *rsc) argument
866 rsi_ContextSendMessage(Context *rsc, uint32_t id, const uint8_t *data, size_t len) argument
872 LF_ObjDestroy_handcode(const Context *rsc, RsAsyncVoidPtr objPtr) argument
[all...]
H A DrsFont.cpp34 Font::Font(Context *rsc) : ObjectBase(rsc), mCachedGlyphs(NULL) { argument
295 Font * Font::create(Context *rsc, const char *name, float fontSize, uint32_t dpi, argument
297 rsc->mStateFont.checkInit();
298 auto& activeFonts = rsc->mStateFont.mActiveFonts;
307 Font *newFont = new Font(rsc);
311 rsc->mStateFont.precacheLatin(newFont);
397 void FontState::init(Context *rsc) { argument
398 mRSC = rsc;
813 void FontState::deinit(Context *rsc) { argument
857 rsi_FontCreateFromFile(Context *rsc, char const *name, size_t name_length, float fontSize, uint32_t dpi) argument
867 rsi_FontCreateFromMemory(Context *rsc, char const *name, size_t name_length, float fontSize, uint32_t dpi, const void *data, size_t data_length) argument
[all...]
H A DrsAllocation.cpp28 Allocation::Allocation(Context *rsc, const Type *type, uint32_t usages, argument
30 : ObjectBase(rsc) {
42 Allocation::Allocation(Context *rsc, const Allocation *alloc, const Type *type) argument
43 : ObjectBase(rsc) {
61 Allocation * Allocation::createAllocationStrided(Context *rsc, const Type *type, uint32_t usages, argument
65 void* allocMem = rsc->mHal.funcs.allocRuntimeMem(sizeof(Allocation), 0);
68 rsc->setError(RS_ERROR_FATAL_DRIVER, "Couldn't allocate memory for Allocation");
75 if (rsc->mHal.funcs.allocation.initOem != nullptr) {
76 a = new (allocMem) Allocation(rsc, type, usages, mc, nullptr);
77 success = rsc
101 createAllocation(Context *rsc, const Type *type, uint32_t usages, RsAllocationMipmapControl mc, void * ptr) argument
106 createAdapter(Context *rsc, const Allocation *alloc, const Type *type) argument
126 adapterOffset(Context *rsc, const uint32_t *offsets, size_t len) argument
168 syncAll(Context *rsc, RsAllocationUsageType src) argument
172 getPointer(const Context *rsc, uint32_t lod, RsAllocationCubemapFace face, uint32_t z, uint32_t array, size_t *stride) argument
194 data(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, const void *data, size_t sizeBytes) argument
212 data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) argument
218 data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
225 read(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes) argument
242 read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
261 read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) argument
273 elementData(Context *rsc, uint32_t x, uint32_t y, uint32_t z, const void *data, uint32_t cIdx, size_t sizeBytes) argument
306 elementRead(Context *rsc, uint32_t x, uint32_t y, uint32_t z, void *data, uint32_t cIdx, size_t sizeBytes) argument
371 writePackedData(Context *rsc, const Type *type, uint8_t *dst, const uint8_t *src, bool dstPadded) argument
420 unpackVec3Allocation(Context *rsc, const void *data, size_t dataSize) argument
428 packVec3Allocation(Context *rsc, OStream *stream) const argument
442 serialize(Context *rsc, OStream *stream) const argument
466 createFromStream(Context *rsc, IStream *stream) argument
532 callUpdateCacheObject(const Context *rsc, void *dstObj) const argument
556 copyRange1D(Context *rsc, const Allocation *src, int32_t srcOff, int32_t destOff, int32_t len) argument
559 resize1D(Context *rsc, uint32_t dimX) argument
575 resize2D(Context *rsc, uint32_t dimX, uint32_t dimY) argument
579 setupGrallocConsumer(const Context *rsc, uint32_t numAlloc) argument
592 getSurface(const Context *rsc) argument
607 shareBufferQueue(const Context *rsc, const Allocation *alloc) argument
620 setSurface(const Context *rsc, RsNativeWindow sur) argument
625 ioSend(const Context *rsc) argument
629 ioReceive(const Context *rsc) argument
665 rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) argument
671 rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) argument
676 rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) argument
683 rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, uint32_t count, const void *data, size_t sizeBytes) argument
689 rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t lod, const void *data, size_t sizeBytes, size_t eoff) argument
695 rsi_AllocationElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t z, uint32_t lod, const void *data, size_t sizeBytes, size_t eoff) argument
701 rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) argument
707 rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
714 rsi_AllocationRead(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) argument
729 rsi_AllocationResize1D(Context *rsc, RsAllocation va, uint32_t dimX) argument
734 rsi_AllocationResize2D(Context *rsc, RsAllocation va, uint32_t dimX, uint32_t dimY) argument
739 rsi_AllocationCreateTyped(Context *rsc, RsType vtype, RsAllocationMipmapControl mipmaps, uint32_t usages, uintptr_t ptr) argument
750 rsi_AllocationCreateStrided(Context *rsc, RsType vtype, RsAllocationMipmapControl mipmaps, uint32_t usages, uintptr_t ptr, size_t requiredAlignment) argument
763 rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype, RsAllocationMipmapControl mipmaps, const void *data, size_t sizeBytes, uint32_t usages) argument
785 rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype, RsAllocationMipmapControl mipmaps, const void *data, size_t sizeBytes, uint32_t usages) argument
823 rsi_AllocationCopy2DRange(Context *rsc, RsAllocation dstAlloc, uint32_t dstXoff, uint32_t dstYoff, uint32_t dstMip, uint32_t dstFace, uint32_t width, uint32_t height, RsAllocation srcAlloc, uint32_t srcXoff, uint32_t srcYoff, uint32_t srcMip, uint32_t srcFace) argument
840 rsi_AllocationCopy3DRange(Context *rsc, RsAllocation dstAlloc, uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff, uint32_t dstMip, uint32_t width, uint32_t height, uint32_t depth, RsAllocation srcAlloc, uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff, uint32_t srcMip) argument
855 rsi_AllocationSetupBufferQueue(Context *rsc, RsAllocation valloc, uint32_t numAlloc) argument
860 rsi_AllocationGetSurface(Context *rsc, RsAllocation valloc) argument
866 rsi_AllocationShareBufferQueue(Context *rsc, RsAllocation valloc1, RsAllocation valloc2) argument
872 rsi_AllocationSetSurface(Context *rsc, RsAllocation valloc, RsNativeWindow sur) argument
877 rsi_AllocationIoSend(Context *rsc, RsAllocation valloc) argument
882 rsi_AllocationIoReceive(Context *rsc, RsAllocation valloc) argument
888 rsi_AllocationGetPointer(Context *rsc, RsAllocation valloc, uint32_t lod, RsAllocationCubemapFace face, uint32_t z, uint32_t array, size_t *stride, size_t strideLen) argument
897 rsi_Allocation1DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes) argument
903 rsi_AllocationElementRead(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t z, uint32_t lod, void *data, size_t sizeBytes, size_t eoff) argument
909 rsi_Allocation2DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
916 rsi_Allocation3DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) argument
924 rsi_AllocationAdapterCreate(Context *rsc, RsType vwindow, RsAllocation vbase) argument
936 rsi_AllocationAdapterOffset(Context *rsc, RsAllocation va, const uint32_t *offsets, size_t len) argument
[all...]
/frameworks/base/tools/aapt/
H A DXMLNode.cpp568 sp<AaptFile> rsc = new AaptFile(String8(), AaptGroupEntry(), String8()); local
569 status_t err = root->flatten(rsc, !keepComments, false);
573 err = outTree->setTo(rsc->getData(), rsc->getSize(), true);
/frameworks/rs/driver/
H A DrsdShader.cpp106 uint32_t RsdShader::getStateBasedShaderID(const Context *rsc) { argument
117 loadShader(rsc);
234 bool RsdShader::loadShader(const Context *rsc) { argument
242 if (rsc->props.mLogShaders) {
261 rsc->setError(RS_ERROR_FATAL_PROGRAM_LINK, buf);
271 if (rsc->props.mLogShaders) {
361 void RsdShader::setUniform(const Context *rsc, const Element *field, const float *fd, argument
390 void RsdShader::setupSampler(const Context *rsc, const Sampler *s, const Allocation *tex) { argument
391 RsdHal *dc = (RsdHal *)rsc->mHal.drv;
416 rsc
467 setupTextures(const Context *rsc, RsdShaderCache *sc) argument
526 setupUserConstants(const Context *rsc, RsdShaderCache *sc, bool isFragment) argument
573 setup(const android::renderscript::Context *rsc, RsdShaderCache *sc) argument
[all...]
H A DrsdAllocation.cpp96 static void Update2DTexture(const Context *rsc, const Allocation *alloc, const void *ptr, argument
115 static void Upload2DTexture(const Context *rsc, const Allocation *alloc, bool isFirstUpload) { argument
126 rsdGLCheckError(rsc, "Upload2DTexture 1 ");
153 rsdGLCheckError(rsc, "Upload2DTexture");
157 static void UploadToTexture(const Context *rsc, const Allocation *alloc) { argument
183 Upload2DTexture(rsc, alloc, isFirstUpload);
191 rsdGLCheckError(rsc, "UploadToTexture");
195 static void AllocateRenderTarget(const Context *rsc, const Allocation *alloc) { argument
209 rsc->dumpDebug();
216 rsdGLCheckError(rsc, "AllocateRenderTarge
220 UploadToBufferObject(const Context *rsc, const Allocation *alloc) argument
296 AllocationBuildPointerTable(const Context *rsc, const Allocation *alloc, const Type *type, uint8_t *ptr, size_t requiredAlignment) argument
352 AllocationBuildPointerTable(const Context *rsc, const Allocation *alloc, const Type *type, uint8_t *ptr) argument
369 rsdAllocationInitStrided(const Context *rsc, Allocation *alloc, bool forceZero, size_t requiredAlignment) argument
492 rsdAllocationInit(const Context *rsc, Allocation *alloc, bool forceZero) argument
496 rsdAllocationAdapterOffset(const Context *rsc, const Allocation *alloc) argument
519 rsdAllocationAdapterInit(const Context *rsc, Allocation *alloc) argument
532 rsdAllocationDestroy(const Context *rsc, Allocation *alloc) argument
591 rsdAllocationResize(const Context *rsc, const Allocation *alloc, const Type *newType, bool zeroNew) argument
619 rsdAllocationSyncFromFBO(const Context *rsc, const Allocation *alloc) argument
653 rsdAllocationSyncAll(const Context *rsc, const Allocation *alloc, RsAllocationUsageType src) argument
698 rsdAllocationMarkDirty(const Context *rsc, const Allocation *alloc) argument
704 IoGetBuffer(const Context *rsc, Allocation *alloc, ANativeWindow *nw) argument
731 rsdAllocationSetSurface(const Context *rsc, Allocation *alloc, ANativeWindow *nw) argument
773 rsdAllocationIoSend(const Context *rsc, Allocation *alloc) argument
809 rsdAllocationIoReceive(const Context *rsc, Allocation *alloc) argument
816 rsdAllocationData1D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t lod, size_t count, const void *data, size_t sizeBytes) argument
836 rsdAllocationData2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) argument
898 rsdAllocationData3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
937 rsdAllocationRead1D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t lod, size_t count, void *data, size_t sizeBytes) argument
949 rsdAllocationRead2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
978 rsdAllocationRead3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) argument
1008 rsdAllocationLock1D(const android::renderscript::Context *rsc, const android::renderscript::Allocation *alloc) argument
1013 rsdAllocationUnlock1D(const android::renderscript::Context *rsc, const android::renderscript::Allocation *alloc) argument
1018 rsdAllocationData1D_alloc(const android::renderscript::Context *rsc, const android::renderscript::Allocation *dstAlloc, uint32_t dstXoff, uint32_t dstLod, size_t count, const android::renderscript::Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcLod) argument
1026 rsdAllocationData2D_alloc_script(const android::renderscript::Context *rsc, const android::renderscript::Allocation *dstAlloc, uint32_t dstXoff, uint32_t dstYoff, uint32_t dstLod, RsAllocationCubemapFace dstFace, uint32_t w, uint32_t h, const android::renderscript::Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcYoff, uint32_t srcLod, RsAllocationCubemapFace srcFace) argument
1044 rsdAllocationData3D_alloc_script(const android::renderscript::Context *rsc, const android::renderscript::Allocation *dstAlloc, uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff, uint32_t dstLod, uint32_t w, uint32_t h, uint32_t d, const android::renderscript::Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff, uint32_t srcLod) argument
1065 rsdAllocationData2D_alloc(const android::renderscript::Context *rsc, const android::renderscript::Allocation *dstAlloc, uint32_t dstXoff, uint32_t dstYoff, uint32_t dstLod, RsAllocationCubemapFace dstFace, uint32_t w, uint32_t h, const android::renderscript::Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcYoff, uint32_t srcLod, RsAllocationCubemapFace srcFace) argument
1082 rsdAllocationData3D_alloc(const android::renderscript::Context *rsc, const android::renderscript::Allocation *dstAlloc, uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff, uint32_t dstLod, uint32_t w, uint32_t h, uint32_t d, const android::renderscript::Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff, uint32_t srcLod) argument
1100 rsdAllocationElementData(const Context *rsc, const Allocation *alloc, uint32_t x, uint32_t y, uint32_t z, const void *data, uint32_t cIdx, size_t sizeBytes) argument
1119 rsdAllocationElementRead(const Context *rsc, const Allocation *alloc, uint32_t x, uint32_t y, uint32_t z, void *data, uint32_t cIdx, size_t sizeBytes) argument
1186 rsdAllocationGenerateMipmaps(const Context *rsc, const Allocation *alloc) argument
1208 rsdAllocationGrallocBits(const android::renderscript::Context *rsc, android::renderscript::Allocation *alloc) argument
1214 rsdAllocationUpdateCachedObject(const Context *rsc, const Allocation *alloc, rs_allocation *obj) argument
[all...]
H A DrsdRuntimeStubs.cpp151 static bool failIfInKernel(Context *rsc, const char *funcName) { argument
152 RsdHal *dc = (RsdHal *)rsc->mHal.drv;
159 rsc->setError(RS_ERROR_FATAL_DRIVER, buf);
171 Context *rsc = RsdCpuReference::getTlsContext(); local
173 Allocation* alloc = rsdScriptGetAllocationForPointer(rsc, sc, ptr);
175 alloc->callUpdateCacheObject(rsc, &obj);
180 Context *rsc = RsdCpuReference::getTlsContext(); local
182 Allocation* alloc = rsdScriptGetAllocationForPointer(rsc, sc, ptr);
189 alloc->callUpdateCacheObject(rsc, &obj);
195 Context *rsc local
202 Context *rsc = RsdCpuReference::getTlsContext(); local
213 Context *rsc = RsdCpuReference::getTlsContext(); local
228 Context *rsc = RsdCpuReference::getTlsContext(); local
241 Context *rsc = RsdCpuReference::getTlsContext(); local
267 Context *rsc = RsdCpuReference::getTlsContext(); local
340 Context *rsc = RsdCpuReference::getTlsContext(); local
471 Context *rsc = RsdCpuReference::getTlsContext(); local
705 Context *rsc = RsdCpuReference::getTlsContext(); local
739 Context *rsc = RsdCpuReference::getTlsContext(); local
748 Context *rsc = RsdCpuReference::getTlsContext(); local
756 Context *rsc = RsdCpuReference::getTlsContext(); local
768 Context *rsc = RsdCpuReference::getTlsContext(); local
779 Context *rsc = RsdCpuReference::getTlsContext(); local
789 Context *rsc = RsdCpuReference::getTlsContext(); local
794 Context *rsc = RsdCpuReference::getTlsContext(); local
799 Context *rsc = RsdCpuReference::getTlsContext(); local
804 Context *rsc = RsdCpuReference::getTlsContext(); local
820 Context *rsc = RsdCpuReference::getTlsContext(); local
829 Context *rsc = RsdCpuReference::getTlsContext(); local
834 Context *rsc = RsdCpuReference::getTlsContext(); local
839 Context *rsc = RsdCpuReference::getTlsContext(); local
844 Context *rsc = RsdCpuReference::getTlsContext(); local
857 Context *rsc = RsdCpuReference::getTlsContext(); local
898 Context *rsc = RsdCpuReference::getTlsContext(); local
916 Context *rsc = RsdCpuReference::getTlsContext(); local
921 Context *rsc = RsdCpuReference::getTlsContext(); local
927 Context *rsc = RsdCpuReference::getTlsContext(); local
934 Context *rsc = RsdCpuReference::getTlsContext(); local
939 Context *rsc = RsdCpuReference::getTlsContext(); local
944 Context *rsc = RsdCpuReference::getTlsContext(); local
949 Context *rsc = RsdCpuReference::getTlsContext(); local
954 Context *rsc = RsdCpuReference::getTlsContext(); local
960 Context *rsc = RsdCpuReference::getTlsContext(); local
966 Context *rsc = RsdCpuReference::getTlsContext(); local
972 Context *rsc = RsdCpuReference::getTlsContext(); local
978 Context *rsc = RsdCpuReference::getTlsContext(); local
983 Context *rsc = RsdCpuReference::getTlsContext(); local
988 Context *rsc = RsdCpuReference::getTlsContext(); local
993 Context *rsc = RsdCpuReference::getTlsContext(); local
998 Context *rsc = RsdCpuReference::getTlsContext(); local
1004 Context *rsc = RsdCpuReference::getTlsContext(); local
1009 Context *rsc = RsdCpuReference::getTlsContext(); local
1014 Context *rsc = RsdCpuReference::getTlsContext(); local
1050 Context *rsc = RsdCpuReference::getTlsContext(); local
1055 Context *rsc = RsdCpuReference::getTlsContext(); local
1060 Context *rsc = RsdCpuReference::getTlsContext(); local
1067 Context *rsc = RsdCpuReference::getTlsContext(); local
1072 Context *rsc = RsdCpuReference::getTlsContext(); local
1078 Context *rsc = RsdCpuReference::getTlsContext(); local
1084 Context *rsc = RsdCpuReference::getTlsContext(); local
1089 Context *rsc = RsdCpuReference::getTlsContext(); local
1095 Context *rsc = RsdCpuReference::getTlsContext(); local
1101 Context *rsc = RsdCpuReference::getTlsContext(); local
1106 Context *rsc = RsdCpuReference::getTlsContext(); local
1111 Context *rsc = RsdCpuReference::getTlsContext(); local
1116 Context *rsc = RsdCpuReference::getTlsContext(); local
1121 Context *rsc = RsdCpuReference::getTlsContext(); local
1126 Context *rsc = RsdCpuReference::getTlsContext(); local
1131 Context *rsc = RsdCpuReference::getTlsContext(); local
1136 Context *rsc = RsdCpuReference::getTlsContext(); local
1141 Context *rsc = RsdCpuReference::getTlsContext(); local
1146 Context *rsc = RsdCpuReference::getTlsContext(); local
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuCore.cpp47 RsdCpuReference * RsdCpuReference::create(Context *rsc, uint32_t version_major, argument
53 RsdCpuReferenceImpl *cpu = new RsdCpuReferenceImpl(rsc);
86 RsdCpuReferenceImpl::RsdCpuReferenceImpl(Context *rsc) { argument
87 mRSC = rsc;
122 int ret = syscall(241, rsc->mWorkers.mNativeThreadId[idx],
/frameworks/rs/rsov/driver/
H A DrsovAllocation.cpp82 size_t AllocationBuildPointerTable(const Context *rsc, const Allocation *alloc, argument
141 size_t AllocationBuildPointerTable(const Context *rsc, const Allocation *alloc, argument
143 return AllocationBuildPointerTable(rsc, alloc, type, ptr,
300 bool rsovAllocationInit(const Context *rsc, Allocation *alloc, bool forceZero) { argument
301 RSoVHal *hal = static_cast<RSoVHal *>(rsc->mHal.drv);
306 size_t allocSize = AllocationBuildPointerTable(rsc, alloc, type, nullptr);
309 AllocationBuildPointerTable(rsc, alloc, type,
314 void rsovAllocationDestroy(const Context *rsc, Allocation *alloc) { argument
320 void rsovAllocationData1D(const Context *rsc, const Allocation *alloc, argument
338 void rsovAllocationData2D(const Context *rsc, cons argument
390 rsovAllocationData3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
418 rsovAllocationRead1D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t lod, size_t count, void *data, size_t sizeBytes) argument
431 rsovAllocationRead2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
460 rsovAllocationRead3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) argument
490 rsovAllocationLock1D(const Context *rsc, const Allocation *alloc) argument
494 rsovAllocationUnlock1D(const Context *rsc, const Allocation *alloc) argument
496 rsovAllocationData1D_alloc(const Context *rsc, const Allocation *dstAlloc, uint32_t dstXoff, uint32_t dstLod, size_t count, const Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcLod) argument
501 rsovAllocationData2D_alloc_script( const Context *rsc, const Allocation *dstAlloc, uint32_t dstXoff, uint32_t dstYoff, uint32_t dstLod, RsAllocationCubemapFace dstFace, uint32_t w, uint32_t h, const Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcYoff, uint32_t srcLod, RsAllocationCubemapFace srcFace) argument
516 rsovAllocationData3D_alloc_script( const Context *rsc, const Allocation *dstAlloc, uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff, uint32_t dstLod, uint32_t w, uint32_t h, uint32_t d, const Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff, uint32_t srcLod) argument
535 rsovAllocationData2D_alloc( const Context *rsc, const Allocation *dstAlloc, uint32_t dstXoff, uint32_t dstYoff, uint32_t dstLod, RsAllocationCubemapFace dstFace, uint32_t w, uint32_t h, const Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcYoff, uint32_t srcLod, RsAllocationCubemapFace srcFace) argument
551 rsovAllocationData3D_alloc(const Context *rsc, const Allocation *dstAlloc, uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff, uint32_t dstLod, uint32_t w, uint32_t h, uint32_t d, const Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff, uint32_t srcLod) argument
569 rsovAllocationAdapterOffset(const Context *rsc, const Allocation *alloc) argument
588 rsovAllocationAdapterInit(const Context *rsc, Allocation *alloc) argument
604 rsovAllocationSyncAll(const Context *rsc, const Allocation *alloc, RsAllocationUsageType src) argument
609 rsovAllocationMarkDirty(const Context *rsc, const Allocation *alloc) argument
613 rsovAllocationResize(const Context *rsc, const Allocation *alloc, const Type *newType, bool zeroNew) argument
620 rsovAllocationGenerateMipmaps(const Context *rsc, const Allocation *alloc) argument
643 rsovAllocationGrallocBits(const Context *rsc, Allocation *alloc) argument
647 rsovAllocationUpdateCachedObject(const Context *rsc, const Allocation *alloc, rs_allocation *obj) argument
658 rsovAllocationSetSurface(const Context *rsc, Allocation *alloc, ANativeWindow *nw) argument
663 rsovAllocationIoSend(const Context *rsc, Allocation *alloc) argument
667 rsovAllocationIoReceive(const Context *rsc, Allocation *alloc) argument
671 rsovAllocationElementData(const Context *rsc, const Allocation *alloc, uint32_t x, uint32_t y, uint32_t z, const void *data, uint32_t cIdx, size_t sizeBytes) argument
689 rsovAllocationElementRead(const Context *rsc, const Allocation *alloc, uint32_t x, uint32_t y, uint32_t z, void *data, uint32_t cIdx, size_t sizeBytes) argument
[all...]
H A DrsovScript.cpp685 bool rsovScriptInit(const Context *rsc, ScriptC *script, char const *resName, argument
688 RSoVHal *hal = static_cast<RSoVHal *>(rsc->mHal.drv);
732 bool rsovInitIntrinsic(const Context *rsc, Script *s, RsScriptIntrinsicID iid, argument
734 RSoVHal *dc = (RSoVHal *)rsc->mHal.drv;
744 void rsovScriptInvokeForEach(const Context *rsc, Script *s, uint32_t slot, argument
749 rsovScriptInvokeForEachMulti(rsc, s, slot, nullptr, 0, aout, usr, usrLen,
754 rsovScriptInvokeForEachMulti(rsc, s, slot, ains, 1, aout, usr, usrLen, sc);
758 void rsovScriptInvokeForEachMulti(const Context *rsc, Script *s, uint32_t slot, argument
839 void rsovScriptUpdateCachedObject(const Context *rsc, const Script *script, argument
H A DrsovRuntimeStubs.cpp137 static bool failIfInKernel(Context *rsc, const char *funcName) { argument
138 RSoVHal *dc = (RSoVHal *)rsc->mHal.drv;
147 rsc->setError(RS_ERROR_FATAL_DRIVER, buf);
160 Context *rsc = RsdCpuReference::getTlsContext(); local
162 Allocation *alloc = rsovScriptGetAllocationForPointer(rsc, sc, ptr);
164 alloc->callUpdateCacheObject(rsc, &obj);
169 Context *rsc = RsdCpuReference::getTlsContext(); local
171 Allocation *alloc = rsovScriptGetAllocationForPointer(rsc, sc, ptr);
178 alloc->callUpdateCacheObject(rsc, &obj);
184 Context *rsc local
190 Context *rsc = RsdCpuReference::getTlsContext(); local
200 Context *rsc = RsdCpuReference::getTlsContext(); local
213 Context *rsc = RsdCpuReference::getTlsContext(); local
224 Context *rsc = RsdCpuReference::getTlsContext(); local
248 Context *rsc = RsdCpuReference::getTlsContext(); local
318 Context *rsc = RsdCpuReference::getTlsContext(); local
438 Context *rsc = RsdCpuReference::getTlsContext(); local
659 Context *rsc = RsdCpuReference::getTlsContext(); local
678 Context *rsc = RsdCpuReference::getTlsContext(); local
686 Context *rsc = RsdCpuReference::getTlsContext(); local
693 Context *rsc = RsdCpuReference::getTlsContext(); local
703 Context *rsc = RsdCpuReference::getTlsContext(); local
711 Context *rsc = RsdCpuReference::getTlsContext(); local
721 Context *rsc = RsdCpuReference::getTlsContext(); local
726 Context *rsc = RsdCpuReference::getTlsContext(); local
731 Context *rsc = RsdCpuReference::getTlsContext(); local
736 Context *rsc = RsdCpuReference::getTlsContext(); local
752 Context *rsc = RsdCpuReference::getTlsContext(); local
761 Context *rsc = RsdCpuReference::getTlsContext(); local
766 Context *rsc = RsdCpuReference::getTlsContext(); local
771 Context *rsc = RsdCpuReference::getTlsContext(); local
776 Context *rsc = RsdCpuReference::getTlsContext(); local
[all...]

Completed in 373 milliseconds

123