HomeSort by relevance Sort by last modified time
    Searched full:ctx (Results 526 - 550 of 4417) sorted by null

<<21222324252627282930>>

  /external/mesa3d/src/gallium/drivers/noop/
noop_pipe.c 36 void noop_init_state_functions(struct pipe_context *ctx);
49 static struct pipe_query *noop_create_query(struct pipe_context *ctx, unsigned query_type)
56 static void noop_destroy_query(struct pipe_context *ctx, struct pipe_query *query)
61 static void noop_begin_query(struct pipe_context *ctx, struct pipe_query *query)
65 static void noop_end_query(struct pipe_context *ctx, struct pipe_query *query)
69 static boolean noop_get_query_result(struct pipe_context *ctx,
210 static void noop_clear(struct pipe_context *ctx, unsigned buffers,
215 static void noop_clear_render_target(struct pipe_context *ctx,
223 static void noop_clear_depth_stencil(struct pipe_context *ctx,
233 static void noop_resource_copy_region(struct pipe_context *ctx,
259 struct pipe_context *ctx = CALLOC_STRUCT(pipe_context); local
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
graw_util.h 21 struct pipe_context *ctx; member in struct:graw_info
63 info->ctx = info->screen->context_create(info->screen, NULL);
64 if (info->ctx == NULL) {
94 info->color_surf[i] = info->ctx->create_surface(info->ctx,
125 info->zs_surf = info->ctx->create_surface(info->ctx,
142 info->ctx->set_framebuffer_state(info->ctx, &fb);
157 handle = info->ctx->create_blend_state(info->ctx, &blend)
    [all...]
clear.c 22 struct pipe_context *ctx; variable in typeref:struct:pipe_context
31 ctx->clear(ctx, PIPE_CLEAR_COLOR, &clear_color, 0, 0);
32 ctx->flush(ctx, NULL);
34 graw_save_surface_to_file(ctx, surf, NULL);
64 ctx = screen->context_create(screen, NULL);
65 if (ctx == NULL)
89 surf = ctx->create_surface(ctx, tex, &surf_tmpl)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_swtcl.h 42 extern void radeonInitSwtcl( struct gl_context *ctx );
44 extern void radeonChooseRenderState( struct gl_context *ctx );
45 extern void radeonChooseVertexState( struct gl_context *ctx );
47 extern void radeonCheckTexSizes( struct gl_context *ctx );
49 extern void radeonBuildVertices( struct gl_context *ctx, GLuint start, GLuint count,
55 extern void radeon_emit_indexed_verts( struct gl_context *ctx,
59 extern void radeon_translate_vertex( struct gl_context *ctx,
63 extern void radeon_print_vertex( struct gl_context *ctx, const radeonVertex *v );
65 extern void r100_swtcl_flush(struct gl_context *ctx, uint32_t current_offset);
radeon_common.c 107 void radeonUpdateScissor( struct gl_context *ctx )
109 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
110 GLint x = ctx->Scissor.X, y = ctx->Scissor.Y;
111 GLsizei w = ctx->Scissor.Width, h = ctx->Scissor.Height;
115 if (!ctx->DrawBuffer)
118 max_x = ctx->DrawBuffer->Width - 1;
119 max_y = ctx->DrawBuffer->Height - 1;
121 if (_mesa_is_winsys_fbo(ctx->DrawBuffer))
    [all...]
  /external/mesa3d/src/mesa/swrast/
swrast.h 117 _swrast_CreateContext( struct gl_context *ctx );
120 _swrast_DestroyContext( struct gl_context *ctx );
125 _swrast_GetDeviceDriverReference( struct gl_context *ctx );
128 _swrast_Bitmap( struct gl_context *ctx,
135 _swrast_CopyPixels( struct gl_context *ctx,
142 swrast_fast_copy_pixels(struct gl_context *ctx,
147 _swrast_DrawPixels( struct gl_context *ctx,
155 _swrast_BlitFramebuffer(struct gl_context *ctx,
161 _swrast_Clear(struct gl_context *ctx, GLbitfield buffers);
168 _swrast_ResetLineStipple( struct gl_context *ctx );
    [all...]
  /external/openssh/
cipher-acss.c 28 #define data(ctx) ((EVP_ACSS_KEY *)(ctx)->cipher_data)
38 acss_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
41 acss_setkey(&data(ctx)->ks,key,enc,ACSS_DATA);
46 acss_ciph(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in,
49 acss(&data(ctx)->ks,inl,in,out);
54 acss_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
58 data(ctx)->ks.mode = arg;
61 acss_setsubkey(&data(ctx)->ks,(unsigned char *)ptr);
  /external/openssl/crypto/evp/
evp_lib.c 123 int EVP_CIPHER_type(const EVP_CIPHER *ctx)
127 nid = EVP_CIPHER_nid(ctx);
186 int EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx)
188 return ctx->cipher->block_size;
191 int EVP_Cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl)
193 return ctx->cipher->do_cipher(ctx,out,in,inl);
196 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx)
198 return ctx->cipher;
206 unsigned long EVP_CIPHER_CTX_flags(const EVP_CIPHER_CTX *ctx)
    [all...]
pmeth_lib.c 365 void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx)
367 if (ctx == NULL)
369 if (ctx->pmeth && ctx->pmeth->cleanup)
370 ctx->pmeth->cleanup(ctx);
371 if (ctx->pkey)
372 EVP_PKEY_free(ctx->pkey);
373 if (ctx->peerkey)
374 EVP_PKEY_free(ctx->peerkey)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
pmeth_lib.c 365 void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx)
367 if (ctx == NULL)
369 if (ctx->pmeth && ctx->pmeth->cleanup)
370 ctx->pmeth->cleanup(ctx);
371 if (ctx->pkey)
372 EVP_PKEY_free(ctx->pkey);
373 if (ctx->peerkey)
374 EVP_PKEY_free(ctx->peerkey)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_common.c 107 void radeonUpdateScissor( struct gl_context *ctx )
109 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
110 GLint x = ctx->Scissor.X, y = ctx->Scissor.Y;
111 GLsizei w = ctx->Scissor.Width, h = ctx->Scissor.Height;
115 if (!ctx->DrawBuffer)
118 max_x = ctx->DrawBuffer->Width - 1;
119 max_y = ctx->DrawBuffer->Height - 1;
121 if (_mesa_is_winsys_fbo(ctx->DrawBuffer))
    [all...]
  /external/llvm/lib/MC/
MCObjectFileInfo.cpp 35 = Ctx->getMachOSection("__TEXT", "__text",
39 = Ctx->getMachOSection("__DATA", "__data", 0,
43 = Ctx->getMachOSection("__DATA", "__thread_data",
47 = Ctx->getMachOSection("__DATA", "__thread_bss",
53 = Ctx->getMachOSection("__DATA", "__thread_vars",
58 = Ctx->getMachOSection("__DATA", "__thread_init",
63 = Ctx->getMachOSection("__TEXT", "__cstring",
67 = Ctx->getMachOSection("__TEXT","__ustring", 0,
70 = Ctx->getMachOSection("__TEXT", "__literal4",
74 = Ctx->getMachOSection("__TEXT", "__literal8"
    [all...]
  /external/chromium_org/content/test/data/gpu/
functional_canvas_demo.html 11 var ctx = c.getContext('2d');
12 ctx.fillStyle = "#000000";
13 ctx.fillRect(10, 10, 250, 250);
  /external/chromium_org/third_party/libva/va/
va_backend.h 57 VAStatus (*vaTerminate) ( VADriverContextP ctx );
60 VADriverContextP ctx,
66 VADriverContextP ctx,
73 VADriverContextP ctx,
81 VADriverContextP ctx,
90 VADriverContextP ctx,
95 VADriverContextP ctx,
104 VADriverContextP ctx,
113 VADriverContextP ctx,
119 VADriverContextP ctx,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/va/
va_config.c 36 vlVaQueryConfigProfiles(VADriverContextP ctx, VAProfile *profile_list, int *num_profiles)
38 if (!ctx)
51 vlVaQueryConfigEntrypoints(VADriverContextP ctx, VAProfile profile,
54 if (!ctx)
85 vlVaGetConfigAttributes(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint,
88 if (!ctx)
95 vlVaCreateConfig(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint,
98 if (!ctx)
105 vlVaDestroyConfig(VADriverContextP ctx, VAConfigID config_id)
107 if (!ctx)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
clear.c 22 struct pipe_context *ctx; variable in typeref:struct:pipe_context
31 ctx->clear(ctx, PIPE_CLEAR_COLOR, &clear_color, 0, 0);
32 ctx->flush(ctx, NULL);
34 graw_save_surface_to_file(ctx, surf, NULL);
64 ctx = screen->context_create(screen, NULL);
65 if (ctx == NULL)
89 surf = ctx->create_surface(ctx, tex, &surf_tmpl)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
glcpp.c 34 _mesa_reference_shader(struct gl_context *ctx, struct gl_shader **ptr,
37 (void) ctx;
44 load_text_fp (void *ctx, FILE *fp)
55 text = reralloc_size (ctx, text, text_size);
75 load_text_file(void *ctx, const char *filename)
81 return load_text_fp (ctx, stdin);
90 text = load_text_fp (ctx, fp);
101 void *ctx = ralloc(NULL, void*); local
102 char *info_log = ralloc_strdup(ctx, "");
110 shader = load_text_file (ctx, filename)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
feedback.h 40 _mesa_feedback_vertex( struct gl_context *ctx,
47 _mesa_feedback_token( struct gl_context *ctx, GLfloat token )
49 if (ctx->Feedback.Count < ctx->Feedback.BufferSize) {
50 ctx->Feedback.Buffer[ctx->Feedback.Count] = token;
52 ctx->Feedback.Count++;
57 _mesa_update_hitflag( struct gl_context *ctx, GLfloat z );
68 _mesa_feedback_vertex( struct gl_context *ctx,
79 _mesa_feedback_token( struct gl_context *ctx, GLfloat token
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_save_draw.c 50 _playback_copy_to_current(struct gl_context *ctx,
53 struct vbo_context *vbo = vbo_context(ctx);
73 ctx->Driver.GetBufferSubData( ctx, offset,
102 ctx->NewState |= _NEW_LIGHT;
104 ctx->NewState |= _NEW_CURRENT_ATTRIB;
113 if (ctx->Light.ColorMaterialEnabled) {
114 _mesa_update_color_material(ctx, ctx->Current.Attrib[VBO_ATTRIB_COLOR0]);
122 ctx->Driver.CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
ICONSTANTVisitor.java 20 //Object visit (CONSTANT_info constant, Object ctx);
22 Object visit (CONSTANT_Class_info constant, Object ctx);
24 Object visit (CONSTANT_InterfaceMethodref_info constant, Object ctx);
25 Object visit (CONSTANT_Methodref_info constant, Object ctx);
26 Object visit (CONSTANT_Fieldref_info constant, Object ctx);
28 Object visit (CONSTANT_Double_info constant, Object ctx);
29 Object visit (CONSTANT_Float_info constant, Object ctx);
30 Object visit (CONSTANT_Integer_info constant, Object ctx);
31 Object visit (CONSTANT_Long_info constant, Object ctx);
32 Object visit (CONSTANT_String_info constant, Object ctx);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/va/
va_config.c 36 vlVaQueryConfigProfiles(VADriverContextP ctx, VAProfile *profile_list, int *num_profiles)
38 if (!ctx)
51 vlVaQueryConfigEntrypoints(VADriverContextP ctx, VAProfile profile,
54 if (!ctx)
85 vlVaGetConfigAttributes(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint,
88 if (!ctx)
95 vlVaCreateConfig(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint,
98 if (!ctx)
105 vlVaDestroyConfig(VADriverContextP ctx, VAConfigID config_id)
107 if (!ctx)
    [all...]
  /external/mesa3d/src/glsl/glcpp/
glcpp.c 34 _mesa_reference_shader(struct gl_context *ctx, struct gl_shader **ptr,
37 (void) ctx;
44 load_text_fp (void *ctx, FILE *fp)
55 text = reralloc_size (ctx, text, text_size);
75 load_text_file(void *ctx, const char *filename)
81 return load_text_fp (ctx, stdin);
90 text = load_text_fp (ctx, fp);
101 void *ctx = ralloc(NULL, void*); local
102 char *info_log = ralloc_strdup(ctx, "");
110 shader = load_text_file (ctx, filename)
    [all...]
  /external/mesa3d/src/mesa/main/
feedback.h 40 _mesa_feedback_vertex( struct gl_context *ctx,
47 _mesa_feedback_token( struct gl_context *ctx, GLfloat token )
49 if (ctx->Feedback.Count < ctx->Feedback.BufferSize) {
50 ctx->Feedback.Buffer[ctx->Feedback.Count] = token;
52 ctx->Feedback.Count++;
57 _mesa_update_hitflag( struct gl_context *ctx, GLfloat z );
68 _mesa_feedback_vertex( struct gl_context *ctx,
79 _mesa_feedback_token( struct gl_context *ctx, GLfloat token
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_save_draw.c 50 _playback_copy_to_current(struct gl_context *ctx,
53 struct vbo_context *vbo = vbo_context(ctx);
73 ctx->Driver.GetBufferSubData( ctx, offset,
102 ctx->NewState |= _NEW_LIGHT;
104 ctx->NewState |= _NEW_CURRENT_ATTRIB;
113 if (ctx->Light.ColorMaterialEnabled) {
114 _mesa_update_color_material(ctx, ctx->Current.Attrib[VBO_ATTRIB_COLOR0]);
122 ctx->Driver.CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END
    [all...]
  /external/wpa_supplicant_8/src/drivers/
netlink.h 16 void *ctx; member in struct:netlink_config
17 void (*newlink_cb)(void *ctx, struct ifinfomsg *ifi, u8 *buf,
19 void (*dellink_cb)(void *ctx, struct ifinfomsg *ifi, u8 *buf,

Completed in 1085 milliseconds

<<21222324252627282930>>