HomeSort by relevance Sort by last modified time
    Searched refs:ctx (Results 1176 - 1200 of 3875) sorted by null

<<41424344454647484950>>

  /external/mesa3d/src/mesa/state_tracker/
st_gen_mipmap.h 48 st_generate_mipmap(struct gl_context *ctx, GLenum target,
st_atom_shader.c 79 assert(st->ctx->FragmentProgram._Current);
80 stfp = st_fragment_program(st->ctx->FragmentProgram._Current);
88 st->ctx->Color._ClampFragmentColor &&
89 !st->ctx->DrawBuffer->_IntegerColor;
131 assert(st->ctx->VertexProgram._Current);
132 stvp = st_vertex_program(st->ctx->VertexProgram._Current);
146 st->ctx->Polygon.FrontMode != GL_FILL ||
147 st->ctx->Polygon.BackMode != GL_FILL));
150 st->ctx->Light._ClampVertexColor;
180 if (!st->ctx->GeometryProgram._Current)
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_context.h 241 GLboolean (*create)( struct gl_context *ctx, struct tnl_pipeline_stage * );
250 void (*validate)( struct gl_context *ctx, struct tnl_pipeline_stage * );
260 GLboolean (*run)( struct gl_context *ctx, struct tnl_pipeline_stage * );
290 typedef void (*tnl_emit_func)( struct gl_context *ctx,
317 typedef void (*tnl_points_func)( struct gl_context *ctx, GLuint first, GLuint last );
318 typedef void (*tnl_line_func)( struct gl_context *ctx, GLuint v1, GLuint v2 );
319 typedef void (*tnl_triangle_func)( struct gl_context *ctx,
321 typedef void (*tnl_quad_func)( struct gl_context *ctx, GLuint v1, GLuint v2,
323 typedef void (*tnl_render_func)( struct gl_context *ctx, GLuint start, GLuint count,
325 typedef void (*tnl_interp_func)( struct gl_context *ctx,
    [all...]
t_draw.c 42 static GLubyte *get_space(struct gl_context *ctx, GLuint bytes)
44 TNLcontext *tnl = TNL_CONTEXT(ctx);
52 static void free_space(struct gl_context *ctx)
54 TNLcontext *tnl = TNL_CONTEXT(ctx);
169 static void _tnl_import_array( struct gl_context *ctx,
175 TNLcontext *tnl = TNL_CONTEXT(ctx);
181 GLubyte *buf = get_space(ctx, count * sz * sizeof(GLfloat));
246 static GLboolean *_tnl_import_edgeflag( struct gl_context *ctx,
252 GLboolean *space = (GLboolean *)get_space(ctx, count + CLIPVERTS);
265 static void bind_inputs( struct gl_context *ctx,
    [all...]
t_vertex.c 109 static void choose_emit_func( struct gl_context *ctx, GLuint count, GLubyte *dest)
111 struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb;
112 struct tnl_clipspace *vtx = GET_VERTEX_STATE(ctx);
136 vtx->codegen_emit(ctx);
140 _tnl_generate_hardwired_emit(ctx);
148 vtx->emit( ctx, count, dest );
153 static void choose_interp_func( struct gl_context *ctx,
158 struct tnl_clipspace *vtx = GET_VERTEX_STATE(ctx);
161 (ctx->_TriangleCaps & (DD_TRI_LIGHT_TWOSIDE|DD_TRI_UNFILLED))) {
167 vtx->interp( ctx, t, edst, eout, ein, force_boundary )
    [all...]
  /external/openssl/crypto/comp/
c_rle.c 7 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
9 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
28 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
44 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
  /external/openssl/crypto/dsa/
dsa_pmeth.c 81 static int pkey_dsa_init(EVP_PKEY_CTX *ctx)
92 ctx->data = dctx;
93 ctx->keygen_info = dctx->gentmp;
94 ctx->keygen_info_count = 2;
113 static void pkey_dsa_cleanup(EVP_PKEY_CTX *ctx)
115 DSA_PKEY_CTX *dctx = ctx->data;
120 static int pkey_dsa_sign(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen,
125 DSA_PKEY_CTX *dctx = ctx->data;
126 DSA *dsa = ctx->pkey->pkey.dsa;
141 static int pkey_dsa_verify(EVP_PKEY_CTX *ctx,
    [all...]
  /external/openssl/crypto/ec/
ec_oct.c 72 const BIGNUM *x, int y_bit, BN_CTX *ctx)
89 group, point, x, y_bit, ctx);
98 group, point, x, y_bit, ctx);
101 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
106 const BIGNUM *x, int y_bit, BN_CTX *ctx)
123 group, point, x, y_bit, ctx);
126 group, point, x, y_bit, ctx);
128 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
133 unsigned char *buf, size_t len, BN_CTX *ctx)
150 form, buf, len, ctx);
    [all...]
ec_pmeth.c 77 static int pkey_ec_init(EVP_PKEY_CTX *ctx)
86 ctx->data = dctx;
108 static void pkey_ec_cleanup(EVP_PKEY_CTX *ctx)
110 EC_PKEY_CTX *dctx = ctx->data;
119 static int pkey_ec_sign(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen,
124 EC_PKEY_CTX *dctx = ctx->data;
125 EC_KEY *ec = ctx->pkey->pkey.ec;
152 static int pkey_ec_verify(EVP_PKEY_CTX *ctx,
157 EC_PKEY_CTX *dctx = ctx->data;
158 EC_KEY *ec = ctx->pkey->pkey.ec
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLKey.java 29 private final long ctx; field in class:OpenSSLKey
35 public OpenSSLKey(long ctx) {
36 this.ctx = ctx;
41 public OpenSSLKey(long ctx, OpenSSLEngine engine, String alias) {
42 this.ctx = ctx;
53 return ctx;
81 switch (NativeCrypto.EVP_PKEY_type(ctx)) {
116 switch (NativeCrypto.EVP_PKEY_type(ctx)) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_shader.c 79 assert(st->ctx->FragmentProgram._Current);
80 stfp = st_fragment_program(st->ctx->FragmentProgram._Current);
88 st->ctx->Color._ClampFragmentColor &&
89 !st->ctx->DrawBuffer->_IntegerColor;
131 assert(st->ctx->VertexProgram._Current);
132 stvp = st_vertex_program(st->ctx->VertexProgram._Current);
146 st->ctx->Polygon.FrontMode != GL_FILL ||
147 st->ctx->Polygon.BackMode != GL_FILL));
150 st->ctx->Light._ClampVertexColor;
180 if (!st->ctx->GeometryProgram._Current)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_draw.c 42 static GLubyte *get_space(struct gl_context *ctx, GLuint bytes)
44 TNLcontext *tnl = TNL_CONTEXT(ctx);
52 static void free_space(struct gl_context *ctx)
54 TNLcontext *tnl = TNL_CONTEXT(ctx);
169 static void _tnl_import_array( struct gl_context *ctx,
175 TNLcontext *tnl = TNL_CONTEXT(ctx);
181 GLubyte *buf = get_space(ctx, count * sz * sizeof(GLfloat));
246 static GLboolean *_tnl_import_edgeflag( struct gl_context *ctx,
252 GLboolean *space = (GLboolean *)get_space(ctx, count + CLIPVERTS);
265 static void bind_inputs( struct gl_context *ctx,
    [all...]
t_vertex.c 109 static void choose_emit_func( struct gl_context *ctx, GLuint count, GLubyte *dest)
111 struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb;
112 struct tnl_clipspace *vtx = GET_VERTEX_STATE(ctx);
136 vtx->codegen_emit(ctx);
140 _tnl_generate_hardwired_emit(ctx);
148 vtx->emit( ctx, count, dest );
153 static void choose_interp_func( struct gl_context *ctx,
158 struct tnl_clipspace *vtx = GET_VERTEX_STATE(ctx);
161 (ctx->_TriangleCaps & (DD_TRI_LIGHT_TWOSIDE|DD_TRI_UNFILLED))) {
167 vtx->interp( ctx, t, edst, eout, ein, force_boundary )
    [all...]
  /external/e2fsprogs/e2fsck/
ehandler.c 33 e2fsck_t ctx; local
35 ctx = (e2fsck_t) fs->priv_data;
36 if (ctx->flags & E2F_FLAG_EXITING)
59 preenhalt(ctx);
60 if (ask(ctx, _("Ignore error"), 1)) {
61 if (ask(ctx, _("Force rewrite"), 1))
80 e2fsck_t ctx; local
82 ctx = (e2fsck_t) fs->priv_data;
83 if (ctx->flags & E2F_FLAG_EXITING)
108 preenhalt(ctx);
    [all...]
  /external/elfutils/libasm/
libasm.h 75 extern int asm_abort (AsmCtx_t *ctx);
78 extern int asm_end (AsmCtx_t *ctx);
83 extern AsmScn_t *asm_newscn (AsmCtx_t *ctx, const char *scnname,
88 extern AsmScn_t *asm_newscn_ingrp (AsmCtx_t *ctx, const char *scnname,
98 extern AsmScnGrp_t *asm_newscngrp (AsmCtx_t *ctx, const char *grpname,
146 extern AsmSym_t *asm_newcomsym (AsmCtx_t *ctx, const char *name,
150 extern AsmSym_t *asm_newabssym (AsmCtx_t *ctx, const char *name,
163 extern Elf *asm_getelf (AsmCtx_t *ctx);
181 extern int disasm_end (DisasmCtx_t *ctx);
185 extern int disasm_str (DisasmCtx_t *ctx, const uint8_t **startp
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
GLESvalidate.cpp 29 bool GLESvalidate::pixelType(GLEScontext * ctx, GLenum type) {
30 if ((ctx && ctx->getCaps()->GL_EXT_PACKED_DEPTH_STENCIL) &&
34 if (ctx &&
35 (ctx->getCaps()->GL_ARB_HALF_FLOAT_PIXEL || ctx->getCaps()->GL_NV_HALF_FLOAT) &&
61 bool GLESvalidate::pixelFrmt(GLEScontext* ctx ,GLenum format) {
62 if (ctx && ctx->getCaps()->GL_EXT_TEXTURE_FORMAT_BGRA8888 && format == GL_BGRA_EXT)
64 if (ctx && ctx->getCaps()->GL_EXT_PACKED_DEPTH_STENCIL && format == GL_DEPTH_STENCIL_OES
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
mask.c 101 struct vg_context *ctx = vg_current_context(); local
102 struct pipe_context *pipe = ctx->pipe;
104 struct st_framebuffer *stfb = ctx->draw_buffer;
141 _vega_pack_rgba_span_float(ctx, width, temp, dataFormat,
152 struct vg_context *ctx = vg_current_context(); local
153 struct st_framebuffer *stfb = ctx->draw_buffer;
185 struct vg_context *ctx = vg_current_context(); local
190 if (!ctx->mask.union_fs) {
191 ctx->mask.union_fs = shader_create_from_text(ctx->pipe
241 struct vg_context *ctx = vg_current_context(); local
278 struct vg_context *ctx = vg_current_context(); local
332 struct vg_context *ctx = vg_current_context(); local
375 struct vg_context *ctx = vg_current_context(); local
396 struct vg_context *ctx = vg_current_context(); local
423 struct vg_context *ctx = vg_current_context(); local
449 struct vg_context *ctx = vg_current_context(); local
501 struct vg_context *ctx = vg_current_context(); local
516 struct vg_context *ctx = vg_current_context(); local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
mask.c 101 struct vg_context *ctx = vg_current_context(); local
102 struct pipe_context *pipe = ctx->pipe;
104 struct st_framebuffer *stfb = ctx->draw_buffer;
141 _vega_pack_rgba_span_float(ctx, width, temp, dataFormat,
152 struct vg_context *ctx = vg_current_context(); local
153 struct st_framebuffer *stfb = ctx->draw_buffer;
185 struct vg_context *ctx = vg_current_context(); local
190 if (!ctx->mask.union_fs) {
191 ctx->mask.union_fs = shader_create_from_text(ctx->pipe
241 struct vg_context *ctx = vg_current_context(); local
278 struct vg_context *ctx = vg_current_context(); local
332 struct vg_context *ctx = vg_current_context(); local
375 struct vg_context *ctx = vg_current_context(); local
396 struct vg_context *ctx = vg_current_context(); local
423 struct vg_context *ctx = vg_current_context(); local
449 struct vg_context *ctx = vg_current_context(); local
501 struct vg_context *ctx = vg_current_context(); local
516 struct vg_context *ctx = vg_current_context(); local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_cryptoapi.c 291 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
293 struct aes_context *akey = ctx;
306 void aes_encrypt_deinit(void *ctx)
308 struct aes_context *akey = ctx;
323 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
325 struct aes_context *akey = ctx;
338 void aes_decrypt_deinit(void *ctx)
340 aes_encrypt_deinit(ctx);
355 struct crypto_hash *ctx; local
393 ctx = os_zalloc(sizeof(*ctx))
511 struct crypto_cipher *ctx; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_vs_draw.c 78 static void emit_temp(struct tgsi_transform_context *ctx, unsigned reg)
85 ctx->emit_declaration(ctx, &decl);
88 static void emit_output(struct tgsi_transform_context *ctx,
92 struct vs_transform_context *vsctx = (struct vs_transform_context *)ctx;
103 ctx->emit_declaration(ctx, &decl);
107 static void insert_output_before(struct tgsi_transform_context *ctx,
111 struct vs_transform_context *vsctx = (struct vs_transform_context *)ctx;
120 emit_output(ctx, name, index, interp
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
sampler.hpp 35 _cl_sampler(clover::context &ctx, bool norm_mode,
42 clover::context &ctx; member in struct:_cl_sampler
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_live_variables.h 55 static void* operator new(size_t size, void *ctx)
59 node = rzalloc_size(ctx, size);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_syncobj.c 49 intel_new_sync_object(struct gl_context *ctx, GLuint id)
59 intel_delete_sync_object(struct gl_context *ctx, struct gl_sync_object *s)
68 intel_fence_sync(struct gl_context *ctx, struct gl_sync_object *s,
71 struct intel_context *intel = intel_context(ctx);
80 intel_flush(ctx);
90 static void intel_client_wait_sync(struct gl_context *ctx, struct gl_sync_object *s,
108 static void intel_server_wait_sync(struct gl_context *ctx, struct gl_sync_object *s,
113 static void intel_check_sync(struct gl_context *ctx, struct gl_sync_object *s)
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv04_state_tex.c 61 nv04_emit_tex_obj(struct gl_context *ctx, int emit)
63 struct nv04_context *nv04 = to_nv04_context(ctx);
68 if (ctx->Texture.Unit[i]._ReallyEnabled) {
69 struct gl_texture_object *t = ctx->Texture.Unit[i]._Current;
71 const struct gl_sampler_object *sa = _mesa_get_samplerobj(ctx, i);
74 if (!nouveau_texture_validate(ctx, t))
84 lod_bias = CLAMP(ctx->Texture.Unit[i].LodBias +
102 s = &to_nv04_context(ctx)->dummy_texture;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_state_init.c 189 static int check_##NM( struct gl_context *ctx, struct radeon_state_atom *atom ) \
195 static int check_##NM( struct gl_context *ctx, struct radeon_state_atom *atom ) \
197 r100ContextPtr rmesa = R100_CONTEXT(ctx); \
209 CHECK( cube0_mm, (ctx->Texture.Unit[0]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE )
210 CHECK( cube1_mm, (ctx->Texture.Unit[1]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE )
211 CHECK( cube2_mm, (ctx->Texture.Unit[2]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE )
212 CHECK( fog_add4, ctx->Fog.Enabled, 4 )
214 TCL_CHECK( tcl_tex0_add4, ctx->Texture.Unit[0]._ReallyEnabled, 4 )
215 TCL_CHECK( tcl_tex1_add4, ctx->Texture.Unit[1]._ReallyEnabled, 4 )
216 TCL_CHECK( tcl_tex2_add4, ctx->Texture.Unit[2]._ReallyEnabled, 4
506 struct gl_context *ctx = rmesa->radeon.glCtx; local
    [all...]

Completed in 1295 milliseconds

<<41424344454647484950>>