Searched refs:usr (Results 1 - 25 of 49) sorted by relevance

12

/frameworks/compile/libbcc/runtime/make/
H A DAppleBI.mk31 install: $(SYMROOT)/usr/local/lib/system/libcompiler_rt.a
32 mkdir -p $(DSTROOT)/usr/local/lib/system
33 cp $(SYMROOT)/usr/local/lib/system/libcompiler_rt.a \
34 $(DSTROOT)/usr/local/lib/system/libcompiler_rt.a
35 cd $(DSTROOT)/usr/local/lib/system; \
41 $(SYMROOT)/usr/local/lib/system/libcompiler_rt.a : $(foreach arch,$(RC_ARCHS), \
43 mkdir -p $(SYMROOT)/usr/local/lib/system
47 # Rule to add project info so that "what /usr/lib/libSystem.B.dylib" will work.
/frameworks/base/data/keyboards/
H A Dkeyboards.mk20 frameworks/base/data/keyboards/$(file):system/usr/keylayout/$(file))
23 frameworks/base/data/keyboards/$(file):system/usr/keychars/$(file))
26 frameworks/base/data/keyboards/$(file):system/usr/idc/$(file))
/frameworks/compile/libbcc/runtime/test/timing/
H A Dtime22 INSTALLED=/usr/local/lib/system/libcompiler_rt.a
/frameworks/rs/cpp/
H A DScript.cpp36 const void *usr, size_t usrLen) const {
42 rsScriptForEach(mRS->mContext, getID(), slot, in_id, out_id, usr, usrLen);
35 forEach(uint32_t slot, sp<const Allocation> ain, sp<const Allocation> aout, const void *usr, size_t usrLen) const argument
/frameworks/rs/
H A DrsScriptIntrinsic.cpp59 const void * usr,
63 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
55 runForEach(Context *rsc, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, size_t usrBytes, const RsScriptCall *sc) argument
H A DrsScriptIntrinsic.h47 const void * usr,
H A DrsScriptC.h49 const void * usr,
H A DrsScript.h109 const void * usr,
H A DrsScriptC.cpp152 const void * usr,
160 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
148 runForEach(Context *rsc, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, size_t usrBytes, const RsScriptCall *sc) argument
/frameworks/support/renderscript/v8/rs_support/
H A DrsScriptIntrinsic.cpp59 const void * usr,
63 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
55 runForEach(Context *rsc, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, size_t usrBytes, const RsScriptCall *sc) argument
H A DrsScriptIntrinsic.h47 const void * usr,
H A DrsScriptC.h45 const void * usr,
H A DrsScriptC.cpp87 const void * usr,
95 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
83 runForEach(Context *rsc, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, size_t usrBytes, const RsScriptCall *sc) argument
H A DrsScript.h99 const void * usr,
/frameworks/rs/driver/
H A DrsdCore.h29 typedef void (*WorkerCallback_t)(void *usr, uint32_t idx);
H A DrsdIntrinsicLUT.cpp41 ConvolveParams *cp = (ConvolveParams *)p->usr;
H A DrsdBcc.cpp175 static void wc_xy(void *usr, uint32_t idx) { argument
176 MTLaunchStruct *mtls = (MTLaunchStruct *)usr;
196 //ALOGE("usr idx %i, x %i,%i y %i,%i", idx, mtls->xStart, mtls->xEnd, yStart, yEnd);
197 //ALOGE("usr ptr in %p, out %p", mtls->fep.ptrIn, mtls->fep.ptrOut);
221 static void wc_x(void *usr, uint32_t idx) { argument
222 MTLaunchStruct *mtls = (MTLaunchStruct *)usr;
238 //ALOGE("usr slice %i idx %i, x %i,%i", slice, idx, xStart, xEnd);
239 //ALOGE("usr ptr in %p, out %p", mtls->fep.ptrIn, mtls->fep.ptrOut);
250 const void * usr,
305 mtls->fep.usr
247 rsdScriptInvokeForEachMtlsSetup(const Context *rsc, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc, MTLaunchStruct *mtls) argument
330 rsdScriptLaunchThreads(const Context *rsc, Script *s, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc, MTLaunchStruct *mtls) argument
389 rsdScriptInvokeForEach(const Context *rsc, Script *s, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc) argument
[all...]
H A DrsdBcc.h48 const void * usr,
168 const void * usr,
176 const void * usr,
H A DrsdGL.h30 typedef void (*WorkerCallback_t)(void *usr, uint32_t idx);
H A DrsdRuntimeStubs.cpp439 const void *usr) {
441 rsrForEach(rsc, sc, target, in, out, usr, 0, NULL);
447 const void *usr,
450 rsrForEach(rsc, sc, target, in, out, usr, 0, call);
456 const void *usr,
459 rsrForEach(rsc, sc, target, in, out, usr, usrLen, NULL);
465 const void *usr,
469 rsrForEach(rsc, sc, target, in, out, usr, usrLen, call);
436 SC_ForEach_SAAU(Script *target, Allocation *in, Allocation *out, const void *usr) argument
444 SC_ForEach_SAAUS(Script *target, Allocation *in, Allocation *out, const void *usr, const RsScriptCall *call) argument
453 SC_ForEach_SAAUL(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen) argument
462 SC_ForEach_SAAULS(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen, const RsScriptCall *call) argument
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdCore.h29 typedef void (*WorkerCallback_t)(void *usr, uint32_t idx);
H A DrsdBcc.cpp361 static void wc_xy(void *usr, uint32_t idx) { argument
362 MTLaunchStruct *mtls = (MTLaunchStruct *)usr;
378 //ALOGE("usr idx %i, x %i,%i y %i,%i", idx, mtls->xStart, mtls->xEnd, yStart, yEnd);
379 //ALOGE("usr ptr in %p, out %p", mtls->ptrIn, mtls->ptrOut);
384 bare_fn(p.in, p.out, p.usr, x, p.y, 0, 0);
392 static void wc_x(void *usr, uint32_t idx) { argument
393 MTLaunchStruct *mtls = (MTLaunchStruct *)usr;
409 //ALOGE("usr slice %i idx %i, x %i,%i", slice, idx, xStart, xEnd);
410 //ALOGE("usr ptr in %p, out %p", mtls->ptrIn, mtls->ptrOut);
415 bare_fn(p.in, p.out, p.usr,
422 rsdScriptInvokeForEachMtlsSetup(const Context *rsc, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc, MTLaunchStruct *mtls) argument
505 rsdScriptLaunchThreads(const Context *rsc, Script *s, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc, MTLaunchStruct *mtls) argument
562 rsdScriptInvokeForEach(const Context *rsc, Script *s, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc) argument
[all...]
H A DrsdRuntimeStubs.cpp150 const void *usr) {
152 rsrForEach(rsc, sc, target, in, out, usr, 0, NULL);
158 const void *usr,
161 rsrForEach(rsc, sc, target, in, out, usr, 0, call);
167 const void *usr,
170 rsrForEach(rsc, sc, target, in, out, usr, usrLen, NULL);
176 const void *usr,
180 rsrForEach(rsc, sc, target, in, out, usr, usrLen, call);
147 SC_ForEach_SAAU(Script *target, Allocation *in, Allocation *out, const void *usr) argument
155 SC_ForEach_SAAUS(Script *target, Allocation *in, Allocation *out, const void *usr, const RsScriptCall *call) argument
164 SC_ForEach_SAAUL(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen) argument
173 SC_ForEach_SAAULS(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen, const RsScriptCall *call) argument
H A DrsdIntrinsicLUT.cpp41 ConvolveParams *cp = (ConvolveParams *)p->usr;
H A DrsdBcc.h43 const void * usr,
166 const void * usr,
174 const void * usr,

Completed in 141 milliseconds

12