Searched defs:ctx (Results 1 - 25 of 213) sorted by relevance

123456789

/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dglamor_context.h38 void *ctx; member in struct:glamor_context
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dglamor_context.h38 void *ctx; member in struct:glamor_context
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dlineconsole.h31 struct ansiesc_context ctx; member in struct:line_console
H A Dcbc.h17 * @v ctx Context
24 static inline int cbc_setkey ( void *ctx, const void *key, size_t keylen, argument
28 return cipher_setkey ( raw_cipher, ctx, key, keylen );
34 * @v ctx Context
39 static inline void cbc_setiv ( void *ctx __unused, const void *iv,
45 extern void cbc_encrypt ( void *ctx, const void *src, void *dst,
48 extern void cbc_decrypt ( void *ctx, const void *src, void *dst,
67 static int _cbc_name ## _setkey ( void *ctx, const void *key, \
69 struct _cbc_name ## _context * _cbc_name ## _ctx = ctx; \
73 static void _cbc_name ## _setiv ( void *ctx, cons
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/
H A Dprogram.h50 _mesa_init_program(GLcontext *ctx);
53 _mesa_free_program_data(GLcontext *ctx);
56 _mesa_update_default_objects_program(GLcontext *ctx);
59 _mesa_set_program_error(GLcontext *ctx, GLint pos, const char *string);
67 _mesa_init_vertex_program(GLcontext *ctx,
72 _mesa_init_fragment_program(GLcontext *ctx,
77 _mesa_new_program(GLcontext *ctx, GLenum target, GLuint id);
80 _mesa_delete_program(GLcontext *ctx, struct gl_program *prog);
83 _mesa_lookup_program(GLcontext *ctx, GLuint id);
86 _mesa_reference_program(GLcontext *ctx,
91 _mesa_reference_vertprog(GLcontext *ctx, struct gl_vertex_program **ptr, struct gl_vertex_program *prog) argument
100 _mesa_reference_fragprog(GLcontext *ctx, struct gl_fragment_program **ptr, struct gl_fragment_program *prog) argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dansiesc.c55 * @v ctx ANSI escape sequence context
68 int ansiesc_process ( struct ansiesc_context *ctx, int c ) { argument
69 if ( ctx->count == 0 ) {
72 ctx->count = 1;
73 memset ( ctx->params, 0xff, sizeof ( ctx->params ) );
74 ctx->function = 0;
85 int *param = &ctx->params[ctx->count - 1];
91 ctx
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/axtls/
H A Dos_port.h40 static void AES_encrypt ( const struct aes_key_st *ctx, uint32_t *data );
41 static void AES_decrypt ( const struct aes_key_st *ctx, uint32_t *data );
43 void axtls_aes_encrypt ( void *ctx, uint32_t *data ) { argument
44 AES_encrypt ( ctx, data );
47 void axtls_aes_decrypt ( void *ctx, uint32_t *data ) { argument
48 AES_decrypt ( ctx, data );
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_multisample.c12 void crStateMultisampleInit (CRContext *ctx) argument
14 CRMultisampleState *m = &ctx->multisample;
22 RESET(mb->enable, ctx->bitid);
26 RESET(mb->sampleCoverageValue, ctx->bitid);
28 RESET(mb->dirty, ctx->bitid);
H A Dstate_hint.c12 void crStateHintInit (CRContext *ctx) argument
14 CRHintState *h = &ctx->hint;
19 RESET(hb->perspectiveCorrection, ctx->bitid);
21 RESET(hb->pointSmooth, ctx->bitid);
23 RESET(hb->lineSmooth, ctx->bitid);
25 RESET(hb->polygonSmooth, ctx->bitid);
27 RESET(hb->fog, ctx->bitid);
30 RESET(hb->clipVolumeClipping, ctx->bitid);
34 RESET(hb->textureCompression, ctx->bitid);
38 RESET(hb->generateMipmap, ctx
[all...]
H A Dstate_line.c12 void crStateLineInit (CRContext *ctx) argument
14 CRLineState *l = &ctx->line;
20 RESET(lb->enable, ctx->bitid);
22 RESET(lb->width, ctx->bitid);
25 RESET(lb->stipple, ctx->bitid);
34 RESET(lb->dirty, ctx->bitid);
H A Dstate_fog.c12 void crStateFogInit (CRContext *ctx) argument
14 CRFogState *f = &ctx->fog;
20 RESET(fb->color, ctx->bitid);
22 RESET(fb->density, ctx->bitid);
24 RESET(fb->end, ctx->bitid);
26 RESET(fb->start, ctx->bitid);
28 RESET(fb->mode, ctx->bitid);
30 RESET(fb->index, ctx->bitid);
32 RESET(fb->enable, ctx->bitid);
36 RESET(fb->fogDistanceMode, ctx
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/tests/
H A Ddigest_test.c44 uint8_t ctx[digest->ctxsize]; local
50 digest_init ( digest, ctx );
59 digest_update ( digest, ctx, data, frag_len );
65 digest_final ( digest, ctx, out );
H A Dcbc_test.c51 uint8_t ctx[ cipher->ctxsize ]; local
56 rc = cipher_setkey ( cipher, ctx, key, key_len );
58 cipher_setiv ( cipher, ctx, iv );
61 cipher_encrypt ( cipher, ctx, plaintext, ciphertext, len );
82 uint8_t ctx[ cipher->ctxsize ]; local
87 rc = cipher_setkey ( cipher, ctx, key, key_len );
89 cipher_setiv ( cipher, ctx, iv );
92 cipher_decrypt ( cipher, ctx, ciphertext, plaintext, len );
/vbox/src/VBox/GuestHost/OpenGL/include/state/
H A Dcr_lists.h33 DECLEXPORT(void) crStateListsInit(CRContext *ctx); variable
34 DECLEXPORT(void) crStateListsDestroy(CRContext *ctx); variable
H A Dcr_fog.h51 DECLEXPORT(void) crStateFogInit(CRContext *ctx); variable
H A Dcr_hint.h51 DECLEXPORT(void) crStateHintInit(CRContext *ctx); variable
H A Dcr_line.h33 DECLEXPORT(void) crStateLineInit (CRContext *ctx); variable
H A Dcr_multisample.h36 DECLEXPORT(void) crStateMultisampleInit(CRContext *ctx); variable
H A Dcr_occlude.h44 DECLEXPORT(void) crStateOcclusionInit(CRContext *ctx); variable
46 DECLEXPORT(void) crStateOcclusionDestroy(CRContext *ctx); variable
/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/
H A Dnouveau_drmif.h35 drm_context_t ctx; member in struct:nouveau_device_priv
43 int fd, drm_context_t ctx);
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/main/
H A Dteximage.h49 _mesa_base_tex_format( GLcontext *ctx, GLint internalFormat );
57 _mesa_new_texture_image( GLcontext *ctx );
61 _mesa_delete_texture_image( GLcontext *ctx, struct gl_texture_image *teximage );
64 _mesa_free_texture_image_data( GLcontext *ctx,
69 _mesa_init_teximage_fields(GLcontext *ctx, GLenum target,
82 _mesa_select_tex_object(GLcontext *ctx, const struct gl_texture_unit *texUnit,
87 _mesa_select_tex_image(GLcontext *ctx, const struct gl_texture_object *texObj,
92 _mesa_get_tex_image(GLcontext *ctx, struct gl_texture_object *texObj,
97 _mesa_get_proxy_tex_image(GLcontext *ctx, GLenum target, GLint level);
101 _mesa_max_texture_levels(GLcontext *ctx, GLenu
114 _mesa_lock_texture(GLcontext *ctx, struct gl_texture_object *texObj) argument
122 _mesa_unlock_texture(GLcontext *ctx, struct gl_texture_object *texObj) argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dcbc.c54 * @v ctx Context
61 void cbc_encrypt ( void *ctx, const void *src, void *dst, size_t len, argument
69 cipher_encrypt ( raw_cipher, ctx, cbc_ctx, dst, blocksize );
80 * @v ctx Context
87 void cbc_decrypt ( void *ctx, const void *src, void *dst, size_t len, argument
94 cipher_decrypt ( raw_cipher, ctx, src, dst, blocksize );
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/
H A Dprint.c42 struct printf_context ctx; member in struct:printw_context
46 static void _printw_handler ( struct printf_context *ctx, unsigned int c ) { argument
48 container_of ( ctx, struct printw_context, ctx );
65 wctx.ctx.handler = _printw_handler;
66 vcprintf ( &(wctx.ctx), fmt, varglist );
/vbox/src/VBox/Devices/PC/ipxe/src/net/80211/
H A Dwpa_psk.c54 struct wpa_common_ctx *ctx = dev->handshaker->priv; local
61 DBGC ( ctx, "WPA-PSK %p: no passphrase provided!\n", ctx );
69 DBGC ( ctx, "WPA-PSK %p: derived PMK from passphrase `%s':\n", ctx,
71 DBGC_HD ( ctx, pmk, WPA_PMK_LEN );
73 return wpa_start ( dev, ctx, pmk, WPA_PMK_LEN );
84 struct wpa_common_ctx *ctx = dev->handshaker->priv; local
86 switch ( ctx->state ) {
/vbox/src/VBox/Devices/PC/ipxe/src/usr/
H A Diwmgmt.c120 struct net80211_probe_ctx *ctx; local
147 ctx = net80211_probe_start ( dev, "", 0 );
148 if ( ! ctx ) {
153 while ( ! ( rc = net80211_probe_step ( ctx ) ) ) {
157 networks = net80211_probe_finish_all ( ctx );

Completed in 144 milliseconds

123456789