Lines Matching refs:c
109 static void SC_debugI8(const char *s, char c) { in SC_debugI8() argument
110 ALOGD("char %s %hhd 0x%hhx", s, c, (unsigned char)c); in SC_debugI8()
112 static void SC_debugC2(const char *s, const char2 *c) { in SC_debugC2() argument
113 …ALOGD("char2 %s {%hhd, %hhd} 0x%hhx 0x%hhx", s, c->x, c->y, (unsigned char)c->x, (unsigned char)c… in SC_debugC2()
115 static void SC_debugC3(const char *s, const char3 *c) { in SC_debugC3() argument
116 …hhd, %hhd} 0x%hhx 0x%hhx 0x%hhx", s, c->x, c->y, c->z, (unsigned char)c->x, (unsigned char)c->y, … in SC_debugC3()
118 static void SC_debugC4(const char *s, const char4 *c) { in SC_debugC4() argument
119 …x%hhx 0x%hhx 0x%hhx", s, c->x, c->y, c->z, c->w, (unsigned char)c->x, (unsigned char)c->y, (unsign… in SC_debugC4()
121 static void SC_debugU8(const char *s, unsigned char c) { in SC_debugU8() argument
122 ALOGD("uchar %s %hhu 0x%hhx", s, c, c); in SC_debugU8()
124 static void SC_debugUC2(const char *s, const uchar2 *c) { in SC_debugUC2() argument
125 ALOGD("uchar2 %s {%hhu, %hhu} 0x%hhx 0x%hhx", s, c->x, c->y, c->x, c->y); in SC_debugUC2()
127 static void SC_debugUC3(const char *s, const uchar3 *c) { in SC_debugUC3() argument
128 …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()
130 static void SC_debugUC4(const char *s, const uchar4 *c) { in SC_debugUC4() argument
131 …u, %hhu, %hhu, %hhu} 0x%hhx 0x%hhx 0x%hhx 0x%hhx", s, c->x, c->y, c->z, c->w, c->x, c->y, c->z, c… in SC_debugUC4()
133 static void SC_debugI16(const char *s, short c) { in SC_debugI16() argument
134 ALOGD("short %s %hd 0x%hx", s, c, c); in SC_debugI16()
136 static void SC_debugS2(const char *s, const short2 *c) { in SC_debugS2() argument
137 ALOGD("short2 %s {%hd, %hd} 0x%hx 0x%hx", s, c->x, c->y, c->x, c->y); in SC_debugS2()
139 static void SC_debugS3(const char *s, const short3 *c) { in SC_debugS3() argument
140 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()
142 static void SC_debugS4(const char *s, const short4 *c) { in SC_debugS4() argument
143 … %s {%hd, %hd, %hd, %hd} 0x%hx 0x%hx 0x%hx 0x%hx", s, c->x, c->y, c->z, c->w, c->x, c->y, c->z, c… in SC_debugS4()
145 static void SC_debugU16(const char *s, unsigned short c) { in SC_debugU16() argument
146 ALOGD("ushort %s %hu 0x%hx", s, c, c); in SC_debugU16()
148 static void SC_debugUS2(const char *s, const ushort2 *c) { in SC_debugUS2() argument
149 ALOGD("ushort2 %s {%hu, %hu} 0x%hx 0x%hx", s, c->x, c->y, c->x, c->y); in SC_debugUS2()
151 static void SC_debugUS3(const char *s, const ushort3 *c) { in SC_debugUS3() argument
152 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()
154 static void SC_debugUS4(const char *s, const ushort4 *c) { in SC_debugUS4() argument
155 … %s {%hu, %hu, %hu, %hu} 0x%hx 0x%hx 0x%hx 0x%hx", s, c->x, c->y, c->z, c->w, c->x, c->y, c->z, c… in SC_debugUS4()