Searched refs:rsDebug (Results 1 - 8 of 8) sorted by relevance

/frameworks/rs/scriptc/
H A Drs_debug.rsh29 #define RS_DEBUG(a) rsDebug(#a, a)
30 #define RS_DEBUG_MARKER rsDebug(__FILE__, __LINE__)
33 * rsDebug: Log a message and values
41 rsDebug(const char* message, double a);
44 rsDebug(const char* message, int a);
47 rsDebug(const char* message, uint a);
50 rsDebug(const char* message, long a);
53 rsDebug(const char* message, ulong a);
57 rsDebug(const char* message, int2 a);
62 rsDebug(cons
[all...]
/frameworks/rs/api/
H A Drs_debug.spec23 #define RS_DEBUG(a) rsDebug(#a, a)
24 #define RS_DEBUG_MARKER rsDebug(__FILE__, __LINE__)
27 function: rsDebug
41 function: rsDebug
51 function: rsDebug
61 function: rsDebug
69 function: rsDebug
78 function: rsDebug
88 function: rsDebug
96 function: rsDebug
[all...]
/frameworks/rs/tests/cppbasic/
H A Dmono.rs33 rsDebug(#b " FAILED", 0); \
59 rsDebug("g_i", g_i);
60 rsDebug("g_f", g_f);
61 rsDebug("i", i);
62 rsDebug("f", f);
80 rsDebug("i ", i);
/frameworks/rs/tests/cppbasic-shared/
H A Dmono.rs33 rsDebug(#b " FAILED", 0); \
59 rsDebug("g_i", g_i);
60 rsDebug("g_f", g_f);
61 rsDebug("i", i);
62 rsDebug("f", f);
80 rsDebug("i ", i);
/frameworks/rs/driver/runtime/
H A Drs_core.c245 extern void __attribute__((overloadable)) rsDebug(const char *, const T *); \
246 void __attribute__((overloadable)) rsDebug(const char *txt, T val) { \
247 rsDebug(txt, &val); \
287 extern void __attribute__((overloadable)) rsDebug(const char *s, float f,
289 extern void __attribute__((overloadable)) rsDebug(const char *s, half h) { function
290 rsDebug(s, (float) h, *(ushort *) &h);
293 extern void __attribute__((overloadable)) rsDebug(const char *s,
296 extern void __attribute__((overloadable)) rsDebug(const char *s, half2 h2) { function
298 rsDebug(s, &f, (ushort2 *) &h2);
301 extern void __attribute__((overloadable)) rsDebug(cons
304 extern void __attribute__((overloadable)) rsDebug(const char *s, half3 h3) { function
312 extern void __attribute__((overloadable)) rsDebug(const char *s, half4 h4) { function
[all...]
H A Drs_allocation.c535 rsDebug("Invalid data_type", data_type);
543 rsDebug("Invalid vector_width", vector_width);
562 rsDebug("Invalid data_type for vector element", data_type);
575 rsDebug("Invalid data_type for pixel element", data_type);
586 rsDebug("Invalid data_kind for pixel element", data_type);
590 rsDebug("Bad data_type and data_kind combo", data_type, data_kind);
596 rsDebug("Bad data_type and data_kind combo", data_type, data_kind);
602 rsDebug("Bad data_type and data_kind combo", data_type, data_kind);
606 rsDebug("Bad data_type and data_kind combo", data_type, data_kind);
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp1093 void rsDebug(const char *s, float f) { function
1097 void rsDebug(const char *s, float f1, float f2) { function
1101 void rsDebug(const char *s, float f1, float f2, float f3) { function
1105 void rsDebug(const char *s, float f1, float f2, float f3, float f4) { function
1109 void rsDebug(const char *s, const float2 *f2) { function
1114 void rsDebug(const char *s, const float3 *f3) { function
1119 void rsDebug(const char *s, const float4 *f4) { function
1127 void rsDebug(const char *s, float f, ushort us) { function
1131 void rsDebug(const char *s, const float2 *f2, const ushort2 *us2) { function
1137 void rsDebug(cons function
1144 void rsDebug(const char *s, const float4 *f4, const ushort4 *us4) { function
1151 void rsDebug(const char *s, double d) { function
1155 void rsDebug(const char *s, const double2 *d2) { function
1160 void rsDebug(const char *s, const double3 *d3) { function
1165 void rsDebug(const char *s, const double4 *d4) { function
1170 void rsDebug(const char *s, const rs_matrix4x4 *m) { function
1178 void rsDebug(const char *s, const rs_matrix3x3 *m) { function
1185 void rsDebug(const char *s, const rs_matrix2x2 *m) { function
1191 void rsDebug(const char *s, char c) { function
1195 void rsDebug(const char *s, const char2 *c2) { function
1200 void rsDebug(const char *s, const char3 *c3) { function
1205 void rsDebug(const char *s, const char4 *c4) { function
1210 void rsDebug(const char *s, unsigned char c) { function
1214 void rsDebug(const char *s, const uchar2 *c2) { function
1219 void rsDebug(const char *s, const uchar3 *c3) { function
1224 void rsDebug(const char *s, const uchar4 *c4) { function
1229 void rsDebug(const char *s, short c) { function
1233 void rsDebug(const char *s, const short2 *c2) { function
1238 void rsDebug(const char *s, const short3 *c3) { function
1243 void rsDebug(const char *s, const short4 *c4) { function
1248 void rsDebug(const char *s, unsigned short c) { function
1252 void rsDebug(const char *s, const ushort2 *c2) { function
1257 void rsDebug(const char *s, const ushort3 *c3) { function
1262 void rsDebug(const char *s, const ushort4 *c4) { function
1267 void rsDebug(const char *s, int i) { function
1271 void rsDebug(const char *s, const int2 *i2) { function
1276 void rsDebug(const char *s, const int3 *i3) { function
1281 void rsDebug(const char *s, const int4 *i4) { function
1286 void rsDebug(const char *s, unsigned int i) { function
1290 void rsDebug(const char *s, const uint2 *i2) { function
1295 void rsDebug(const char *s, const uint3 *i3) { function
1300 void rsDebug(const char *s, const uint4 *i4) { function
1315 void rsDebug(const char *s, long l) { function
1319 void rsDebug(const char *s, long long ll) { function
1323 void rsDebug(const char *s, const long2 *c) { function
1328 void rsDebug(const char *s, const long3 *c) { function
1333 void rsDebug(const char *s, const long4 *c) { function
1338 void rsDebug(const char *s, unsigned long l) { function
1343 void rsDebug(const char *s, unsigned long long ll) { function
1347 void rsDebug(const char *s, const ulong2 *c) { function
1352 void rsDebug(const char *s, const ulong3 *c) { function
1357 void rsDebug(const char *s, const ulong4 *c) { function
1375 void rsDebug(const char *s, const l2 *c) { function
1380 void rsDebug(const char *s, const l3 *c) { function
1385 void rsDebug(const char *s, const l4 *c) { function
1390 void rsDebug(const char *s, const ul2 *c) { function
1395 void rsDebug(const char *s, const ul3 *c) { function
1400 void rsDebug(const char *s, const ul4 *c) { function
1406 void rsDebug(const char *s, const long2 ll) { function
1410 void rsDebug(const char *s, const long3 ll) { function
1414 void rsDebug(const char *s, const long4 ll) { function
1418 void rsDebug(const char *s, const ulong2 ll) { function
1422 void rsDebug(const char *s, const ulong3 ll) { function
1426 void rsDebug(const char *s, const ulong4 ll) { function
1430 void rsDebug(const char *s, const void *p) { function
[all...]
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
H A Drasterize.rs77 // rsDebug("RRRRR >>>>>> setup_triangles ", w, h);
148 rsDebug("RRRRR >>>>>> getMinMax ", min_z, max_z);

Completed in 285 milliseconds