Searched refs:fi_type (Results 1 - 25 of 31) sorted by relevance

12

/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dmesa_private.h49 typedef union { float f; int i; unsigned u; } fi_type; typedef in typeref:union:__anoncbfd131b010a
H A Dmacros.h154 fi_type __tmp; \
167 fi_type __tmp; \
178 static fi_type UINT_AS_UNION(GLuint u)
180 fi_type tmp;
185 static inline fi_type INT_AS_UNION(GLint i)
187 fi_type tmp;
192 static inline fi_type FLOAT_AS_UNION(GLfloat f)
194 fi_type tmp;
638 COPY_CLEAN_4V_TYPE_AS_UNION(fi_type dst[4], int sz, const fi_type sr
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/vbo/
H A Dvbo_save.h42 fi_type buffer[VBO_ATTRIB_MAX * 4 * VBO_MAX_COPIED_VERTS];
69 fi_type *current_data;
143 fi_type *buffer_map;
180 fi_type *buffer_map; /**< Mapping of vertex_store's buffer */
181 fi_type *buffer_ptr; /**< cursor, points into buffer_map */
182 fi_type vertex[VBO_ATTRIB_MAX*4]; /* current values */
183 fi_type *attrptr[VBO_ATTRIB_MAX];
192 fi_type *current[VBO_ATTRIB_MAX]; /* points into ctx->ListState */
212 fi_type *
H A Dvbo_exec.h68 fi_type buffer[VBO_ATTRIB_MAX * 4 * VBO_MAX_COPIED_VERTS];
87 fi_type *buffer_map;
88 fi_type *buffer_ptr; /* cursor, points into buffer */
90 fi_type vertex[VBO_ATTRIB_MAX*4]; /* current vertex */
102 fi_type *attrptr[VBO_ATTRIB_MAX];
H A Dvbo_private.h133 static inline const fi_type *
141 return (fi_type *)default_float;
144 return (fi_type *)default_int;
H A Dvbo_save_draw.c46 GLbitfield mask, GLbitfield state, int shift, fi_type **data)
57 fi_type tmp[8];
71 memcpy((fi_type*)currval->Ptr, tmp, 4 * sizeof(GLfloat) * dmul);
93 fi_type *data = node->current_data;
H A Dvbo_exec_api.c153 numComponents * sizeof(fi_type));
178 fi_type tmp[8]; /* space for doubles */
249 const fi_type *current = (fi_type *) vbo->current[i].Ptr;
277 fi_type *old_attrptr[VBO_ATTRIB_MAX];
326 fi_type *tmp = exec->vtx.vertex;
354 fi_type *data = exec->vtx.copied.buffer;
355 fi_type *dest = exec->vtx.buffer_ptr;
371 fi_type tmp[4];
377 fi_type *curren
[all...]
H A Dvbo_exec_eval.c133 fi_type data[4];
180 fi_type data[4];
208 fi_type normal[4];
H A Dvbo_exec_draw.c83 fi_type *dst = exec->vtx.copied.buffer;
84 const fi_type *src = exec->vtx.buffer_map + last_prim->start * sz;
292 exec->vtx.buffer_map = (fi_type *)
320 (fi_type *)ctx->Driver.MapBufferRange(ctx,
H A Dvbo_save_api.c111 const fi_type * src_buffer)
117 const fi_type *src = src_buffer + prim->start * sz;
118 fi_type *dst = save->copied.buffer;
244 fi_type *
260 fi_type *range = (fi_type *)
390 const fi_type *src = save->buffer_map + prim->start * sz;
392 fi_type *dst = save->buffer_map + (prim->start + prim->count) * sz;
771 numComponents * sizeof(fi_type));
835 fi_type *tm
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/vbo/
H A Dvbo_save.h85 fi_type *current_data;
114 fi_type *buffer_in_ram;
133 fi_type *buffer);
H A Dvbo_private.h142 static inline const fi_type *
152 return (fi_type *)default_float;
155 return (fi_type *)default_int;
157 return (fi_type *)default_double;
159 return (fi_type *)default_uint64;
205 fi_type *dst,
206 const fi_type *src);
H A Dvbo.h80 fi_type buffer[VBO_ATTRIB_MAX * 4 * VBO_MAX_COPIED_VERTS];
120 fi_type *buffer_map;
121 fi_type *buffer_ptr; /* cursor, points into buffer */
124 fi_type vertex[VBO_ATTRIB_MAX*4]; /* current vertex */
140 fi_type *attrptr[VBO_ATTRIB_MAX];
170 fi_type vertex[VBO_ATTRIB_MAX*4]; /* current values */
171 fi_type *attrptr[VBO_ATTRIB_MAX];
174 fi_type *buffer;
178 fi_type *current[VBO_ATTRIB_MAX]; /* points into ctx->ListState */
H A Dvbo_exec_api.c164 numComponents * sizeof(fi_type));
190 fi_type tmp[8]; /* space for doubles */
263 fi_type *old_attrptr[VBO_ATTRIB_MAX];
319 fi_type *old_first = exec->vtx.attrptr[attr] + oldSize;
320 fi_type *new_first = exec->vtx.attrptr[attr] + newSize;
321 fi_type *old_last = exec->vtx.vertex + old_vtx_size_no_pos - 1;
322 fi_type *new_last = exec->vtx.vertex + exec->vtx.vertex_size_no_pos - 1;
328 fi_type *old_end = old_last + 1;
329 fi_type *old = old_first;
330 fi_type *ne
[all...]
H A Dvbo_save_draw.c48 int shift, fi_type **data, bool *color0_changed)
60 fi_type tmp[8];
72 memcpy((fi_type*)currval->Ptr, tmp, 4 * sizeof(GLfloat) << dmul_shift);
105 fi_type *data = node->cold->current_data;
H A Dvbo_save_api.c159 const fi_type * src_buffer)
168 const fi_type *src = src_buffer + prim->start * sz;
170 save->copied.buffer = malloc(sizeof(fi_type) * sz * prim->count);
268 const fi_type *src = save->vertex_store->buffer_in_ram + prim->start * sz;
270 fi_type *dst = save->vertex_store->buffer_in_ram + (prim->start + prim->count) * sz;
435 fi_type *vertex_attributes;
468 uint32_t index, fi_type *new_buffer, uint32_t *max_index)
474 fi_type *vert = save->vertex_store->buffer_in_ram + save->vertex_size * index;
495 save->vertex_size * sizeof(fi_type));
616 fi_type *temp_vertices_buffe
[all...]
H A Dvbo_exec.c267 fi_type *dst,
268 const fi_type *src)
H A Dvbo_exec_draw.c72 fi_type *dst = exec->vtx.copied.buffer;
75 const fi_type *src = exec->vtx.buffer_map + start * sz;
229 exec->vtx.buffer_map = (fi_type *)
261 (fi_type *)ctx->Driver.MapBufferRange(ctx,
H A Dvbo_exec_eval.c135 fi_type data[4];
183 fi_type data[4];
211 fi_type normal[4];
/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Dhalf_float.c33 typedef union { float f; int32_t i; uint32_t u; } fi_type; typedef in typeref:union:__anon049d20d7010a
56 const fi_type fi = {val};
142 fi_type fi;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dimports.h81 typedef union { GLfloat f; GLint i; GLuint u; } fi_type; typedef in typeref:union:__anon12314936010a
109 fi_type num;
199 fi_type u;
H A Dmacros.h152 fi_type __tmp; \
165 fi_type __tmp; \
176 static fi_type UINT_AS_UNION(GLuint u)
178 fi_type tmp;
183 static inline fi_type INT_AS_UNION(GLint i)
185 fi_type tmp;
190 static inline fi_type FLOAT_AS_UNION(GLfloat f)
192 fi_type tmp;
609 COPY_CLEAN_4V_TYPE_AS_UNION(fi_type dst[4], int sz, const fi_type sr
[all...]
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dhalf_float.c36 typedef union { float f; int32_t i; uint32_t u; } fi_type; typedef in typeref:union:__anona79de38a010a
59 const fi_type fi = {val};
H A Dsoftfloat.c71 typedef union { float f; int32_t i; uint32_t u; } fi_type; typedef in typeref:union:__anon2b8ed36c020a
177 fi_type result;
1202 const fi_type a_fi = {a};
1206 const fi_type b_fi = {b};
1210 const fi_type c_fi = {c};
1233 fi_type result;
1241 fi_type result;
1248 fi_type result;
1265 fi_type result;
1273 fi_type resul
[all...]
/xsrc/external/mit/mesa-demos/dist/src/trivial/
H A Dvp-array-hf.c11 typedef union { GLfloat f; GLint i; } fi_type; typedef in typeref:union:__anon01ad8772010a
21 const fi_type fi = {val};

Completed in 20 milliseconds

12