/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
e_cast.c | 68 static int cast_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, 76 #define data(ctx) EVP_C_DATA(EVP_CAST_KEY,ctx) 83 static int cast_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, 86 CAST_set_key(&data(ctx)->ks,EVP_CIPHER_CTX_key_length(ctx),key);
|
m_ecdsa.c | 121 static int init(EVP_MD_CTX *ctx) 122 { return SHA1_Init(ctx->md_data); } 124 static int update(EVP_MD_CTX *ctx,const void *data,size_t count) 125 { return SHA1_Update(ctx->md_data,data,count); } 127 static int final(EVP_MD_CTX *ctx,unsigned char *md) 128 { return SHA1_Final(md,ctx->md_data); }
|
m_wp.c | 14 static int init(EVP_MD_CTX *ctx) 15 { return WHIRLPOOL_Init(ctx->md_data); } 17 static int update(EVP_MD_CTX *ctx,const void *data,size_t count) 18 { return WHIRLPOOL_Update(ctx->md_data,data,count); } 20 static int final(EVP_MD_CTX *ctx,unsigned char *md) 21 { return WHIRLPOOL_Final(md,ctx->md_data); }
|
/external/elfutils/libasm/ |
disasm_begin.c | 49 DisasmCtx_t *ctx = (DisasmCtx_t *) malloc (sizeof (DisasmCtx_t)); local 50 if (ctx == NULL) 56 ctx->ebl = ebl; 57 ctx->elf = elf; 58 ctx->symcb = symcb; 60 return ctx;
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
api_transform.c | 36 struct vg_context *ctx = vg_current_context(); local 37 struct matrix *mat = vg_state_matrix(&ctx->state.vg); 43 struct vg_context *ctx = vg_current_context(); local 46 if (!ctx) 50 vg_set_error(ctx, VG_ILLEGAL_ARGUMENT_ERROR); 54 mat = vg_state_matrix(&ctx->state.vg); 57 if (ctx->state.vg.matrix_mode != VG_MATRIX_IMAGE_USER_TO_SURFACE) { 65 struct vg_context *ctx = vg_current_context(); local 68 if (!ctx) 72 vg_set_error(ctx, VG_ILLEGAL_ARGUMENT_ERROR) 82 struct vg_context *ctx = vg_current_context(); local 105 struct vg_context *ctx = vg_current_context(); local 112 struct vg_context *ctx = vg_current_context(); local 119 struct vg_context *ctx = vg_current_context(); local 126 struct vg_context *ctx = vg_current_context(); local [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_context.c | 72 static const GLubyte *r200GetString( struct gl_context *ctx, GLenum name ) 74 r200ContextPtr rmesa = R200_CONTEXT(ctx); 151 R200_STATECHANGE( rmesa, ctx ); 153 rmesa->hw.ctx.cmd[CTX_RB3D_COLORPITCH] |= R200_COLOR_TILE_ENABLE; 155 else rmesa->hw.ctx.cmd[CTX_RB3D_COLORPITCH] &= ~R200_COLOR_TILE_ENABLE; 211 struct gl_context *ctx; local 292 ctx = rmesa->radeon.glCtx; 295 _swrast_CreateContext( ctx ); 296 _vbo_CreateContext( ctx ); 297 _tnl_CreateContext( ctx ); [all...] |
/external/mesa3d/src/mesa/main/ |
errors.h | 54 _mesa_init_errors( struct gl_context *ctx ); 57 _mesa_free_errors_data( struct gl_context *ctx ); 63 _mesa_problem( const struct gl_context *ctx, const char *fmtString, ... ) PRINTFLIKE(2, 3); 66 _mesa_error( struct gl_context *ctx, GLenum error, const char *fmtString, ... ) PRINTFLIKE(3, 4); 69 _mesa_debug( const struct gl_context *ctx, const char *fmtString, ... ) PRINTFLIKE(2, 3); 72 _mesa_shader_debug( struct gl_context *ctx, GLenum type, GLuint id, const char *msg, int len );
|
/external/mesa3d/src/mesa/state_tracker/ |
st_atom_clip.c | 47 const struct gl_context *ctx = st->ctx; local 50 STATIC_ASSERT(sizeof(clip.ucp) <= sizeof(ctx->Transform._ClipUserPlane)); 55 if (ctx->Shader.CurrentVertexProgram) 60 use_eye ? ctx->Transform.EyeUserPlane 61 : ctx->Transform._ClipUserPlane, sizeof(clip.ucp));
|
/external/mesa3d/src/mesa/swrast/ |
s_feedback.h | 34 extern void _swrast_feedback_point( struct gl_context *ctx, const SWvertex *v ); 36 extern void _swrast_feedback_line( struct gl_context *ctx, 39 extern void _swrast_feedback_triangle( struct gl_context *ctx, const SWvertex *v0, 42 extern void _swrast_select_point( struct gl_context *ctx, const SWvertex *v ); 44 extern void _swrast_select_line( struct gl_context *ctx, 47 extern void _swrast_select_triangle( struct gl_context *ctx, const SWvertex *v0,
|
/external/openssl/crypto/evp/ |
e_bf.c | 67 static int bf_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, 75 #define data(ctx) EVP_C_DATA(EVP_BF_KEY,ctx) 81 static int bf_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, 84 BF_set_key(&data(ctx)->ks,EVP_CIPHER_CTX_key_length(ctx),key);
|
e_cast.c | 68 static int cast_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, 76 #define data(ctx) EVP_C_DATA(EVP_CAST_KEY,ctx) 83 static int cast_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, 86 CAST_set_key(&data(ctx)->ks,EVP_CIPHER_CTX_key_length(ctx),key);
|
m_ecdsa.c | 121 static int init(EVP_MD_CTX *ctx) 122 { return SHA1_Init(ctx->md_data); } 124 static int update(EVP_MD_CTX *ctx,const void *data,size_t count) 125 { return SHA1_Update(ctx->md_data,data,count); } 127 static int final(EVP_MD_CTX *ctx,unsigned char *md) 128 { return SHA1_Final(md,ctx->md_data); }
|
m_wp.c | 14 static int init(EVP_MD_CTX *ctx) 15 { return WHIRLPOOL_Init(ctx->md_data); } 17 static int update(EVP_MD_CTX *ctx,const void *data,size_t count) 18 { return WHIRLPOOL_Update(ctx->md_data,data,count); } 20 static int final(EVP_MD_CTX *ctx,unsigned char *md) 21 { return WHIRLPOOL_Final(md,ctx->md_data); }
|
/external/e2fsprogs/e2fsck/ |
dirinfo.c | 37 static void e2fsck_put_dir_info(e2fsck_t ctx, struct dir_info *dir); 39 static void setup_tdb(e2fsck_t ctx, ext2_ino_t num_dirs) 41 struct dir_info_db *db = ctx->dir_info; 47 profile_get_string(ctx->profile, "scratch_files", "directory", 0, 0, 49 profile_get_uint(ctx->profile, "scratch_files", 51 profile_get_boolean(ctx->profile, "scratch_files", 62 uuid_unparse(ctx->fs->super->s_uuid, uuid); 70 static void setup_db(e2fsck_t ctx) 77 e2fsck_allocate_memory(ctx, sizeof(struct dir_info_db), 82 ctx->dir_info = db [all...] |
/external/chromium_org/third_party/libxml/src/include/libxml/ |
SAX.h | 27 getPublicId (void *ctx); 29 getSystemId (void *ctx); 31 setDocumentLocator (void *ctx, 35 getLineNumber (void *ctx); 37 getColumnNumber (void *ctx); 40 isStandalone (void *ctx); 42 hasInternalSubset (void *ctx); 44 hasExternalSubset (void *ctx); 47 internalSubset (void *ctx, 52 externalSubset (void *ctx, [all...] |
/external/compiler-rt/lib/tsan/tests/rtl/ |
tsan_posix.cc | 102 CondContext &ctx = *static_cast<CondContext*>(p); local 104 EXPECT_EQ(pthread_mutex_lock(&ctx.m), 0); 105 EXPECT_EQ(ctx.data, 0); 106 ctx.data = 1; 107 EXPECT_EQ(pthread_cond_signal(&ctx.c), 0); 108 EXPECT_EQ(pthread_mutex_unlock(&ctx.m), 0); 110 EXPECT_EQ(pthread_mutex_lock(&ctx.m), 0); 111 while (ctx.data != 2) 112 EXPECT_EQ(pthread_cond_wait(&ctx.c, &ctx.m), 0) 124 CondContext ctx; local [all...] |
/external/libxml2/include/libxml/ |
SAX.h | 27 getPublicId (void *ctx); 29 getSystemId (void *ctx); 31 setDocumentLocator (void *ctx, 35 getLineNumber (void *ctx); 37 getColumnNumber (void *ctx); 40 isStandalone (void *ctx); 42 hasInternalSubset (void *ctx); 44 hasExternalSubset (void *ctx); 47 internalSubset (void *ctx, 52 externalSubset (void *ctx, [all...] |
/hardware/qcom/display/msm8974/libhwcomposer/ |
hwc_mdpcomp.h | 43 int prepare(hwc_context_t *ctx, hwc_display_contents_1_t* list); 45 virtual bool draw(hwc_context_t *ctx, hwc_display_contents_1_t *list) = 0; 56 static bool init(hwc_context_t *ctx); 123 virtual bool allocLayerPipes(hwc_context_t *ctx, 126 ovutils::eDest getMdpPipe(hwc_context_t *ctx, ePipeType type, int mixer); 128 virtual int configure(hwc_context_t *ctx, hwc_layer_1_t *layer, 131 virtual bool arePipesAvailable(hwc_context_t *ctx, 135 void setMDPCompLayerFlags(hwc_context_t *ctx, 138 bool isFrameDoable(hwc_context_t *ctx); 140 bool isFullFrameDoable(hwc_context_t *ctx, hwc_display_contents_1_t* list) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_cc.c | 43 struct gl_context *ctx = &brw->intel.ctx; local 50 if (ctx->Transform.DepthClamp) { 52 ccv->min_depth = MIN2(ctx->Viewport.Near, ctx->Viewport.Far); 53 ccv->max_depth = MAX2(ctx->Viewport.Near, ctx->Viewport.Far); 99 struct gl_context *ctx = &brw->intel.ctx; local 107 if (ctx->Stencil._Enabled) 242 struct gl_context *ctx = &intel->ctx; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_cc.c | 43 struct gl_context *ctx = &brw->intel.ctx; local 50 if (ctx->Transform.DepthClamp) { 52 ccv->min_depth = MIN2(ctx->Viewport.Near, ctx->Viewport.Far); 53 ccv->max_depth = MAX2(ctx->Viewport.Near, ctx->Viewport.Far); 99 struct gl_context *ctx = &brw->intel.ctx; local 107 if (ctx->Stencil._Enabled) 242 struct gl_context *ctx = &intel->ctx; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
tgsi_sanity.c | 151 struct sanity_check_ctx *ctx, 157 if (!ctx->print) 165 ctx->errors++; 170 struct sanity_check_ctx *ctx, 176 if (!ctx->print) 184 ctx->warnings++; 189 struct sanity_check_ctx *ctx, 193 report_error( ctx, "(%u): Invalid register file name", file ); 201 struct sanity_check_ctx *ctx, 205 ctx->regs_decl, scan_register_key(reg) 313 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; local 395 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; local 440 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; local 473 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; local 486 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; local 535 struct sanity_check_ctx ctx; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/ |
xa_context.c | 47 struct xa_context *ctx = calloc(1, sizeof(*ctx)); local 49 ctx->xa = xa; 50 ctx->pipe = xa->screen->context_create(xa->screen, NULL); 51 ctx->cso = cso_create_context(ctx->pipe); 52 ctx->shaders = xa_shaders_create(ctx); 53 renderer_init_state(ctx); 55 return ctx; [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_sanity.c | 151 struct sanity_check_ctx *ctx, 157 if (!ctx->print) 165 ctx->errors++; 170 struct sanity_check_ctx *ctx, 176 if (!ctx->print) 184 ctx->warnings++; 189 struct sanity_check_ctx *ctx, 193 report_error( ctx, "(%u): Invalid register file name", file ); 201 struct sanity_check_ctx *ctx, 205 ctx->regs_decl, scan_register_key(reg) 313 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; local 395 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; local 440 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; local 473 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; local 486 struct sanity_check_ctx *ctx = (struct sanity_check_ctx *) iter; local 535 struct sanity_check_ctx ctx; local [all...] |
/external/mesa3d/src/gallium/state_trackers/xa/ |
xa_context.c | 47 struct xa_context *ctx = calloc(1, sizeof(*ctx)); local 49 ctx->xa = xa; 50 ctx->pipe = xa->screen->context_create(xa->screen, NULL); 51 ctx->cso = cso_create_context(ctx->pipe); 52 ctx->shaders = xa_shaders_create(ctx); 53 renderer_init_state(ctx); 55 return ctx; [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/ |
tnl.h | 43 _tnl_CreateContext( struct gl_context *ctx ); 46 _tnl_DestroyContext( struct gl_context *ctx ); 49 _tnl_InvalidateState( struct gl_context *ctx, GLuint new_state ); 56 _tnl_wakeup( struct gl_context *ctx ); 61 _tnl_need_projected_coords( struct gl_context *ctx, GLboolean flag ); 67 _tnl_allow_vertex_fog( struct gl_context *ctx, GLboolean value ); 70 _tnl_allow_pixel_fog( struct gl_context *ctx, GLboolean value ); 73 _tnl_program_string(struct gl_context *ctx, GLenum target, struct gl_program *program); 79 _tnl_draw_prims( struct gl_context *ctx, 88 _tnl_vbo_draw_prims( struct gl_context *ctx, [all...] |