Searched refs:q2 (Results 1 - 16 of 16) sorted by relevance

/xsrc/external/mit/mesa-demos/dist/src/util/
H A Dtrackball.h66 add_quats(const float q1[4], const float q2[4], float dest[4]);
H A Dtrackball.c244 * NOTE: This routine is written so that q1 or q2 may be the same
251 add_quats(const float q1[4], const float q2[4], float dest[4]) argument
259 printf("q2 = %f %f %f %f\n", q2[0], q2[1], q2[2], q2[3]);
263 vscale(t1,q2[3]);
265 vcopy(q2,t2);
268 vcross(q2,q
[all...]
/xsrc/external/mit/freetype/dist/src/base/
H A Dftbbox.c268 FT_Pos q2,
282 /* It is called with either q2 or q3 positive, which is necessary */
286 FT_ABS( q2 ) |
297 q2 *= 1 << shift;
304 q2 >>= -shift;
311 while ( q2 > 0 || q3 > 0 )
314 if ( q1 + q2 > q3 + q4 ) /* first half */
317 q3 = q3 + q2;
318 q2 = q2
267 cubic_peak(FT_Pos q1,FT_Pos q2,FT_Pos q3,FT_Pos q4) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/tests/graw/
H A Docclusion-query.c160 struct pipe_query *q1, *q2; local in function:draw
173 q2 = info.ctx->create_query(info.ctx, PIPE_QUERY_OCCLUSION_COUNTER, 0);
183 info.ctx->begin_query(info.ctx, q2);
185 info.ctx->end_query(info.ctx, q2);
188 info.ctx->get_query_result(info.ctx, q2, TRUE, &res2);
201 info.ctx->destroy_query(info.ctx, q2);
/xsrc/external/mit/MesaLib/dist/src/gallium/tests/graw/
H A Docclusion-query.c161 struct pipe_query *q1, *q2; local in function:draw
175 q2 = info.ctx->create_query(info.ctx, PIPE_QUERY_OCCLUSION_COUNTER, 0);
185 info.ctx->begin_query(info.ctx, q2);
187 info.ctx->end_query(info.ctx, q2);
190 info.ctx->get_query_result(info.ctx, q2, TRUE, &res2);
203 info.ctx->destroy_query(info.ctx, q2);
/xsrc/external/mit/pixman/dist/pixman/
H A Dpixman-arm-neon-asm.S160 vshrn.u16 d6, q2, #8
161 vshrn.u16 d7, q2, #3
162 vsli.u16 q2, q2, #5
166 vshrn.u16 d30, q2, #2
260 vshrn.u16 d6, q2, #8
262 vshrn.u16 d7, q2, #3
263 vsli.u16 q2, q2, #5
273 vshrn.u16 d30, q2, #
[all...]
H A Dpixman-arm-neon-asm-bilinear.S502 bilinear_store_\()\dst_fmt 1, q2, q3
531 bilinear_store_\()\dst_fmt 2, q2, q3
547 vshll.u16 q2, d6, #BILINEAR_INTERPOLATION_BITS
548 vmlsl.u16 q2, d6, d30
549 vmlal.u16 q2, d7, d30
559 vshrn.u32 d4, q2, #(2 * BILINEAR_INTERPOLATION_BITS)
564 vmovn.u16 d1, q2
575 bilinear_store_\()\dst_fmt 4, q2, q3
936 vshll.u16 q2, d20, #BILINEAR_INTERPOLATION_BITS
937 vmlsl.u16 q2, d2
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl_dd/
H A Dt_dd_vertex.h67 GLfloat u2, v2, q2; member in struct:__anonae827850040a::__anonae8278500608
/xsrc/external/mit/MesaLib/dist/src/mesa/tnl_dd/
H A Dt_dd_vertex.h67 GLfloat u2, v2, q2; member in struct:__anon12283e03040a::__anon12283e030608
/xsrc/external/mit/freetype/dist/src/pfr/
H A Dpfrload.c886 FT_Byte* q2; local in function:pfr_phy_font_load
904 q2 = q + length - 2;
919 if ( q + 32 > q2 )
941 q = q2;
/xsrc/external/mit/MesaLib/dist/src/asahi/compiler/
H A Dagx_pack.c527 unsigned q2 = 0; // XXX local in function:agx_pack_instr
558 (q2 << 30) |
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dtexcompress_astc.cpp187 uint8_t q2, q1, q0; local in function:unpack_quint_block
189 q2 = CAT_BITS_3(Q0, Q4 & ~Q0, Q3 & ~Q0);
194 q2 = 4;
197 q2 = CAT_BITS_2(Q6, Q5);
210 out[2] = (q2 << n) | m2;
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dtexcompress_astc.cpp188 uint8_t q2, q1, q0; local in function:unpack_quint_block
190 q2 = CAT_BITS_3(Q0, Q4 & ~Q0, Q3 & ~Q0);
195 q2 = 4;
198 q2 = CAT_BITS_2(Q6, Q5);
211 out[2] = (q2 << n) | m2;
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimstb_truetype.h4228 static int stbtt__ray_intersect_bezier(float orig[2], float ray[2], float q0[2], float q1[2], float q2[2], float hits[2][2]) argument
4232 float q2perp = q2[1]*ray[0] - q2[0]*ray[1];
4272 float q2d = q2[0]*rayn_x + q2[1]*rayn_y;
4333 float q0[2],q1[2],q2[2]; local in function:stbtt__compute_crossings_x
4339 q2[0] = (float)x2;
4340 q2[1] = (float)y2;
4341 if (equal(q0,q1) || equal(q1,q2)) {
4352 int num_hits = stbtt__ray_intersect_bezier(orig, ray, q0, q1, q2, hit
[all...]
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimstb_truetype.h4228 static int stbtt__ray_intersect_bezier(float orig[2], float ray[2], float q0[2], float q1[2], float q2[2], float hits[2][2]) argument
4232 float q2perp = q2[1]*ray[0] - q2[0]*ray[1];
4272 float q2d = q2[0]*rayn_x + q2[1]*rayn_y;
4333 float q0[2],q1[2],q2[2]; local in function:stbtt__compute_crossings_x
4339 q2[0] = (float)x2;
4340 q2[1] = (float)y2;
4341 if (equal(q0,q1) || equal(q1,q2)) {
4352 int num_hits = stbtt__ray_intersect_bezier(orig, ray, q0, q1, q2, hit
[all...]
/xsrc/external/mit/MesaLib/dist/src/intel/perf/
H A Dintel_perf.c1251 const struct intel_perf_query_info *q2 = v2; local in function:intel_perf_compare_query_names
1253 return strcmp(q1->name, q2->name);

Completed in 33 milliseconds