HomeSort by: relevance | last modified time | path
    Searched refs:con (Results 1 - 25 of 218) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /xsrc/external/mit/mesa-demos/dist/src/rbug/
simple_client.c 35 struct rbug_connection *con = rbug_from_socket(c); local
41 assert(con);
45 rbug_send_texture_list(con, NULL);
48 header = rbug_get_message(con, NULL);
57 rbug_disconnect(con);
simple_server.c 36 struct rbug_connection *con = rbug_from_socket(c); local
45 assert(con);
49 header = rbug_get_message(con, &serial);
54 rbug_send_texture_list_reply(con, serial, texs, 2, NULL);
55 rbug_disconnect(con);
shdr_info.c 33 static void shader_info(struct rbug_connection *con, rbug_context_t ctx)
40 rbug_send_shader_list(con, ctx, NULL);
42 header = rbug_get_message(con, NULL);
48 rbug_send_shader_info(con, ctx, list->shaders[i], NULL);
50 header = rbug_get_message(con, NULL);
68 struct rbug_connection *con = rbug_from_socket(c); local
74 assert(con);
78 rbug_send_context_list(con, NULL);
81 header = rbug_get_message(con, NULL);
87 shader_info(con, list->contexts[i])
    [all...]
ctx_info.c 36 struct rbug_connection *con = rbug_from_socket(c); local
43 assert(con);
47 rbug_send_context_list(con, NULL);
50 header = rbug_get_message(con, NULL);
57 rbug_send_contexts_info(con, list->contexts[i], NULL);
59 header = rbug_get_message(con, NULL);
73 rbug_disconnect(con);
ctx_rule.c 38 struct rbug_connection *con; local
44 con = rbug_from_socket(c);
46 assert(con);
49 rbug_send_context_draw_rule(con, ctx, 0, shdr, 0, 0, RBUG_BLOCK_AFTER, NULL);
51 rbug_send_ping(con, NULL);
54 header = rbug_get_message(con, NULL);
62 rbug_disconnect(con);
shdr_disable.c 38 struct rbug_connection *con = rbug_from_socket(c); local
42 assert(con);
45 rbug_send_shader_disable(con, ctx, shdr, true, NULL);
47 rbug_send_ping(con, NULL);
50 header = rbug_get_message(con, NULL);
58 rbug_disconnect(con);
shdr_dump.c 35 static void shader_info(struct rbug_connection *con, rbug_context_t ctx)
43 rbug_send_shader_list(con, ctx, NULL);
46 header = rbug_get_message(con, NULL);
52 rbug_send_shader_info(con, ctx, list->shaders[i], NULL);
54 header = rbug_get_message(con, NULL);
85 struct rbug_connection *con = rbug_from_socket(c); local
91 assert(con);
95 rbug_send_context_list(con, NULL);
98 header = rbug_get_message(con, NULL);
104 shader_info(con, list->contexts[i])
    [all...]
tex_info.c 37 struct rbug_connection *con = rbug_from_socket(c); local
44 assert(con);
48 rbug_send_texture_list(con, NULL);
51 header = rbug_get_message(con, NULL);
57 rbug_send_texture_info(con, list->textures[i], NULL);
59 header = rbug_get_message(con, NULL);
72 rbug_disconnect(con);
tex_dump.c 75 struct rbug_connection *con = rbug_from_socket(c); local
84 assert(con);
88 rbug_send_texture_list(con, NULL);
91 header = rbug_get_message(con, NULL);
97 rbug_send_texture_info(con, list->textures[i], NULL);
99 header = rbug_get_message(con, NULL);
104 rbug_send_texture_read(con, list->textures[i],
109 header2 = rbug_get_message(con, NULL);
122 rbug_disconnect(con);
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
lower_const_arrays_to_uniforms.cpp 84 ir_constant *con = (*rvalue)->as_constant();
85 if (!con || !con->type->is_array())
88 void *mem_ctx = ralloc_parent(con);
102 new(mem_ctx) ir_variable(con->type, uniform_name, ir_var_uniform);
103 uni->constant_initializer = con;
104 uni->constant_value = con;
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
lower_const_arrays_to_uniforms.cpp 87 ir_constant *con = (*rvalue)->as_constant();
88 if (!con || !con->type->is_array())
92 unsigned component_slots = con->type->component_slots();
100 void *mem_ctx = ralloc_parent(con);
114 new(mem_ctx) ir_variable(con->type, uniform_name, ir_var_uniform);
115 uni->constant_initializer = con;
116 uni->constant_value = con;
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/rbug/
rbug_internal.h 39 int rbug_connection_send_start(struct rbug_connection *con, enum rbug_opcode opcode, uint32_t length);
40 int rbug_connection_write(struct rbug_connection *con, void *data, uint32_t size);
41 int rbug_connection_send_finish(struct rbug_connection *con, uint32_t *c);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/rbug/
rbug_internal.h 39 int rbug_connection_send_start(struct rbug_connection *con, enum rbug_opcode opcode, uint32_t length);
40 int rbug_connection_write(struct rbug_connection *con, void *data, uint32_t size);
41 int rbug_connection_send_finish(struct rbug_connection *con, uint32_t *c);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
lp_test_blend.c 49 const void *dst, const void *con, void *res);
157 LLVMValueRef con; local
178 con = LLVMBuildLoad(builder, const_ptr, "const");
181 src1, NULL, dst, NULL, con, NULL, swizzle, 4);
202 const double *con,
240 term[0] = factor[0] * con[0]; /* R */
241 term[1] = factor[1] * con[1]; /* G */
242 term[2] = factor[2] * con[2]; /* B */
245 term[0] = factor[0] * con[3]; /* R */
246 term[1] = factor[1] * con[3]; /* G *
468 uint8_t *src, *src1, *dst, *con, *res, *ref; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
lp_test_blend.c 49 const void *dst, const void *con, void *res);
157 LLVMValueRef con; local
178 con = LLVMBuildLoad(builder, const_ptr, "const");
181 src1, NULL, dst, NULL, con, NULL, swizzle, 4);
202 const double *con,
240 term[0] = factor[0] * con[0]; /* R */
241 term[1] = factor[1] * con[1]; /* G */
242 term[2] = factor[2] * con[2]; /* B */
245 term[0] = factor[0] * con[3]; /* R */
246 term[1] = factor[1] * con[3]; /* G *
468 uint8_t *src, *src1, *dst, *con, *res, *ref; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/driver_rbug/
rbug_core.c 53 struct rbug_connection *con; member in struct:rbug_rbug
191 rbug_send_texture_list_reply(tr_rbug->con, serial, texs, i, NULL);
223 rbug_send_texture_info_reply(tr_rbug->con, serial,
275 rbug_send_texture_read_reply(tr_rbug->con, serial,
310 rbug_send_context_list_reply(tr_rbug->con, serial, ctxs, i, NULL);
346 rbug_send_context_info_reply(tr_rbug->con, serial,
539 rbug_send_shader_list_reply(tr_rbug->con, serial, shdrs, i, NULL);
584 rbug_send_shader_info_reply(tr_rbug->con, serial,
722 rbug_send_ping_reply(tr_rbug->con, serial, NULL);
774 rbug_send_error_reply(tr_rbug->con, serial, ret, NULL)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/driver_rbug/
rbug_core.c 56 struct rbug_connection *con; member in struct:rbug_rbug
194 rbug_send_texture_list_reply(tr_rbug->con, serial, texs, i, NULL);
226 rbug_send_texture_info_reply(tr_rbug->con, serial,
278 rbug_send_texture_read_reply(tr_rbug->con, serial,
313 rbug_send_context_list_reply(tr_rbug->con, serial, ctxs, i, NULL);
349 rbug_send_context_info_reply(tr_rbug->con, serial,
542 rbug_send_shader_list_reply(tr_rbug->con, serial, shdrs, i, NULL);
586 rbug_send_shader_info_reply(tr_rbug->con, serial,
723 rbug_send_ping_reply(tr_rbug->con, serial, NULL);
775 rbug_send_error_reply(tr_rbug->con, serial, ret, NULL)
    [all...]
  /xsrc/external/mit/libdrm/dist/tests/exynos/
exynos_fimg2d_test.c 728 struct connector con; local
734 memset(&con, 0, sizeof(struct connector));
744 con.crtc = -1;
746 &con.id,
747 con.mode_str) != 2 &&
749 &con.id,
750 &con.crtc,
751 con.mode_str) != 3)
780 connector_find_mode(dev->fd, &con, resources);
783 if (!con.mode)
    [all...]
  /xsrc/external/mit/libdrm/dist/tests/modetest/
modetest.c 1505 static int pipe_attempt_connector(struct device *dev, drmModeConnector *con,
1515 sprintf(con_str, "%d", con->connector_id);
1525 pipe->con_ids[0] = con->connector_id;
1535 pipe->mode = &con->modes[0];
1537 for (i = 0; i < con->count_modes; i++) {
1538 drmModeModeInfo *current_mode = &con->modes[i];
1562 drmModeConnector *con = NULL; local
1566 con = res->connectors[i].connector;
1567 if (!con || con->connection != DRM_MODE_CONNECTED |
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/imgui/
imstb_truetype.h 3757 static void stbrp_init_target(stbrp_context *con, int pw, int ph, stbrp_node *nodes, int num_nodes)
3759 con->width = pw;
3760 con->height = ph;
3761 con->x = 0;
3762 con->y = 0;
3763 con->bottom_y = 0;
3768 static void stbrp_pack_rects(stbrp_context *con, stbrp_rect *rects, int num_rects)
3772 if (con->x + rects[i].w > con->width) {
3773 con->x = 0
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/imgui/
imstb_truetype.h 3757 static void stbrp_init_target(stbrp_context *con, int pw, int ph, stbrp_node *nodes, int num_nodes)
3759 con->width = pw;
3760 con->height = ph;
3761 con->x = 0;
3762 con->y = 0;
3763 con->bottom_y = 0;
3768 static void stbrp_pack_rects(stbrp_context *con, stbrp_rect *rects, int num_rects)
3772 if (con->x + rects[i].w > con->width) {
3773 con->x = 0
    [all...]
  /xsrc/external/mit/xf86-video-intel-old/dist/src/
i830_tv.c 1073 float con; local
1078 con = 3.0 * ((float) contrast / 255);
1079 c = float_to_fix_2_6(con);
1082 con = 2.65625 * ((float) contrast / 255);
1083 c = float_to_float_2_6(con);
  /xsrc/external/mit/xf86-video-sis/dist/src/
sis_driver.c 619 float con = c * nrm1 / 3.0; local
622 if(con != 0.0) {
624 if(con <= 0.0) {
626 k *= (l + con) / l;
630 k *= l / (l - con);
683 float invgamma = 0.0, bri = 0.0, con = 0.0; local
688 con = pSiS->NewGammaConR;
692 con = pSiS->NewGammaConG;
696 con = pSiS->NewGammaConB;
701 ramp[i][j] = calcgammaval(j, nramp, invgamma, bri, con);
    [all...]
  /xsrc/external/mit/encodings/dist/
configure 3923 --config | --confi | --conf | --con | --co | --c )
  /xsrc/external/mit/evieext/dist/
configure 5250 --config | --confi | --conf | --con | --co | --c )

Completed in 39 milliseconds

1 2 3 4 5 6 7 8 9