/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/gallium/state_trackers/vega/ |
api_masks.c | 41 struct vg_context *ctx = vg_current_context(); local 44 vg_set_error(ctx, VG_ILLEGAL_ARGUMENT_ERROR); 49 vg_set_error(ctx, VG_ILLEGAL_ARGUMENT_ERROR); 54 vg_validate_state(ctx); 67 vg_set_error(ctx, VG_BAD_HANDLE_ERROR); 74 struct vg_context *ctx = vg_current_context(); local 75 struct st_framebuffer *stfb = ctx->draw_buffer; 78 vg_set_error(ctx, VG_ILLEGAL_ARGUMENT_ERROR); 82 vg_validate_state(ctx); 86 ctx->state.vg.clear_color[0] 117 struct vg_context *ctx = vg_current_context(); local 144 struct vg_context *ctx = vg_current_context(); local 159 struct vg_context *ctx = vg_current_context(); local 180 struct vg_context *ctx = vg_current_context(); local 224 struct vg_context *ctx = vg_current_context(); local [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/drivers/dri/i965/ |
brw_tex.c | 48 struct gl_context *ctx = &brw->intel.ctx; local 53 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_buffers.c | 44 intel_renderbuffer(intel->ctx.DrawBuffer->_ColorDrawBuffers[0]); 58 = intel_renderbuffer(intel->ctx.ReadBuffer->_ColorReadBuffer); 72 const struct gl_framebuffer *fb = intel->ctx.DrawBuffer; 84 intelDrawBuffer(struct gl_context * ctx, GLenum mode) 86 if (ctx->DrawBuffer && _mesa_is_winsys_fbo(ctx->DrawBuffer)) { 87 struct intel_context *const intel = intel_context(ctx); 102 intel_draw_buffer(ctx); 107 intelReadBuffer(struct gl_context * ctx, GLenum mode) 109 if (ctx->DrawBuffer && _mesa_is_winsys_fbo(ctx->DrawBuffer)) [all...] |
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nouveau_scratch.h | 42 nouveau_get_scratch(struct gl_context *ctx, unsigned size, 46 nouveau_scratch_init(struct gl_context *ctx); 49 nouveau_scratch_destroy(struct gl_context *ctx);
|
/external/mesa3d/src/mesa/swrast/ |
s_triangle.h | 35 _swrast_culltriangle( struct gl_context *ctx, 41 _swrast_choose_triangle( struct gl_context *ctx ); 44 _swrast_add_spec_terms_triangle( struct gl_context *ctx,
|
/external/openssl/crypto/ec/ |
ec_check.c | 59 int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx) 66 if (ctx == NULL) 68 ctx = new_ctx = BN_CTX_new(); 69 if (ctx == NULL) 75 BN_CTX_start(ctx); 76 if ((order = BN_CTX_get(ctx)) == NULL) goto err; 79 if (!EC_GROUP_check_discriminant(group, ctx)) 91 if (!EC_POINT_is_on_curve(group, group->generator, ctx)) 99 if (!EC_GROUP_get_order(group, order, ctx)) goto err; 106 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx)) goto err [all...] |
/external/ppp/pppd/ |
chap-md5.c | 62 MD5_CTX ctx; local 71 MD5_Init(&ctx); 72 MD5_Update(&ctx, &idbyte, 1); 73 MD5_Update(&ctx, secret, secret_len); 74 MD5_Update(&ctx, challenge, challenge_len); 75 MD5_Final(hash, &ctx); 92 MD5_CTX ctx; local 96 MD5_Init(&ctx); 97 MD5_Update(&ctx, &idbyte, 1); 98 MD5_Update(&ctx, secret, secret_len) [all...] |
/external/wpa_supplicant_8/src/drivers/ |
rfkill.h | 15 void *ctx; member in struct:rfkill_config 17 void (*blocked_cb)(void *ctx); 18 void (*unblocked_cb)(void *ctx);
|
/system/core/include/mincrypt/ |
sha.h | 16 void SHA_init(SHA_CTX* ctx); 17 void SHA_update(SHA_CTX* ctx, const void* data, int len); 18 const uint8_t* SHA_final(SHA_CTX* ctx);
|
sha256.h | 16 void SHA256_init(SHA256_CTX* ctx); 17 void SHA256_update(SHA256_CTX* ctx, const void* data, int len); 18 const uint8_t* SHA256_final(SHA256_CTX* ctx);
|
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/ |
vbo_save.c | 40 static void vbo_save_callback_init( struct gl_context *ctx ) 42 ctx->Driver.NewList = vbo_save_NewList; 43 ctx->Driver.EndList = vbo_save_EndList; 44 ctx->Driver.SaveFlushVertices = vbo_save_SaveFlushVertices; 45 ctx->Driver.BeginCallList = vbo_save_BeginCallList; 46 ctx->Driver.EndCallList = vbo_save_EndCallList; 47 ctx->Driver.NotifySaveBegin = vbo_save_NotifyBegin; 55 void vbo_save_init( struct gl_context *ctx ) 57 struct vbo_context *vbo = vbo_context(ctx); 60 save->ctx = ctx [all...] |
/external/mesa3d/src/mesa/vbo/ |
vbo_save.c | 40 static void vbo_save_callback_init( struct gl_context *ctx ) 42 ctx->Driver.NewList = vbo_save_NewList; 43 ctx->Driver.EndList = vbo_save_EndList; 44 ctx->Driver.SaveFlushVertices = vbo_save_SaveFlushVertices; 45 ctx->Driver.BeginCallList = vbo_save_BeginCallList; 46 ctx->Driver.EndCallList = vbo_save_EndCallList; 47 ctx->Driver.NotifySaveBegin = vbo_save_NotifyBegin; 55 void vbo_save_init( struct gl_context *ctx ) 57 struct vbo_context *vbo = vbo_context(ctx); 60 save->ctx = ctx [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
light.c | 41 GET_CURRENT_CONTEXT(ctx); 42 ASSERT_OUTSIDE_BEGIN_END(ctx); 45 _mesa_debug(ctx, "glShadeModel %s\n", _mesa_lookup_enum_by_nr(mode)); 48 _mesa_error(ctx, GL_INVALID_ENUM, "glShadeModel"); 52 if (ctx->Light.ShadeModel == mode) 55 FLUSH_VERTICES(ctx, _NEW_LIGHT); 56 ctx->Light.ShadeModel = mode; 58 if (ctx->Driver.ShadeModel) 59 ctx->Driver.ShadeModel( ctx, mode ) [all...] |
/external/mesa3d/src/mesa/main/ |
light.c | 41 GET_CURRENT_CONTEXT(ctx); 42 ASSERT_OUTSIDE_BEGIN_END(ctx); 45 _mesa_debug(ctx, "glShadeModel %s\n", _mesa_lookup_enum_by_nr(mode)); 48 _mesa_error(ctx, GL_INVALID_ENUM, "glShadeModel"); 52 if (ctx->Light.ShadeModel == mode) 55 FLUSH_VERTICES(ctx, _NEW_LIGHT); 56 ctx->Light.ShadeModel = mode; 58 if (ctx->Driver.ShadeModel) 59 ctx->Driver.ShadeModel( ctx, mode ) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/ |
ss_triangle.c | 50 typedef void (* swsetup_edge_render_prim_tri)(struct gl_context *ctx, 63 _swsetup_edge_render_line_tri(struct gl_context *ctx, 72 SScontext *swsetup = SWSETUP_CONTEXT(ctx); 75 if (ef[e2]) _swrast_Line( ctx, v2, v0 ); 76 if (ef[e0]) _swrast_Line( ctx, v0, v1 ); 77 if (ef[e1]) _swrast_Line( ctx, v1, v2 ); 79 if (ef[e0]) _swrast_Line( ctx, v0, v1 ); 80 if (ef[e1]) _swrast_Line( ctx, v1, v2 ); 81 if (ef[e2]) _swrast_Line( ctx, v2, v0 ); 89 _swsetup_edge_render_point_tri(struct gl_context *ctx, [all...] |
/external/mesa3d/src/mesa/swrast_setup/ |
ss_triangle.c | 50 typedef void (* swsetup_edge_render_prim_tri)(struct gl_context *ctx, 63 _swsetup_edge_render_line_tri(struct gl_context *ctx, 72 SScontext *swsetup = SWSETUP_CONTEXT(ctx); 75 if (ef[e2]) _swrast_Line( ctx, v2, v0 ); 76 if (ef[e0]) _swrast_Line( ctx, v0, v1 ); 77 if (ef[e1]) _swrast_Line( ctx, v1, v2 ); 79 if (ef[e0]) _swrast_Line( ctx, v0, v1 ); 80 if (ef[e1]) _swrast_Line( ctx, v1, v2 ); 81 if (ef[e2]) _swrast_Line( ctx, v2, v0 ); 89 _swsetup_edge_render_point_tri(struct gl_context *ctx, [all...] |
/system/core/libmincrypt/ |
sha256.c | 57 static void SHA256_Transform(SHA256_CTX* ctx) { 60 uint8_t* p = ctx->buf; 77 A = ctx->state[0]; 78 B = ctx->state[1]; 79 C = ctx->state[2]; 80 D = ctx->state[3]; 81 E = ctx->state[4]; 82 F = ctx->state[5]; 83 G = ctx->state[6]; 84 H = ctx->state[7] 179 SHA256_CTX ctx; local [all...] |
/external/chromium_org/third_party/libusb/src/libusb/ |
hotplug.c | 91 int hotplug_callback(struct libusb_context *ctx, struct libusb_device *dev, 145 static int usbi_hotplug_match_cb (struct libusb_context *ctx, 174 return hotplug_cb->cb (ctx, dev, event, hotplug_cb->user_data); 177 void usbi_hotplug_match(struct libusb_context *ctx, struct libusb_device *dev, 183 usbi_mutex_lock(&ctx->hotplug_cbs_lock); 185 list_for_each_entry_safe(hotplug_cb, next, &ctx->hotplug_cbs, list, struct libusb_hotplug_callback) { 186 usbi_mutex_unlock(&ctx->hotplug_cbs_lock); 187 ret = usbi_hotplug_match_cb (ctx, dev, event, hotplug_cb); 188 usbi_mutex_lock(&ctx->hotplug_cbs_lock); 196 usbi_mutex_unlock(&ctx->hotplug_cbs_lock) [all...] |
/external/chromium_org/third_party/libxml/src/include/libxml/ |
SAX2.h | 25 xmlSAX2GetPublicId (void *ctx); 27 xmlSAX2GetSystemId (void *ctx); 29 xmlSAX2SetDocumentLocator (void *ctx, 33 xmlSAX2GetLineNumber (void *ctx); 35 xmlSAX2GetColumnNumber (void *ctx); 38 xmlSAX2IsStandalone (void *ctx); 40 xmlSAX2HasInternalSubset (void *ctx); 42 xmlSAX2HasExternalSubset (void *ctx); 45 xmlSAX2InternalSubset (void *ctx, 50 xmlSAX2ExternalSubset (void *ctx, [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
intel_pixel_copy.c | 51 intel_check_copypixel_blit_fragment_ops(struct gl_context * ctx) 53 if (ctx->NewState) 54 _mesa_update_state(ctx); 58 return !(ctx->_ImageTransferState || 59 ctx->Color.AlphaEnabled || 60 ctx->Depth.Test || 61 ctx->Fog.Enabled || 62 ctx->Stencil._Enabled || 63 !ctx->Color.ColorMask[0][0] || 64 !ctx->Color.ColorMask[0][1] | [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/hmac/ |
hm_pmeth.c | 72 HMAC_CTX ctx; member in struct:__anon13668 75 static int pkey_hmac_init(EVP_PKEY_CTX *ctx) 86 HMAC_CTX_init(&hctx->ctx); 88 ctx->data = hctx; 89 ctx->keygen_info_count = 0; 102 HMAC_CTX_init(&dctx->ctx); 103 if (!HMAC_CTX_copy(&dctx->ctx, &sctx->ctx)) 114 static void pkey_hmac_cleanup(EVP_PKEY_CTX *ctx) 116 HMAC_PKEY_CTX *hctx = ctx->data [all...] |
/external/e2fsprogs/e2fsck/ |
pass1.c | 64 static void check_blocks(e2fsck_t ctx, struct problem_context *pctx, 66 static void mark_table_blocks(e2fsck_t ctx); 67 static void alloc_bb_map(e2fsck_t ctx); 68 static void alloc_imagic_map(e2fsck_t ctx); 69 static void mark_inode_bad(e2fsck_t ctx, ino_t ino); 70 static void handle_fs_bad_blocks(e2fsck_t ctx); 71 static void process_inodes(e2fsck_t ctx, char *block_buf); 75 static void adjust_extattr_refcount(e2fsck_t ctx, ext2_refcount_t refcount, 92 e2fsck_t ctx; member in struct:process_block_struct 101 e2fsck_t ctx; member in struct:scan_callback_struct 1185 e2fsck_t ctx; local 2130 e2fsck_t ctx; local 2281 e2fsck_t ctx; local 2637 e2fsck_t ctx = (e2fsck_t) fs->priv_data; local 2651 e2fsck_t ctx = (e2fsck_t) fs->priv_data; local 2662 e2fsck_t ctx = (e2fsck_t) fs->priv_data; local 2672 e2fsck_t ctx = (e2fsck_t) fs->priv_data; local 2685 e2fsck_t ctx = (e2fsck_t) fs->priv_data; local 2716 e2fsck_t ctx = (e2fsck_t) fs->priv_data; local [all...] |
/external/libxml2/include/libxml/ |
SAX2.h | 25 xmlSAX2GetPublicId (void *ctx); 27 xmlSAX2GetSystemId (void *ctx); 29 xmlSAX2SetDocumentLocator (void *ctx, 33 xmlSAX2GetLineNumber (void *ctx); 35 xmlSAX2GetColumnNumber (void *ctx); 38 xmlSAX2IsStandalone (void *ctx); 40 xmlSAX2HasInternalSubset (void *ctx); 42 xmlSAX2HasExternalSubset (void *ctx); 45 xmlSAX2InternalSubset (void *ctx, 50 xmlSAX2ExternalSubset (void *ctx, [all...] |