Lines Matching refs:s
66 static void SC_debugF(const char *s, float f) { in SC_debugF() argument
67 ALOGD("float %s %f, 0x%08x", s, f, *((int *) (&f))); in SC_debugF()
69 static void SC_debugFv2(const char *s, float f1, float f2) { in SC_debugFv2() argument
70 ALOGD("float x2 %s {%f, %f}", s, f1, f2); in SC_debugFv2()
72 static void SC_debugFv3(const char *s, float f1, float f2, float f3) { in SC_debugFv3() argument
73 ALOGD("float x3 %s {%f, %f, %f}", s, f1, f2, f3); in SC_debugFv3()
75 static void SC_debugFv4(const char *s, float f1, float f2, float f3, float f4) { in SC_debugFv4() argument
76 ALOGD("float x4 %s {%f, %f, %f, %f}", s, f1, f2, f3, f4); in SC_debugFv4()
78 static void SC_debugF2(const char *s, const float2 *f) { in SC_debugF2() argument
79 ALOGD("float2 %s {%f, %f}", s, f->x, f->y); in SC_debugF2()
81 static void SC_debugF3(const char *s, const float3 *f) { in SC_debugF3() argument
82 ALOGD("float3 %s {%f, %f, %f}", s, f->x, f->y, f->z); in SC_debugF3()
84 static void SC_debugF4(const char *s, const float4 *f) { in SC_debugF4() argument
85 ALOGD("float4 %s {%f, %f, %f, %f}", s, f->x, f->y, f->z, f->w); in SC_debugF4()
87 static void SC_debugD(const char *s, double d) { in SC_debugD() argument
88 ALOGD("double %s %f, 0x%08llx", s, d, *((long long *) (&d))); in SC_debugD()
90 static void SC_debugFM4v4(const char *s, const float *f) { in SC_debugFM4v4() argument
91 ALOGD("matrix4x4 %s {%f, %f, %f, %f", s, f[0], f[4], f[8], f[12]); in SC_debugFM4v4()
92 ALOGD(" %s %f, %f, %f, %f", s, f[1], f[5], f[9], f[13]); in SC_debugFM4v4()
93 ALOGD(" %s %f, %f, %f, %f", s, f[2], f[6], f[10], f[14]); in SC_debugFM4v4()
94 ALOGD(" %s %f, %f, %f, %f}", s, f[3], f[7], f[11], f[15]); in SC_debugFM4v4()
96 static void SC_debugFM3v3(const char *s, const float *f) { in SC_debugFM3v3() argument
97 ALOGD("matrix3x3 %s {%f, %f, %f", s, f[0], f[3], f[6]); in SC_debugFM3v3()
98 ALOGD(" %s %f, %f, %f", s, f[1], f[4], f[7]); in SC_debugFM3v3()
99 ALOGD(" %s %f, %f, %f}",s, f[2], f[5], f[8]); in SC_debugFM3v3()
101 static void SC_debugFM2v2(const char *s, const float *f) { in SC_debugFM2v2() argument
102 ALOGD("matrix2x2 %s {%f, %f", s, f[0], f[2]); in SC_debugFM2v2()
103 ALOGD(" %s %f, %f}",s, f[1], f[3]); in SC_debugFM2v2()
105 static void SC_debugI8(const char *s, char c) { in SC_debugI8() argument
106 ALOGD("char %s %hhd 0x%hhx", s, c, (unsigned char)c); in SC_debugI8()
108 static void SC_debugC2(const char *s, const char2 *c) { in SC_debugC2() argument
109 …ALOGD("char2 %s {%hhd, %hhd} 0x%hhx 0x%hhx", s, c->x, c->y, (unsigned char)c->x, (unsigned char)c… in SC_debugC2()
111 static void SC_debugC3(const char *s, const char3 *c) { in SC_debugC3() argument
112 …ALOGD("char3 %s {%hhd, %hhd, %hhd} 0x%hhx 0x%hhx 0x%hhx", s, c->x, c->y, c->z, (unsigned char)c->… in SC_debugC3()
114 static void SC_debugC4(const char *s, const char4 *c) { in SC_debugC4() argument
115 …ALOGD("char4 %s {%hhd, %hhd, %hhd, %hhd} 0x%hhx 0x%hhx 0x%hhx 0x%hhx", s, c->x, c->y, c->z, c->w,… in SC_debugC4()
117 static void SC_debugU8(const char *s, unsigned char c) { in SC_debugU8() argument
118 ALOGD("uchar %s %hhu 0x%hhx", s, c, c); in SC_debugU8()
120 static void SC_debugUC2(const char *s, const uchar2 *c) { in SC_debugUC2() argument
121 ALOGD("uchar2 %s {%hhu, %hhu} 0x%hhx 0x%hhx", s, c->x, c->y, c->x, c->y); in SC_debugUC2()
123 static void SC_debugUC3(const char *s, const uchar3 *c) { in SC_debugUC3() argument
124 …ALOGD("uchar3 %s {%hhu, %hhu, %hhu} 0x%hhx 0x%hhx 0x%hhx", s, c->x, c->y, c->z, c->x, c->y, c->z); in SC_debugUC3()
126 static void SC_debugUC4(const char *s, const uchar4 *c) { in SC_debugUC4() argument
127 …ALOGD("uchar4 %s {%hhu, %hhu, %hhu, %hhu} 0x%hhx 0x%hhx 0x%hhx 0x%hhx", s, c->x, c->y, c->z, c->w… in SC_debugUC4()
129 static void SC_debugI16(const char *s, short c) { in SC_debugI16() argument
130 ALOGD("short %s %hd 0x%hx", s, c, c); in SC_debugI16()
132 static void SC_debugS2(const char *s, const short2 *c) { in SC_debugS2() argument
133 ALOGD("short2 %s {%hd, %hd} 0x%hx 0x%hx", s, c->x, c->y, c->x, c->y); in SC_debugS2()
135 static void SC_debugS3(const char *s, const short3 *c) { in SC_debugS3() argument
136 ALOGD("short3 %s {%hd, %hd, %hd} 0x%hx 0x%hx 0x%hx", s, c->x, c->y, c->z, c->x, c->y, c->z); in SC_debugS3()
138 static void SC_debugS4(const char *s, const short4 *c) { in SC_debugS4() argument
139 …ALOGD("short4 %s {%hd, %hd, %hd, %hd} 0x%hx 0x%hx 0x%hx 0x%hx", s, c->x, c->y, c->z, c->w, c->x, … in SC_debugS4()
141 static void SC_debugU16(const char *s, unsigned short c) { in SC_debugU16() argument
142 ALOGD("ushort %s %hu 0x%hx", s, c, c); in SC_debugU16()
144 static void SC_debugUS2(const char *s, const ushort2 *c) { in SC_debugUS2() argument
145 ALOGD("ushort2 %s {%hu, %hu} 0x%hx 0x%hx", s, c->x, c->y, c->x, c->y); in SC_debugUS2()
147 static void SC_debugUS3(const char *s, const ushort3 *c) { in SC_debugUS3() argument
148 ALOGD("ushort3 %s {%hu, %hu, %hu} 0x%hx 0x%hx 0x%hx", s, c->x, c->y, c->z, c->x, c->y, c->z); in SC_debugUS3()
150 static void SC_debugUS4(const char *s, const ushort4 *c) { in SC_debugUS4() argument
151 …ALOGD("ushort4 %s {%hu, %hu, %hu, %hu} 0x%hx 0x%hx 0x%hx 0x%hx", s, c->x, c->y, c->z, c->w, c->x,… in SC_debugUS4()
153 static void SC_debugI32(const char *s, int32_t i) { in SC_debugI32() argument
154 ALOGD("int %s %d 0x%x", s, i, i); in SC_debugI32()
156 static void SC_debugI2(const char *s, const int2 *i) { in SC_debugI2() argument
157 ALOGD("int2 %s {%d, %d} 0x%x 0x%x", s, i->x, i->y, i->x, i->y); in SC_debugI2()
159 static void SC_debugI3(const char *s, const int3 *i) { in SC_debugI3() argument
160 ALOGD("int3 %s {%d, %d, %d} 0x%x 0x%x 0x%x", s, i->x, i->y, i->z, i->x, i->y, i->z); in SC_debugI3()
162 static void SC_debugI4(const char *s, const int4 *i) { in SC_debugI4() argument
163 …ALOGD("int4 %s {%d, %d, %d, %d} 0x%x 0x%x 0x%x 0x%x", s, i->x, i->y, i->z, i->w, i->x, i->y, i->z… in SC_debugI4()
165 static void SC_debugU32(const char *s, uint32_t i) { in SC_debugU32() argument
166 ALOGD("uint %s %u 0x%x", s, i, i); in SC_debugU32()
168 static void SC_debugUI2(const char *s, const uint2 *i) { in SC_debugUI2() argument
169 ALOGD("uint2 %s {%u, %u} 0x%x 0x%x", s, i->x, i->y, i->x, i->y); in SC_debugUI2()
171 static void SC_debugUI3(const char *s, const uint3 *i) { in SC_debugUI3() argument
172 ALOGD("uint3 %s {%u, %u, %u} 0x%x 0x%x 0x%x", s, i->x, i->y, i->z, i->x, i->y, i->z); in SC_debugUI3()
174 static void SC_debugUI4(const char *s, const uint4 *i) { in SC_debugUI4() argument
175 …ALOGD("uint4 %s {%u, %u, %u, %u} 0x%x 0x%x 0x%x 0x%x", s, i->x, i->y, i->z, i->w, i->x, i->y, i->… in SC_debugUI4()
177 static void SC_debugLL64(const char *s, long long ll) { in SC_debugLL64() argument
178 ALOGD("long %s %lld 0x%llx", s, ll, ll); in SC_debugLL64()
180 static void SC_debugL2(const char *s, const long2 *ll) { in SC_debugL2() argument
181 ALOGD("long2 %s {%lld, %lld} 0x%llx 0x%llx", s, ll->x, ll->y, ll->x, ll->y); in SC_debugL2()
183 static void SC_debugL3(const char *s, const long3 *ll) { in SC_debugL3() argument
184 …ALOGD("long3 %s {%lld, %lld, %lld} 0x%llx 0x%llx 0x%llx", s, ll->x, ll->y, ll->z, ll->x, ll->y, l… in SC_debugL3()
186 static void SC_debugL4(const char *s, const long4 *ll) { in SC_debugL4() argument
187 …ALOGD("long4 %s {%lld, %lld, %lld, %lld} 0x%llx 0x%llx 0x%llx 0x%llx", s, ll->x, ll->y, ll->z, ll… in SC_debugL4()
189 static void SC_debugULL64(const char *s, unsigned long long ll) { in SC_debugULL64() argument
190 ALOGD("ulong %s %llu 0x%llx", s, ll, ll); in SC_debugULL64()
192 static void SC_debugUL2(const char *s, const ulong2 *ll) { in SC_debugUL2() argument
193 ALOGD("ulong2 %s {%llu, %llu} 0x%llx 0x%llx", s, ll->x, ll->y, ll->x, ll->y); in SC_debugUL2()
195 static void SC_debugUL3(const char *s, const ulong3 *ll) { in SC_debugUL3() argument
196 …ALOGD("ulong3 %s {%llu, %llu, %llu} 0x%llx 0x%llx 0x%llx", s, ll->x, ll->y, ll->z, ll->x, ll->y, … in SC_debugUL3()
198 static void SC_debugUL4(const char *s, const ulong4 *ll) { in SC_debugUL4() argument
199 …ALOGD("ulong4 %s {%llu, %llu, %llu, %llu} 0x%llx 0x%llx 0x%llx 0x%llx", s, ll->x, ll->y, ll->z, l… in SC_debugUL4()
201 static void SC_debugP(const char *s, const void *p) { in SC_debugP() argument
202 ALOGD("void * %s %p", s, p); in SC_debugP()
293 RsdCpuScriptImpl *s = (RsdCpuScriptImpl *)pContext; in lookupRuntimeStub() local
297 sym = s->mCtx->symLookup(name); in lookupRuntimeStub()
299 sym = s->lookupSymbolMath(name); in lookupRuntimeStub()
311 s->mIsThreadable &= sym->threadable; in lookupRuntimeStub()