Home | History | Annotate | Download | only in radeon

Lines Matching defs:int32

196  *  int32
200 bof_t *int32 = bof_object();
202 if (int32 == NULL)
204 int32->type = BOF_TYPE_INT32;
205 int32->size = 4;
206 int32->value = calloc(1, int32->size);
207 if (int32->value == NULL) {
208 bof_decref(int32);
211 memcpy(int32->value, &value, 4);
212 int32->size += 12;
213 return int32;
244 fprintf(stderr, "%p int32 [%d %d]\n", bof, *(int*)bof->value, bof->size);