Searched refs:ctx (Results 451 - 475 of 4049) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_util.h53 CLAMP(!_mesa_is_multisample_enabled(&brw->ctx) && !brw->ctx.Line.SmoothFlag
54 ? roundf(brw->ctx.Line.Width) : brw->ctx.Line.Width,
55 0.0f, brw->ctx.Const.MaxLineWidth);
59 if (_mesa_is_multisample_enabled(&brw->ctx)) {
62 } else if (brw->ctx.Line.SmoothFlag && line_width < 1.5f) {
H A Dbrw_cc.c44 struct gl_context *ctx = &brw->ctx; local
56 if (ctx->Transform.DepthClamp) {
58 ccv[i].min_depth = MIN2(ctx->ViewportArray[i].Near,
59 ctx->ViewportArray[i].Far);
60 ccv[i].max_depth = MAX2(ctx->ViewportArray[i].Near,
61 ctx->ViewportArray[i].Far);
74 brw->ctx.NewDriverState |= BRW_NEW_CC_VP;
116 struct gl_context *ctx = &brw->ctx; local
264 struct gl_context *ctx = &brw->ctx; local
[all...]
H A Dgen8_viewport_state.c35 struct gl_context *ctx = &brw->ctx; local
43 struct gl_framebuffer *fb = ctx->DrawBuffer;
45 const uint32_t fb_width = _mesa_geometric_width(ctx->DrawBuffer);
46 const uint32_t fb_height = _mesa_geometric_height(ctx->DrawBuffer);
65 _mesa_get_viewport_xform(ctx, i, scale, translate);
88 float viewport_Xmax = ctx->ViewportArray[i].X + ctx->ViewportArray[i].Width;
89 float viewport_Ymax = ctx->ViewportArray[i].Y + ctx
[all...]
H A Dbrw_primitive_restart.c44 can_cut_index_handle_restart_index(struct gl_context *ctx, argument
50 if (ctx->Array.PrimitiveRestartFixedIndex)
57 cut_index_will_work = ctx->Array.RestartIndex == 0xff;
60 cut_index_will_work = ctx->Array.RestartIndex == 0xffff;
63 cut_index_will_work = ctx->Array.RestartIndex == 0xffffffff;
77 can_cut_index_handle_prims(struct gl_context *ctx, argument
82 struct brw_context *brw = brw_context(ctx);
88 if (!can_cut_index_handle_restart_index(ctx, ib)) {
129 brw_handle_primitive_restart(struct gl_context *ctx, argument
135 struct brw_context *brw = brw_context(ctx);
184 struct gl_context *ctx = &brw->ctx; local
[all...]
H A Dintel_pixel_copy.c47 do_blit_copypixels(struct gl_context * ctx, argument
52 struct brw_context *brw = brw_context(ctx);
53 struct gl_framebuffer *fb = ctx->DrawBuffer;
54 struct gl_framebuffer *read_fb = ctx->ReadBuffer;
63 _mesa_update_state(ctx);
108 if (ctx->_ImageTransferState) {
113 if (ctx->Depth.Test) {
118 if (ctx->Stencil._Enabled) {
123 if (ctx->Fog.Enabled ||
124 ctx
196 intelCopyPixels(struct gl_context * ctx, GLint srcx, GLint srcy, GLsizei width, GLsizei height, GLint destx, GLint desty, GLenum type) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_state.h43 extern void radeonInitStateFuncs( struct gl_context *ctx );
45 extern void radeonUpdateMaterial( struct gl_context *ctx );
47 extern void radeonUpdateWindow( struct gl_context *ctx );
48 extern void radeonUpdateDrawBuffer( struct gl_context *ctx );
52 extern GLboolean r100ValidateBuffers(struct gl_context *ctx);
53 extern GLboolean radeonValidateState( struct gl_context *ctx );
56 extern void radeonFallback( struct gl_context *ctx, GLuint bit, GLboolean mode );
/external/tensorflow/tensorflow/core/kernels/
H A Dtranspose_op.h26 explicit TransposeOp(OpKernelConstruction* ctx) : OpKernel(ctx) {} argument
28 void Compute(OpKernelContext* ctx) override;
31 virtual Status DoTranspose(OpKernelContext* ctx, const Tensor& in,
38 explicit TransposeCpuOp(OpKernelConstruction* ctx) : TransposeOp(ctx) {} argument
41 Status DoTranspose(OpKernelContext* ctx, const Tensor& in,
48 explicit MklTransposeCpuOp(OpKernelConstruction* ctx) : TransposeOp(ctx) {} argument
51 Status DoTranspose(OpKernelContext* ctx, cons
58 TransposeGpuOp(OpKernelConstruction* ctx) argument
68 TransposeSyclOp(OpKernelConstruction* ctx) argument
79 ConjugateTransposeCpuOp(OpKernelConstruction* ctx) argument
91 MklConjugateTransposeCpuOp(OpKernelConstruction* ctx) argument
103 ConjugateTransposeGpuOp(OpKernelConstruction* ctx) argument
115 ConjugateTransposeSyclOp(OpKernelConstruction* ctx) argument
[all...]
H A Dtyped_conditional_accumulator_base.h49 * ctx: Context in which the op is executed.
51 void TryApplyGrad(int64 local_step, OpKernelContext* ctx) override {
56 bool is_valid = GetAndValidateTensorInputForApplyGrad(ctx, &grad);
59 AddToAccumGradFunction(ctx, grad);
61 AllocateAndAssignToAccumGradFunction(ctx, grad);
75 OpKernelContext* ctx, GradientTensorType* grad) = 0;
77 virtual void AddToAccumGradFunction(OpKernelContext* ctx,
84 OpKernelContext* ctx, GradientTensorType** tensor)
/external/vboot_reference/firmware/lib/cryptolib/
H A Dsha1.c34 static void SHA1_Transform(SHA1_CTX* ctx) { argument
39 A = ctx->state[0];
40 B = ctx->state[1];
41 C = ctx->state[2];
42 D = ctx->state[3];
43 E = ctx->state[4];
47 (W[t] = bswap_32(ctx->buf.w[t])) + \
123 ctx->state[0] += A;
124 ctx->state[1] += B;
125 ctx
130 SHA1_update(SHA1_CTX* ctx, const uint8_t* data, uint64_t len) argument
154 SHA1_final(SHA1_CTX* ctx) argument
178 SHA1_transform(SHA1_CTX *ctx) argument
228 SHA1_update(SHA1_CTX *ctx, const uint8_t *data, uint64_t len) argument
242 SHA1_final(SHA1_CTX *ctx) argument
269 SHA1_init(SHA1_CTX* ctx) argument
281 SHA1_CTX ctx; local
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_draw.c46 draw_impl(struct fd_context *ctx, struct fd_ringbuffer *ring, argument
50 enum pc_di_primtype primtype = ctx->primtypes[info->mode];
52 fd4_emit_state(ctx, ring, emit);
66 if (ctx->rasterizer->point_size_per_vertex &&
71 fd4_draw_emit(ctx->batch, ring, primtype,
81 fixup_shader_state(struct fd_context *ctx, struct ir3_shader_key *key) argument
83 struct fd4_context *fd4_ctx = fd4_context(ctx);
92 ctx->dirty |= FD_SHADER_DIRTY_VP;
98 ctx->dirty |= FD_SHADER_DIRTY_FP;
102 ctx
124 fd4_draw_vbo(struct fd_context *ctx, const struct pipe_draw_info *info) argument
201 struct fd_context *ctx = fd_context(pctx); local
[all...]
/external/elfutils/libasm/
H A Dasm_newabssym.c55 asm_newabssym (AsmCtx_t *ctx, const char *name, GElf_Xword size, argument
60 if (ctx == NULL)
72 rwlock_wrlock (ctx->lock);
83 result->strent = ebl_strtabadd (ctx->symbol_strtab, name, 0);
91 if (unlikely (ctx->textp))
96 fprintf (ctx->out.file, "\t.globl %s\n", name);
98 fprintf (ctx->out.file, "\t.weak %s\n", name);
101 fprintf (ctx->out.file, "\t.type %s,@object\n", name);
103 fprintf (ctx->out.file, "\t.type %s,@function\n", name);
105 fprintf (ctx
[all...]
/external/vboot_reference/tests/
H A Dvb21_api_tests.c28 static struct vb2_context ctx; variable in typeref:struct:vb2_context
75 memset(&ctx, 0, sizeof(ctx));
76 ctx.workbuf = workbuf;
77 ctx.workbuf_size = sizeof(workbuf);
79 vb2_init_context(&ctx);
80 sd = vb2_get_sd(&ctx);
82 vb2_nv_init(&ctx);
84 vb2_secdata_create(&ctx);
85 vb2_secdata_init(&ctx);
127 vb2_load_fw_keyblock(struct vb2_context *ctx) argument
132 vb2_load_fw_preamble(struct vb2_context *ctx) argument
[all...]
H A Dvb21_misc_tests.c24 static struct vb2_context ctx; variable in typeref:struct:vb2_context
69 memset(&ctx, 0, sizeof(ctx));
70 ctx.workbuf = workbuf;
71 ctx.workbuf_size = sizeof(workbuf);
73 vb2_init_context(&ctx);
74 sd = vb2_get_sd(&ctx);
76 vb2_nv_init(&ctx);
78 vb2_secdata_create(&ctx);
79 vb2_secdata_init(&ctx);
122 vb2ex_read_resource(struct vb2_context *ctx, enum vb2_resource_index index, uint32_t offset, void *buf, uint32_t size) argument
[all...]
/external/mesa3d/src/gallium/tests/graw/
H A Dfs-fragcoord.c64 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
65 info.ctx->bind_vertex_elements_state(info.ctx, handle);
71 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
77 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
95 handle = graw_parse_vertex_shader(info.ctx, text);
96 info.ctx->bind_vs_state(info.ctx, handl
[all...]
H A Dfs-write-z.c90 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
91 info.ctx->bind_vertex_elements_state(info.ctx, handle);
97 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
103 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
121 handle = graw_parse_vertex_shader(info.ctx, text);
122 info.ctx->bind_vs_state(info.ctx, handl
[all...]
H A Dquad-tex.c53 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
54 info.ctx->bind_vertex_elements_state(info.ctx, handle);
60 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
66 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
82 handle = graw_parse_vertex_shader(info.ctx, text);
83 info.ctx->bind_vs_state(info.ctx, handl
[all...]
/external/mesa3d/src/mesa/main/
H A Dapi_validate.h39 _mesa_valid_to_render(struct gl_context *ctx, const char *where);
42 _mesa_is_valid_prim_mode(struct gl_context *ctx, GLenum mode);
45 _mesa_valid_prim_mode(struct gl_context *ctx, GLenum mode, const char *name);
49 _mesa_validate_DrawArrays(struct gl_context *ctx, GLenum mode, GLsizei count);
52 _mesa_validate_DrawElements(struct gl_context *ctx,
57 _mesa_validate_MultiDrawElements(struct gl_context *ctx,
63 _mesa_validate_DrawRangeElements(struct gl_context *ctx, GLenum mode,
70 _mesa_validate_DrawArraysInstanced(struct gl_context *ctx, GLenum mode, GLint first,
74 _mesa_validate_DrawElementsInstanced(struct gl_context *ctx,
79 _mesa_validate_DrawTransformFeedback(struct gl_context *ctx,
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_normals.c49 run_normal_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
52 struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb;
61 if (_math_matrix_is_general_scale(ctx->ModelviewMatrixStack.Top))
66 store->NormalTransform( ctx->ModelviewMatrixStack.Top,
67 ctx->_ModelViewInvScale,
91 validate_normal_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
95 if (ctx->VertexProgram._Current ||
96 (!ctx->Light.Enabled &&
97 !(ctx->Texture._GenFlags & TEXGEN_NEED_NORMALS))) {
102 if (ctx
148 alloc_normal_data(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
[all...]
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dfft_ops.cc41 explicit GenericFftOp(OpKernelConstruction* ctx, FftType fft_type, argument
43 : XlaOpKernel(ctx), fft_type_(fft_type), fft_rank_(fft_rank) {}
45 void Compile(XlaOpKernelContext* ctx) override {
46 const TensorShape input_shape = ctx->InputShape(0);
48 ctx, TensorShapeUtils::IsVectorOrHigher(input_shape),
53 OP_REQUIRES_OK(ctx, ctx->ConstantInputAsIntVector(1, &fft_length));
54 OP_REQUIRES(ctx, fft_length.size() == fft_rank_,
65 xla::ComputationBuilder* b = ctx->builder();
67 b->Fft(ctx
82 FFTOp(OpKernelConstruction* ctx) argument
92 IFFTOp(OpKernelConstruction* ctx) argument
102 RFFTOp(OpKernelConstruction* ctx) argument
112 IRFFTOp(OpKernelConstruction* ctx) argument
[all...]
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c95 meta_clear(struct gl_context *ctx, GLbitfield buffers, bool glsl);
101 static void meta_glsl_clear_cleanup(struct gl_context *ctx,
103 static void meta_decompress_cleanup(struct gl_context *ctx,
105 static void meta_drawpix_cleanup(struct gl_context *ctx,
109 _mesa_meta_framebuffer_texture_image(struct gl_context *ctx, argument
121 _mesa_framebuffer_texture(ctx, fb, attachment, texObj, texTarget,
126 meta_compile_shader_with_debug(struct gl_context *ctx, gl_shader_stage stage, argument
135 _mesa_compile_shader(ctx, sh);
139 _mesa_problem(ctx,
144 _mesa_reference_shader(ctx,
151 _mesa_meta_link_program_with_debug(struct gl_context *ctx, struct gl_shader_program *sh_prog) argument
163 _mesa_meta_use_program(struct gl_context *ctx, struct gl_shader_program *sh_prog) argument
174 _mesa_meta_compile_and_link_program(struct gl_context *ctx, const char *vs_source, const char *fs_source, const char *name, struct gl_shader_program **out_sh_prog) argument
208 _mesa_meta_setup_blit_shader(struct gl_context *ctx, GLenum target, bool do_depth, struct blit_shader_table *table) argument
298 _mesa_meta_setup_vertex_objects(struct gl_context *ctx, GLuint *VAO, struct gl_buffer_object **buf_obj, bool use_generic_attributes, unsigned vertex_size, unsigned texcoord_size, unsigned color_size) argument
384 _mesa_meta_init(struct gl_context *ctx) argument
396 _mesa_meta_free(struct gl_context *ctx) argument
423 _mesa_meta_begin(struct gl_context *ctx, GLbitfield state) argument
813 _mesa_meta_end(struct gl_context *ctx) argument
1223 init_temp_texture(struct gl_context *ctx, struct temp_texture *tex) argument
1258 _mesa_meta_get_temp_texture(struct gl_context *ctx) argument
1276 get_bitmap_temp_texture(struct gl_context *ctx) argument
1292 _mesa_meta_get_temp_depth_texture(struct gl_context *ctx) argument
1366 _mesa_meta_setup_copypix_texture(struct gl_context *ctx, struct temp_texture *tex, GLint srcX, GLint srcY, GLsizei width, GLsizei height, GLenum intFormat, GLenum filter) argument
1412 _mesa_meta_setup_drawpix_texture(struct gl_context *ctx, struct temp_texture *tex, GLboolean newTex, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels) argument
1457 _mesa_meta_setup_ff_tnl_for_blit(struct gl_context *ctx, GLuint *VAO, struct gl_buffer_object **buf_obj, unsigned texcoord_size) argument
1473 _mesa_meta_Clear(struct gl_context *ctx, GLbitfield buffers) argument
1479 _mesa_meta_glsl_Clear(struct gl_context *ctx, GLbitfield buffers) argument
1485 meta_glsl_clear_init(struct gl_context *ctx, struct clear_state *clear) argument
1563 meta_glsl_clear_cleanup(struct gl_context *ctx, struct clear_state *clear) argument
1623 is_color_disabled(struct gl_context *ctx, int i) argument
1637 _mesa_meta_drawbuffers_and_colormask(struct gl_context *ctx, GLbitfield mask) argument
1696 meta_clear(struct gl_context *ctx, GLbitfield buffers, bool glsl) argument
1843 _mesa_meta_CopyPixels(struct gl_context *ctx, GLint srcX, GLint srcY, GLsizei width, GLsizei height, GLint dstX, GLint dstY, GLenum type) argument
1927 meta_drawpix_cleanup(struct gl_context *ctx, struct drawpix_state *drawpix) argument
1953 tiled_draw_pixels(struct gl_context *ctx, GLint tileSize, GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, const struct gl_pixelstore_attrib *unpack, const GLvoid *pixels) argument
1989 init_draw_stencil_pixels(struct gl_context *ctx) argument
2053 init_draw_depth_pixels(struct gl_context *ctx) argument
2088 _mesa_meta_DrawPixels(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, const struct gl_pixelstore_attrib *unpack, const GLvoid *pixels) argument
2309 alpha_test_raster_color(struct gl_context *ctx) argument
2343 _mesa_meta_Bitmap(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height, const struct gl_pixelstore_attrib *unpack, const GLubyte *bitmap1) argument
2719 _mesa_meta_blit_shader_table_cleanup(struct gl_context *ctx, struct blit_shader_table *table) argument
2737 get_temp_image_type(struct gl_context *ctx, mesa_format format) argument
2782 copytexsubimage_using_blit_framebuffer(struct gl_context *ctx, GLuint dims, struct gl_texture_image *texImage, GLint xoffset, GLint yoffset, GLint zoffset, struct gl_renderbuffer *rb, GLint x, GLint y, GLsizei width, GLsizei height) argument
2865 _mesa_meta_CopyTexSubImage(struct gl_context *ctx, GLuint dims, struct gl_texture_image *texImage, GLint xoffset, GLint yoffset, GLint zoffset, struct gl_renderbuffer *rb, GLint x, GLint y, GLsizei width, GLsizei height) argument
2959 meta_decompress_cleanup(struct gl_context *ctx, struct decompress_state *decompress) argument
2985 decompress_texture_image(struct gl_context *ctx, struct gl_texture_image *texImage, GLuint slice, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum destFormat, GLenum destType, GLvoid *dest) argument
3235 _mesa_meta_GetTexSubImage(struct gl_context *ctx, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLvoid *pixels, struct gl_texture_image *texImage) argument
3298 _mesa_meta_DrawTex(struct gl_context *ctx, GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height) argument
3429 cleartexsubimage_color(struct gl_context *ctx, struct gl_texture_image *texImage, const GLvoid *clearValue, GLint zoffset) argument
3478 cleartexsubimage_depth_stencil(struct gl_context *ctx, struct gl_texture_image *texImage, const GLvoid *clearValue, GLint zoffset) argument
3529 cleartexsubimage_for_zoffset(struct gl_context *ctx, struct gl_texture_image *texImage, GLint zoffset, const GLvoid *clearValue) argument
3560 cleartexsubimage_using_fbo(struct gl_context *ctx, struct gl_texture_image *texImage, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, const GLvoid *clearValue) argument
3594 _mesa_meta_ClearTexSubImage(struct gl_context *ctx, struct gl_texture_image *texImage, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, const GLvoid *clearValue) argument
[all...]
/external/libvpx/libvpx/vp8/
H A Dvp8_dx_iface.c59 static int vp8_init_ctx(vpx_codec_ctx_t *ctx) { argument
64 ctx->priv = (vpx_codec_priv_t *)priv;
65 ctx->priv->init_flags = ctx->init_flags;
71 if (ctx->config.dec) {
73 priv->cfg = *ctx->config.dec;
74 ctx->config.dec = &priv->cfg;
80 static vpx_codec_err_t vp8_init(vpx_codec_ctx_t *ctx, argument
93 if (!ctx->priv) {
96 if (vp8_init_ctx(ctx)) retur
112 vp8_destroy(vpx_codec_alg_priv_t *ctx) argument
173 vp8_get_si(vpx_codec_alg_priv_t *ctx, vpx_codec_stream_info_t *si) argument
189 update_error_state( vpx_codec_alg_priv_t *ctx, const struct vpx_internal_error_info *error) argument
229 update_fragments(vpx_codec_alg_priv_t *ctx, const uint8_t *data, unsigned int data_sz, volatile vpx_codec_err_t *res) argument
267 vp8_decode(vpx_codec_alg_priv_t *ctx, const uint8_t *data, unsigned int data_sz, void *user_priv, long deadline) argument
446 vp8_get_frame(vpx_codec_alg_priv_t *ctx, vpx_codec_iter_t *iter) argument
504 vp8_set_reference(vpx_codec_alg_priv_t *ctx, va_list args) argument
521 vp8_get_reference(vpx_codec_alg_priv_t *ctx, va_list args) argument
538 vp8_get_quantizer(vpx_codec_alg_priv_t *ctx, va_list args) argument
546 vp8_set_postproc(vpx_codec_alg_priv_t *ctx, va_list args) argument
566 vp8_get_last_ref_updates(vpx_codec_alg_priv_t *ctx, va_list args) argument
583 vp8_get_last_ref_frame(vpx_codec_alg_priv_t *ctx, va_list args) argument
601 vp8_get_frame_corrupted(vpx_codec_alg_priv_t *ctx, va_list args) argument
616 vp8_set_decryptor(vpx_codec_alg_priv_t *ctx, va_list args) argument
[all...]
/external/libdrm/exynos/
H A Dexynos_fimg2d.c164 * @ctx: a pointer to g2d_context structure.
168 static unsigned int g2d_check_space(const struct g2d_context *ctx, argument
171 if (ctx->cmd_nr + num_cmds >= G2D_MAX_CMD_NR ||
172 ctx->cmd_buf_nr + num_gem_cmds >= G2D_MAX_GEM_CMD_NR)
229 * @ctx: a pointer to g2d_context structure.
236 static void g2d_add_cmd(struct g2d_context *ctx, unsigned long cmd, argument
246 assert(ctx->cmd_buf_nr < G2D_MAX_GEM_CMD_NR);
248 ctx->cmd_buf[ctx->cmd_buf_nr].offset = cmd;
249 ctx
269 g2d_add_base_addr(struct g2d_context *ctx, struct g2d_image *img, enum g2d_base_addr_reg reg) argument
288 g2d_set_direction(struct g2d_context *ctx, const union g2d_direction_val *dir) argument
301 g2d_reset(struct g2d_context *ctx) argument
318 g2d_flush(struct g2d_context *ctx) argument
367 struct g2d_context *ctx; local
392 g2d_fini(struct g2d_context *ctx) argument
408 g2d_config_event(struct g2d_context *ctx, void *userdata) argument
418 g2d_exec(struct g2d_context *ctx) argument
451 g2d_solid_fill(struct g2d_context *ctx, struct g2d_image *img, unsigned int x, unsigned int y, unsigned int w, unsigned int h) argument
504 g2d_copy(struct g2d_context *ctx, struct g2d_image *src, struct g2d_image *dst, unsigned int src_x, unsigned int src_y, unsigned int dst_x, unsigned dst_y, unsigned int w, unsigned int h) argument
587 g2d_move(struct g2d_context *ctx, struct g2d_image *img, unsigned int src_x, unsigned int src_y, unsigned int dst_x, unsigned dst_y, unsigned int w, unsigned int h) argument
685 g2d_copy_with_scale(struct g2d_context *ctx, struct g2d_image *src, struct g2d_image *dst, unsigned int src_x, unsigned int src_y, unsigned int src_w, unsigned int src_h, unsigned int dst_x, unsigned int dst_y, unsigned int dst_w, unsigned int dst_h, unsigned int negative) argument
794 g2d_blend(struct g2d_context *ctx, struct g2d_image *src, struct g2d_image *dst, unsigned int src_x, unsigned int src_y, unsigned int dst_x, unsigned int dst_y, unsigned int w, unsigned int h, enum e_g2d_op op) argument
911 g2d_scale_and_blend(struct g2d_context *ctx, struct g2d_image *src, struct g2d_image *dst, unsigned int src_x, unsigned int src_y, unsigned int src_w, unsigned int src_h, unsigned int dst_x, unsigned int dst_y, unsigned int dst_w, unsigned int dst_h, enum e_g2d_op op) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_state.c54 i915_update_stencil(struct gl_context * ctx) argument
56 struct i915_context *i915 = I915_CONTEXT(ctx);
67 if (ctx->Polygon.FrontFace == GL_CW) {
68 front_ref = _mesa_get_stencil_ref(ctx, 0);
69 front_mask = ctx->Stencil.ValueMask[0];
70 front_writemask = ctx->Stencil.WriteMask[0];
71 front_func = ctx->Stencil.Function[0];
72 front_fail = ctx->Stencil.FailFunc[0];
73 front_pass_z_fail = ctx->Stencil.ZFailFunc[0];
74 front_pass_z_pass = ctx
163 i915StencilFuncSeparate(struct gl_context * ctx, GLenum face, GLenum func, GLint ref, GLuint mask) argument
169 i915StencilMaskSeparate(struct gl_context * ctx, GLenum face, GLuint mask) argument
174 i915StencilOpSeparate(struct gl_context * ctx, GLenum face, GLenum fail, GLenum zfail, GLenum zpass) argument
180 i915AlphaFunc(struct gl_context * ctx, GLenum func, GLfloat ref) argument
206 i915EvalLogicOpBlendState(struct gl_context * ctx) argument
238 i915BlendColor(struct gl_context * ctx, const GLfloat color[4]) argument
286 i915UpdateBlendState(struct gl_context * ctx) argument
339 i915BlendFuncSeparate(struct gl_context * ctx, GLenum srcRGB, GLenum dstRGB, GLenum srcA, GLenum dstA) argument
347 i915BlendEquationSeparate(struct gl_context * ctx, GLenum eqRGB, GLenum eqA) argument
354 i915DepthFunc(struct gl_context * ctx, GLenum func) argument
372 i915DepthMask(struct gl_context * ctx, GLboolean flag) argument
402 intelCalcViewport(struct gl_context * ctx) argument
421 i915DepthRange(struct gl_context *ctx) argument
434 i915PolygonStipple(struct gl_context * ctx, const GLubyte * mask) argument
496 i915Scissor(struct gl_context * ctx) argument
542 i915LogicOp(struct gl_context * ctx, GLenum opcode) argument
557 i915CullFaceFrontFace(struct gl_context * ctx, GLenum unused) argument
592 i915LineWidth(struct gl_context * ctx, GLfloat widthf) argument
611 i915PointSize(struct gl_context * ctx, GLfloat size) argument
630 i915PointParameterfv(struct gl_context * ctx, GLenum pname, const GLfloat *params) argument
647 i915_update_sprite_point_enable(struct gl_context *ctx) argument
691 i915ColorMask(struct gl_context * ctx, GLboolean r, GLboolean g, GLboolean b, GLboolean a) argument
716 update_specular(struct gl_context * ctx) argument
724 i915LightModelfv(struct gl_context * ctx, GLenum pname, const GLfloat * param) argument
734 i915ShadeModel(struct gl_context * ctx, GLenum mode) argument
759 i915Fogfv(struct gl_context * ctx, GLenum pname, const GLfloat * param) argument
770 i915Enable(struct gl_context * ctx, GLenum cap, GLboolean state) argument
1021 i915_update_provoking_vertex(struct gl_context * ctx) argument
1047 i915RenderMode(struct gl_context *ctx, GLenum mode) argument
1086 struct gl_context *ctx = &i915->intel.ctx; local
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_md5.cc42 static const void *body(MD5_CTX *ctx, const void *data, ulong_t size) { argument
47 a = ctx->a;
48 b = ctx->b;
49 c = ctx->c;
50 d = ctx->d;
134 ctx->a = a;
135 ctx->b = b;
136 ctx->c = c;
137 ctx->d = d;
142 void MD5_Init(MD5_CTX *ctx) { argument
152 MD5_Update(MD5_CTX *ctx, const void *data, ulong_t size) argument
185 MD5_Final(unsigned char *result, MD5_CTX *ctx) argument
237 MD5_CTX ctx; local
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_state.c52 struct fd_context *ctx = fd_context(pctx); local
53 ctx->blend_color = *blend_color;
54 ctx->dirty |= FD_DIRTY_BLEND_COLOR;
61 struct fd_context *ctx = fd_context(pctx); local
62 ctx->stencil_ref =* stencil_ref;
63 ctx->dirty |= FD_DIRTY_STENCIL_REF;
70 struct fd_context *ctx = fd_context(pctx); local
71 ctx->ucp = *clip;
72 ctx->dirty |= FD_DIRTY_UCP;
78 struct fd_context *ctx local
95 struct fd_context *ctx = fd_context(pctx); local
118 struct fd_context *ctx = fd_context(pctx); local
169 struct fd_context *ctx = fd_context(pctx); local
180 struct fd_context *ctx = fd_context(pctx); local
192 struct fd_context *ctx = fd_context(pctx); local
202 struct fd_context *ctx = fd_context(pctx); local
233 struct fd_context *ctx = fd_context(pctx); local
250 struct fd_context *ctx = fd_context(pctx); local
273 struct fd_context *ctx = fd_context(pctx); local
297 struct fd_context *ctx = fd_context(pctx); local
332 struct fd_context *ctx = fd_context(pctx); local
376 struct fd_context *ctx = fd_context(pctx); local
[all...]

Completed in 705 milliseconds

<<11121314151617181920>>