Lines Matching refs:ALOGD

70     ALOGD("float %s %f, 0x%08x", s, f, *((int *) (&f)));
73 ALOGD("float x2 %s {%f, %f}", s, f1, f2);
76 ALOGD("float x3 %s {%f, %f, %f}", s, f1, f2, f3);
79 ALOGD("float x4 %s {%f, %f, %f, %f}", s, f1, f2, f3, f4);
82 ALOGD("float2 %s {%f, %f}", s, f->x, f->y);
85 ALOGD("float3 %s {%f, %f, %f}", s, f->x, f->y, f->z);
88 ALOGD("float4 %s {%f, %f, %f, %f}", s, f->x, f->y, f->z, f->w);
91 ALOGD("double %s %f, 0x%08llx", s, d, *((long long *) (&d)));
94 ALOGD("double2 %s {%f, %f}", s, f->x, f->y);
97 ALOGD("double3 %s {%f, %f, %f}", s, f->x, f->y, f->z);
100 ALOGD("double4 %s {%f, %f, %f, %f}", s, f->x, f->y, f->z, f->w);
104 ALOGD("matrix4x4 %s {%f, %f, %f, %f", s, f[0], f[4], f[8], f[12]);
105 ALOGD(" %s %f, %f, %f, %f", s, f[1], f[5], f[9], f[13]);
106 ALOGD(" %s %f, %f, %f, %f", s, f[2], f[6], f[10], f[14]);
107 ALOGD(" %s %f, %f, %f, %f}", s, f[3], f[7], f[11], f[15]);
110 ALOGD("matrix3x3 %s {%f, %f, %f", s, f[0], f[3], f[6]);
111 ALOGD(" %s %f, %f, %f", s, f[1], f[4], f[7]);
112 ALOGD(" %s %f, %f, %f}",s, f[2], f[5], f[8]);
115 ALOGD("matrix2x2 %s {%f, %f", s, f[0], f[2]);
116 ALOGD(" %s %f, %f}",s, f[1], f[3]);
119 ALOGD("char %s %hhd 0x%hhx", s, c, (unsigned char)c);
122 ALOGD("char2 %s {%hhd, %hhd} 0x%hhx 0x%hhx", s, c->x, c->y, (unsigned char)c->x, (unsigned char)c->y);
125 ALOGD("char3 %s {%hhd, %hhd, %hhd} 0x%hhx 0x%hhx 0x%hhx", s, c->x, c->y, c->z, (unsigned char)c->x, (unsigned char)c->y, (unsigned char)c->z);
128 ALOGD("char4 %s {%hhd, %hhd, %hhd, %hhd} 0x%hhx 0x%hhx 0x%hhx 0x%hhx", s, c->x, c->y, c->z, c->w, (unsigned char)c->x, (unsigned char)c->y, (unsigned char)c->z, (unsigned char)c->w);
131 ALOGD("uchar %s %hhu 0x%hhx", s, c, c);
134 ALOGD("uchar2 %s {%hhu, %hhu} 0x%hhx 0x%hhx", s, c->x, c->y, c->x, c->y);
137 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);
140 ALOGD("uchar4 %s {%hhu, %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->w);
143 ALOGD("short %s %hd 0x%hx", s, c, c);
146 ALOGD("short2 %s {%hd, %hd} 0x%hx 0x%hx", s, c->x, c->y, c->x, c->y);
149 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);
152 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, c->y, c->z, c->w);
155 ALOGD("ushort %s %hu 0x%hx", s, c, c);
158 ALOGD("ushort2 %s {%hu, %hu} 0x%hx 0x%hx", s, c->x, c->y, c->x, c->y);
161 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);
164 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, c->y, c->z, c->w);
167 ALOGD("int %s %d 0x%x", s, i, i);
170 ALOGD("int2 %s {%d, %d} 0x%x 0x%x", s, i->x, i->y, i->x, i->y);
173 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);
176 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, i->w);
179 ALOGD("uint %s %u 0x%x", s, i, i);
182 ALOGD("uint2 %s {%u, %u} 0x%x 0x%x", s, i->x, i->y, i->x, i->y);
185 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);
188 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->z, i->w);
191 ALOGD("long %s %lld 0x%llx", s, ll, ll);
194 ALOGD("long2 %s {%lld, %lld} 0x%llx 0x%llx", s, ll->x, ll->y, ll->x, ll->y);
197 ALOGD("long3 %s {%lld, %lld, %lld} 0x%llx 0x%llx 0x%llx", s, ll->x, ll->y, ll->z, ll->x, ll->y, ll->z);
200 ALOGD("long4 %s {%lld, %lld, %lld, %lld} 0x%llx 0x%llx 0x%llx 0x%llx", s, ll->x, ll->y, ll->z, ll->w, ll->x, ll->y, ll->z, ll->w);
203 ALOGD("ulong %s %llu 0x%llx", s, ll, ll);
206 ALOGD("ulong2 %s {%llu, %llu} 0x%llx 0x%llx", s, ll->x, ll->y, ll->x, ll->y);
209 ALOGD("ulong3 %s {%llu, %llu, %llu} 0x%llx 0x%llx 0x%llx", s, ll->x, ll->y, ll->z, ll->x, ll->y, ll->z);
212 ALOGD("ulong4 %s {%llu, %llu, %llu, %llu} 0x%llx 0x%llx 0x%llx 0x%llx", s, ll->x, ll->y, ll->z, ll->w, ll->x, ll->y, ll->z, ll->w);
215 ALOGD("void * %s %p", s, p);