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

<<51525354555657585960>>

  /external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
t_dd_tritmp.h 31 * ctx->Driver.QuadFunc
32 * ctx->Driver.TriangleFunc
33 * ctx->Driver.LineFunc
34 * ctx->Driver.PointsFunc
114 static void TAG(triangle)( struct gl_context *ctx, GLuint e0, GLuint e1, GLuint e2 )
116 struct vertex_buffer *VB = &TNL_CONTEXT( ctx )->vb;
140 facing = AREA_IS_CCW( cc ) ^ ctx->Polygon._FrontBit;
144 mode = ctx->Polygon.BackMode;
145 if (ctx->Polygon.CullFlag &&
146 ctx->Polygon.CullFaceMode != GL_FRONT)
    [all...]
t_dd_dmatmp.h 56 #define EMIT_INDEXED_VERTS( ctx, start, count )
76 static void *TAG(emit_elts)( struct gl_context *ctx, GLuint *elts, GLuint nr,
97 static __inline void *TAG(emit_verts)( struct gl_context *ctx, GLuint start,
100 return EMIT_VERTS(ctx, start, count, buf);
107 static void TAG(render_points_verts)( struct gl_context *ctx,
126 TAG(emit_verts)( ctx, j, nr, ALLOC_VERTS(nr) );
136 static void TAG(render_lines_verts)( struct gl_context *ctx,
161 TAG(emit_verts)( ctx, j, nr, ALLOC_VERTS(nr) );
172 static void TAG(render_line_strip_verts)( struct gl_context *ctx,
191 TAG(emit_verts)( ctx, j, nr, ALLOC_VERTS(nr) )
    [all...]
  /external/flac/libFLAC/
md5.c 181 static void FLAC__MD5Update(FLAC__MD5Context *ctx, FLAC__byte const *buf, unsigned len)
187 t = ctx->bytes[0];
188 if ((ctx->bytes[0] = t + len) < t)
189 ctx->bytes[1]++; /* Carry from low to high */
191 t = 64 - (t & 0x3f); /* Space available in ctx->in (at least 1) */
193 memcpy((FLAC__byte *)ctx->in + 64 - t, buf, len);
197 memcpy((FLAC__byte *)ctx->in + 64 - t, buf, t);
198 byteSwapX16(ctx->in);
199 FLAC__MD5Transform(ctx->buf, ctx->in)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_pixel_read.c 90 do_blit_readpixels(struct gl_context * ctx,
95 radeonContextPtr radeon = RADEON_CONTEXT(ctx);
96 const struct radeon_renderbuffer *rrb = radeon_renderbuffer(ctx->ReadBuffer->_ColorReadBuffer);
113 if (ctx->_ImageTransferState || ctx->Color.ColorLogicOpEnabled) {
127 if (!_mesa_clip_copytexsubimage(ctx, &dst_x, &dst_y, &x, &y, &width, &height)) {
152 flip_y = _mesa_is_winsys_fbo(ctx->ReadBuffer);
158 if (radeon->vtbl.blit(ctx,
198 radeonReadPixels(struct gl_context * ctx,
203 radeonContextPtr radeon = RADEON_CONTEXT(ctx);
    [all...]
  /external/mesa3d/src/mesa/main/
pack.h 53 _mesa_pack_rgba_span_float(struct gl_context *ctx, GLuint n,
61 _mesa_unpack_color_span_ubyte(struct gl_context *ctx,
70 _mesa_unpack_color_span_float(struct gl_context *ctx,
78 _mesa_unpack_color_span_uint(struct gl_context *ctx,
85 _mesa_unpack_dudv_span_byte(struct gl_context *ctx,
93 _mesa_unpack_index_span(struct gl_context *ctx, GLuint n,
101 _mesa_pack_index_span(struct gl_context *ctx, GLuint n,
108 _mesa_unpack_stencil_span(struct gl_context *ctx, GLuint n,
115 _mesa_pack_stencil_span(struct gl_context *ctx, GLuint n,
121 _mesa_unpack_depth_span(struct gl_context *ctx, GLuint n
    [all...]
rastpos.c 51 GET_CURRENT_CONTEXT(ctx);
59 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
60 FLUSH_CURRENT(ctx, 0);
62 if (ctx->NewState)
63 _mesa_update_state( ctx );
65 ctx->Driver.RasterPos(ctx, p);
228 GET_CURRENT_CONTEXT(ctx);
231 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
232 FLUSH_CURRENT(ctx, 0)
    [all...]
texstore.h 58 struct gl_context *ctx, GLuint dims, \
74 _mesa_make_temp_ubyte_image(struct gl_context *ctx, GLuint dims,
83 _mesa_make_temp_float_image(struct gl_context *ctx, GLuint dims,
93 _mesa_store_teximage(struct gl_context *ctx,
101 _mesa_store_texsubimage(struct gl_context *ctx, GLuint dims,
110 _mesa_store_compressed_teximage(struct gl_context *ctx, GLuint dims,
116 _mesa_store_compressed_texsubimage(struct gl_context *ctx, GLuint dims,
  /external/mesa3d/src/mesa/state_tracker/
st_cb_program.c 52 * Called via ctx->Driver.BindProgram() to bind an ARB vertex or
56 st_bind_program(struct gl_context *ctx, GLenum target, struct gl_program *prog)
58 struct st_context *st = st_context(ctx);
75 * Called via ctx->Driver.UseProgram() to bind a linked GLSL program
79 st_use_program(struct gl_context *ctx, struct gl_shader_program *shProg)
81 struct st_context *st = st_context(ctx);
90 * Called via ctx->Driver.NewProgram() to allocate a new vertex or
94 st_new_program(struct gl_context *ctx, GLenum target, GLuint id)
99 return _mesa_init_vertex_program(ctx, &prog->Base, target, id);
105 return _mesa_init_fragment_program(ctx, &prog->Base, target, id)
    [all...]
st_gen_mipmap.c 120 compute_num_levels(struct gl_context *ctx,
127 baseImage = _mesa_get_tex_image(ctx, texObj, target, texObj->BaseLevel);
138 * Called via ctx->Driver.GenerateMipmap().
141 st_generate_mipmap(struct gl_context *ctx, GLenum target,
144 struct st_context *st = st_context(ctx);
159 lastLevel = compute_num_levels(ctx, texObj, target) - 1;
189 st_finalize_texture(ctx, st->pipe, texObj);
199 st_finalize_texture(ctx, st->pipe, texObj);
212 _mesa_generate_mipmap(ctx, target, texObj);
219 = _mesa_get_tex_image(ctx, texObj, target, srcLevel)
    [all...]
st_cb_drawpixels.c 109 struct gl_context *ctx = st->ctx; local
111 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
116 if (ctx->Pixel.RedBias != 0.0 || ctx->Pixel.RedScale != 1.0 ||
117 ctx->Pixel.GreenBias != 0.0 || ctx->Pixel.GreenScale != 1.0 ||
118 ctx->Pixel.BlueBias != 0.0 || ctx->Pixel.BlueScale != 1.0 |
201 struct gl_context *ctx = st->ctx; local
484 struct gl_context *ctx = st->ctx; local
1013 struct gl_context *ctx = st->ctx; local
    [all...]
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_tritmp.h 31 * ctx->Driver.QuadFunc
32 * ctx->Driver.TriangleFunc
33 * ctx->Driver.LineFunc
34 * ctx->Driver.PointsFunc
114 static void TAG(triangle)( struct gl_context *ctx, GLuint e0, GLuint e1, GLuint e2 )
116 struct vertex_buffer *VB = &TNL_CONTEXT( ctx )->vb;
140 facing = AREA_IS_CCW( cc ) ^ ctx->Polygon._FrontBit;
144 mode = ctx->Polygon.BackMode;
145 if (ctx->Polygon.CullFlag &&
146 ctx->Polygon.CullFaceMode != GL_FRONT)
    [all...]
t_dd_dmatmp.h 56 #define EMIT_INDEXED_VERTS( ctx, start, count )
76 static void *TAG(emit_elts)( struct gl_context *ctx, GLuint *elts, GLuint nr,
97 static __inline void *TAG(emit_verts)( struct gl_context *ctx, GLuint start,
100 return EMIT_VERTS(ctx, start, count, buf);
107 static void TAG(render_points_verts)( struct gl_context *ctx,
126 TAG(emit_verts)( ctx, j, nr, ALLOC_VERTS(nr) );
136 static void TAG(render_lines_verts)( struct gl_context *ctx,
161 TAG(emit_verts)( ctx, j, nr, ALLOC_VERTS(nr) );
172 static void TAG(render_line_strip_verts)( struct gl_context *ctx,
191 TAG(emit_verts)( ctx, j, nr, ALLOC_VERTS(nr) )
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_drawpixels.c 109 struct gl_context *ctx = st->ctx; local
111 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
116 if (ctx->Pixel.RedBias != 0.0 || ctx->Pixel.RedScale != 1.0 ||
117 ctx->Pixel.GreenBias != 0.0 || ctx->Pixel.GreenScale != 1.0 ||
118 ctx->Pixel.BlueBias != 0.0 || ctx->Pixel.BlueScale != 1.0 |
201 struct gl_context *ctx = st->ctx; local
484 struct gl_context *ctx = st->ctx; local
1013 struct gl_context *ctx = st->ctx; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
rastpos.c 51 GET_CURRENT_CONTEXT(ctx);
59 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
60 FLUSH_CURRENT(ctx, 0);
62 if (ctx->NewState)
63 _mesa_update_state( ctx );
65 ctx->Driver.RasterPos(ctx, p);
228 GET_CURRENT_CONTEXT(ctx);
231 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
232 FLUSH_CURRENT(ctx, 0)
    [all...]
texstore.h 58 struct gl_context *ctx, GLuint dims, \
74 _mesa_make_temp_ubyte_image(struct gl_context *ctx, GLuint dims,
83 _mesa_make_temp_float_image(struct gl_context *ctx, GLuint dims,
93 _mesa_store_teximage(struct gl_context *ctx,
101 _mesa_store_texsubimage(struct gl_context *ctx, GLuint dims,
110 _mesa_store_compressed_teximage(struct gl_context *ctx, GLuint dims,
116 _mesa_store_compressed_texsubimage(struct gl_context *ctx, GLuint dims,
  /external/chromium/net/http/
http_vary_data.cc 23 MD5Context ctx; local
24 MD5Init(&ctx);
40 AddField(request_info, request_header, &ctx);
56 AddField(request_info, "cookie", &ctx);
63 MD5Final(&request_digest_, &ctx);
118 MD5Context* ctx) {
127 MD5Update(ctx, request_value.data(), request_value.size());
  /external/chromium_org/net/http/
http_vary_data.cc 23 base::MD5Context ctx; local
24 base::MD5Init(&ctx);
40 AddField(request_info, request_header, &ctx);
56 AddField(request_info, "cookie", &ctx);
63 base::MD5Final(&request_digest_, &ctx);
114 base::MD5Context* ctx) {
123 base::MD5Update(ctx, request_value);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv04_state_fb.c 50 nv04_emit_framebuffer(struct gl_context *ctx, int emit)
52 struct nouveau_pushbuf *push = context_push(ctx);
53 struct gl_framebuffer *fb = ctx->DrawBuffer;
95 context_dirty(ctx, SCISSOR);
99 nv04_emit_scissor(struct gl_context *ctx, int emit)
101 struct nouveau_pushbuf *push = context_push(ctx);
104 get_scissors(ctx->DrawBuffer, &x, &y, &w, &h);
  /external/chromium_org/third_party/openssl/openssl/crypto/dh/
dh_check.c 76 BN_CTX *ctx=NULL; local
81 ctx=BN_CTX_new();
82 if (ctx == NULL) goto err;
107 if (!BN_is_prime_ex(dh->p,BN_prime_checks,ctx,NULL))
112 if (!BN_is_prime_ex(q,BN_prime_checks,ctx,NULL))
117 if (ctx != NULL) BN_CTX_free(ctx);
  /external/e2fsprogs/e2fsck/
badblocks.c 26 void read_bad_blocks_file(e2fsck_t ctx, const char *bad_blocks_file,
29 ext2_filsys fs = ctx->fs;
35 e2fsck_read_bitmaps(ctx);
76 (ctx->options & E2F_OPT_PREEN) ? "" : "-s ",
77 (ctx->options & E2F_OPT_WRITECHECK) ? "-n " : "",
100 printf("%s: Updating bad block inode.\n", ctx->device_name);
112 ctx->flags |= E2F_FLAG_ABORT;
  /external/elfutils/libasm/
asm_addint8.c 64 if (unlikely (asmscn->ctx->textp))
68 fprintf (asmscn->ctx->out.file, "\t.byte\t%" PRId8 "\n", (int8_t) num);
70 fprintf (asmscn->ctx->out.file, "\t.value\t%" PRId16 "\n",
73 fprintf (asmscn->ctx->out.file, "\t.long\t%" PRId32 "\n",
78 bool is_leb = (elf_getident (asmscn->ctx->out.elf, NULL)[EI_DATA]
81 fprintf (asmscn->ctx->out.file,
92 bool is_leb = (elf_getident (asmscn->ctx->out.elf, NULL)[EI_DATA]
  /external/emma/core/java12/com/vladium/util/
ClassLoaderResolver.java 47 final ClassLoadContext ctx = new ClassLoadContext (caller); local
49 return s_strategy.getClassLoader (ctx);
70 final ClassLoadContext ctx = new ClassLoadContext (caller); local
72 return s_strategy.getClassLoader (ctx);
144 public ClassLoader getClassLoader (final ClassLoadContext ctx)
146 if (ctx == null) throw new IllegalArgumentException ("null input: ctx");
148 final Class caller = ctx.getCallerClass ();
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_state_fb.c 50 nv04_emit_framebuffer(struct gl_context *ctx, int emit)
52 struct nouveau_pushbuf *push = context_push(ctx);
53 struct gl_framebuffer *fb = ctx->DrawBuffer;
95 context_dirty(ctx, SCISSOR);
99 nv04_emit_scissor(struct gl_context *ctx, int emit)
101 struct nouveau_pushbuf *push = context_push(ctx);
104 get_scissors(ctx->DrawBuffer, &x, &y, &w, &h);
  /external/openssl/crypto/dh/
dh_check.c 76 BN_CTX *ctx=NULL; local
81 ctx=BN_CTX_new();
82 if (ctx == NULL) goto err;
107 if (!BN_is_prime_ex(dh->p,BN_prime_checks,ctx,NULL))
112 if (!BN_is_prime_ex(q,BN_prime_checks,ctx,NULL))
117 if (ctx != NULL) BN_CTX_free(ctx);
  /external/wpa_supplicant_8/src/crypto/
aes-omac1.c 45 void *ctx; local
50 ctx = aes_encrypt_init(key, 16);
51 if (ctx == NULL)
74 aes_encrypt(ctx, cbc, cbc);
79 aes_encrypt(ctx, pad, pad);
97 aes_encrypt(ctx, pad, mac);
98 aes_encrypt_deinit(ctx);

Completed in 844 milliseconds

<<51525354555657585960>>