Searched refs:ctx (Results 501 - 525 of 4049) sorted by relevance

<<21222324252627282930>>

/external/mesa3d/src/gallium/tests/graw/
H A Dquad-sample.c30 static struct pipe_context *ctx = NULL; variable in typeref:struct:pipe_context
79 ctx->set_viewport_states( ctx, 0, 1, &vp );
95 handle = ctx->create_vertex_elements_state(ctx, 2, ve);
96 ctx->bind_vertex_elements_state(ctx, handle);
102 vbuf.buffer = pipe_buffer_create_with_data(ctx,
108 ctx->set_vertex_buffers(ctx,
[all...]
H A Dfs-frontface.c86 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
87 info.ctx->bind_vertex_elements_state(info.ctx, handle);
93 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
99 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
117 handle = graw_parse_vertex_shader(info.ctx, text);
118 info.ctx->bind_vs_state(info.ctx, handl
[all...]
/external/boringssl/src/crypto/evp/
H A Dsign.c65 int EVP_SignInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl) { argument
66 return EVP_DigestInit_ex(ctx, type, impl);
69 int EVP_SignInit(EVP_MD_CTX *ctx, const EVP_MD *type) { argument
70 return EVP_DigestInit(ctx, type);
73 int EVP_SignUpdate(EVP_MD_CTX *ctx, const void *data, size_t len) { argument
74 return EVP_DigestUpdate(ctx, data, len);
77 int EVP_SignFinal(const EVP_MD_CTX *ctx, uint8_t *sig, argument
88 if (!EVP_MD_CTX_copy_ex(&tmp_ctx, ctx) ||
96 !EVP_PKEY_CTX_set_signature_md(pkctx, ctx->digest) ||
111 int EVP_VerifyInit_ex(EVP_MD_CTX *ctx, cons argument
115 EVP_VerifyInit(EVP_MD_CTX *ctx, const EVP_MD *type) argument
119 EVP_VerifyUpdate(EVP_MD_CTX *ctx, const void *data, size_t len) argument
123 EVP_VerifyFinal(EVP_MD_CTX *ctx, const uint8_t *sig, size_t sig_len, EVP_PKEY *pkey) argument
[all...]
/external/e2fsprogs/e2fsck/
H A Djournal.c240 static void e2fsck_clear_recover(e2fsck_t ctx, int error) argument
242 ext2fs_clear_feature_journal_needs_recovery(ctx->fs->super);
246 ctx->fs->super->s_state &= ~EXT2_VALID_FS;
247 ext2fs_mark_super_dirty(ctx->fs);
278 static errcode_t e2fsck_get_journal(e2fsck_t ctx, journal_t **ret_journal) argument
281 struct ext2_super_block *sb = ctx->fs->super;
297 journal = e2fsck_allocate_memory(ctx, sizeof(journal_t), "journal");
302 dev_fs = e2fsck_allocate_memory(ctx, 2*sizeof(struct kdev_s), "kdev");
309 dev_fs->k_ctx = dev_journal->k_ctx = ctx;
316 journal->j_blocksize = ctx
532 e2fsck_journal_fix_bad_inode(e2fsck_t ctx, struct problem_context *pctx) argument
567 e2fsck_t ctx = journal->j_dev->k_ctx; local
584 e2fsck_t ctx = journal->j_dev->k_ctx; local
690 e2fsck_journal_reset_super(e2fsck_t ctx, journal_superblock_t *jsb, journal_t *journal) argument
735 e2fsck_journal_fix_corrupt_super(e2fsck_t ctx, journal_t *journal, struct problem_context *pctx) argument
757 e2fsck_journal_release(e2fsck_t ctx, journal_t *journal, int reset, int drop) argument
793 e2fsck_check_ext3_journal(e2fsck_t ctx) argument
920 recover_ext3_journal(e2fsck_t ctx) argument
961 e2fsck_run_ext3_journal(e2fsck_t ctx) argument
1025 e2fsck_move_ext3_journal(e2fsck_t ctx) argument
1150 e2fsck_fix_ext3_journal_hint(e2fsck_t ctx) argument
[all...]
/external/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_query_sw.c38 etna_sw_destroy_query(struct etna_context *ctx, struct etna_query *q) argument
46 read_counter(struct etna_context *ctx, int type) argument
50 return ctx->stats.prims_emitted;
52 return ctx->stats.draw_calls;
59 etna_sw_begin_query(struct etna_context *ctx, struct etna_query *q) argument
64 sq->begin_value = read_counter(ctx, q->type);
70 etna_sw_end_query(struct etna_context *ctx, struct etna_query *q) argument
75 sq->end_value = read_counter(ctx, q->type);
79 etna_sw_get_query_result(struct etna_context *ctx, struct etna_query *q, argument
101 etna_sw_create_query(struct etna_context *ctx, unsigne argument
[all...]
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_context.h43 extern void xa_context_flush(struct xa_context *ctx);
67 extern int xa_copy_prepare(struct xa_context *ctx,
70 extern void xa_copy(struct xa_context *ctx,
73 extern void xa_copy_done(struct xa_context *ctx);
75 extern int xa_surface_dma(struct xa_context *ctx,
82 extern void *xa_surface_map(struct xa_context *ctx,
88 xa_solid_prepare(struct xa_context *ctx, struct xa_surface *dst,
91 xa_solid(struct xa_context *ctx, int x, int y, int width, int height);
94 xa_solid_done(struct xa_context *ctx);
96 extern struct xa_fence *xa_fence_get(struct xa_context *ctx);
[all...]
/external/skia/experimental/svg/model/
H A DSkSVGUse.cpp54 bool SkSVGUse::onPrepareToRender(SkSVGRenderContext* ctx) const {
55 if (fHref.value().isEmpty() || !INHERITED::onPrepareToRender(ctx)) {
61 ctx->saveOnce();
62 ctx->canvas()->translate(fX.value(), fY.value());
70 void SkSVGUse::onRender(const SkSVGRenderContext& ctx) const {
71 const auto* ref = ctx.findNodeById(fHref);
76 ref->render(ctx);
79 SkPath SkSVGUse::onAsPath(const SkSVGRenderContext& ctx) const {
80 const auto* ref = ctx.findNodeById(fHref);
85 return ref->asPath(ctx);
[all...]
/external/skqp/experimental/svg/model/
H A DSkSVGUse.cpp54 bool SkSVGUse::onPrepareToRender(SkSVGRenderContext* ctx) const {
55 if (fHref.value().isEmpty() || !INHERITED::onPrepareToRender(ctx)) {
61 ctx->saveOnce();
62 ctx->canvas()->translate(fX.value(), fY.value());
70 void SkSVGUse::onRender(const SkSVGRenderContext& ctx) const {
71 const auto* ref = ctx.findNodeById(fHref);
76 ref->render(ctx);
79 SkPath SkSVGUse::onAsPath(const SkSVGRenderContext& ctx) const {
80 const auto* ref = ctx.findNodeById(fHref);
85 return ref->asPath(ctx);
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Drecord_input_op.cc28 explicit RecordInputOp(OpKernelConstruction* ctx) : OpKernel(ctx) { argument
31 OP_REQUIRES_OK(ctx, ctx->GetAttr(#FIELD, &FIELD));
42 OP_REQUIRES_OK(ctx, ctx->GetAttr("compression_type", &compression_type));
51 yielder_ = std::unique_ptr<RecordYielder>(new RecordYielder(ctx, yopts));
56 void Compute(OpKernelContext* ctx) override {
60 OP_REQUIRES_OK(ctx, yielder_->YieldOne(&t_out(i)));
62 ctx
[all...]
H A Drequantization_range_op.cc45 explicit RequantizationRangeOp(OpKernelConstruction* ctx) : OpKernel(ctx) {} argument
47 void Compute(OpKernelContext* ctx) override {
48 const Tensor& input = ctx->input(0);
49 const float input_min_float = ctx->input(1).flat<float>()(0);
50 const float input_max_float = ctx->input(2).flat<float>()(0);
52 OP_REQUIRES_OK(ctx, ctx->allocate_output(0, TensorShape({}), &output_min));
54 OP_REQUIRES_OK(ctx, ctx
[all...]
H A Dtraining_op_helpers.h25 mutex* GetTrainingVariableMutex(OpKernelContext* ctx, int input);
28 OpKernelContext* ctx, bool do_lock, const std::vector<int>& input_ids);
30 void MaybeForwardRefInputToRefOutput(OpKernelContext* ctx, int input,
37 Status PrepareToUpdateVariable(OpKernelContext* ctx, Tensor* tensor) { argument
46 TF_RETURN_IF_ERROR(ctx->allocate_persistent(
49 copy_functor(ctx->eigen_device<Device>(), tmp->flat<T>(),
63 Status GetInputTensorFromVariable(OpKernelContext* ctx, int input, argument
65 if (ctx->input_dtype(input) == DT_RESOURCE) {
67 if (LookupResource(ctx, HandleFromInput(ctx, inpu
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-cbc.c26 void *ctx; local
34 ctx = aes_encrypt_init(key, 16);
35 if (ctx == NULL)
43 aes_encrypt(ctx, cbc, cbc);
47 aes_encrypt_deinit(ctx);
62 void *ctx; local
70 ctx = aes_decrypt_init(key, 16);
71 if (ctx == NULL)
78 aes_decrypt(ctx, pos, pos);
84 aes_decrypt_deinit(ctx);
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Daes-cbc.c26 void *ctx; local
34 ctx = aes_encrypt_init(key, 16);
35 if (ctx == NULL)
43 aes_encrypt(ctx, cbc, cbc);
47 aes_encrypt_deinit(ctx);
62 void *ctx; local
70 ctx = aes_decrypt_init(key, 16);
71 if (ctx == NULL)
78 aes_decrypt(ctx, pos, pos);
84 aes_decrypt_deinit(ctx);
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-cbc.c26 void *ctx; local
34 ctx = aes_encrypt_init(key, 16);
35 if (ctx == NULL)
43 aes_encrypt(ctx, cbc, cbc);
47 aes_encrypt_deinit(ctx);
62 void *ctx; local
70 ctx = aes_decrypt_init(key, 16);
71 if (ctx == NULL)
78 aes_decrypt(ctx, pos, pos);
84 aes_decrypt_deinit(ctx);
[all...]
/external/libvpx/libvpx/vp9/
H A Dvp9_cx_iface.c115 vpx_codec_alg_priv_t *ctx, const struct vpx_internal_error_info *error) {
119 ctx->base.err_detail = error->has_detail ? error->detail : NULL;
127 ctx->base.err_detail = str; \
152 static vpx_codec_err_t validate_config(vpx_codec_alg_priv_t *ctx, argument
359 static vpx_codec_err_t validate_img(vpx_codec_alg_priv_t *ctx, argument
368 if (ctx->cfg.g_profile != (unsigned int)PROFILE_1) {
377 if (ctx->cfg.g_profile != (unsigned int)PROFILE_1 &&
378 ctx->cfg.g_profile != (unsigned int)PROFILE_3) {
391 if (img->d_w != ctx->cfg.g_w || img->d_h != ctx
114 update_error_state( vpx_codec_alg_priv_t *ctx, const struct vpx_internal_error_info *error) argument
653 encoder_set_config(vpx_codec_alg_priv_t *ctx, const vpx_codec_enc_cfg_t *cfg) argument
689 ctrl_get_quantizer(vpx_codec_alg_priv_t *ctx, va_list args) argument
697 ctrl_get_quantizer64(vpx_codec_alg_priv_t *ctx, va_list args) argument
705 update_extra_cfg(vpx_codec_alg_priv_t *ctx, const struct vp9_extracfg *extra_cfg) argument
716 ctrl_set_cpuused(vpx_codec_alg_priv_t *ctx, va_list args) argument
723 ctrl_set_enable_auto_alt_ref(vpx_codec_alg_priv_t *ctx, va_list args) argument
730 ctrl_set_noise_sensitivity(vpx_codec_alg_priv_t *ctx, va_list args) argument
737 ctrl_set_sharpness(vpx_codec_alg_priv_t *ctx, va_list args) argument
744 ctrl_set_static_thresh(vpx_codec_alg_priv_t *ctx, va_list args) argument
751 ctrl_set_tile_columns(vpx_codec_alg_priv_t *ctx, va_list args) argument
758 ctrl_set_tile_rows(vpx_codec_alg_priv_t *ctx, va_list args) argument
765 ctrl_set_arnr_max_frames(vpx_codec_alg_priv_t *ctx, va_list args) argument
772 ctrl_set_arnr_strength(vpx_codec_alg_priv_t *ctx, va_list args) argument
779 ctrl_set_arnr_type(vpx_codec_alg_priv_t *ctx, va_list args) argument
786 ctrl_set_tuning(vpx_codec_alg_priv_t *ctx, va_list args) argument
793 ctrl_set_cq_level(vpx_codec_alg_priv_t *ctx, va_list args) argument
800 ctrl_set_rc_max_intra_bitrate_pct( vpx_codec_alg_priv_t *ctx, va_list args) argument
808 ctrl_set_rc_max_inter_bitrate_pct( vpx_codec_alg_priv_t *ctx, va_list args) argument
816 ctrl_set_rc_gf_cbr_boost_pct(vpx_codec_alg_priv_t *ctx, va_list args) argument
823 ctrl_set_lossless(vpx_codec_alg_priv_t *ctx, va_list args) argument
830 ctrl_set_frame_parallel_decoding_mode( vpx_codec_alg_priv_t *ctx, va_list args) argument
838 ctrl_set_aq_mode(vpx_codec_alg_priv_t *ctx, va_list args) argument
845 ctrl_set_alt_ref_aq(vpx_codec_alg_priv_t *ctx, va_list args) argument
852 ctrl_set_min_gf_interval(vpx_codec_alg_priv_t *ctx, va_list args) argument
859 ctrl_set_max_gf_interval(vpx_codec_alg_priv_t *ctx, va_list args) argument
866 ctrl_set_frame_periodic_boost(vpx_codec_alg_priv_t *ctx, va_list args) argument
873 ctrl_set_target_level(vpx_codec_alg_priv_t *ctx, va_list args) argument
880 ctrl_set_row_mt(vpx_codec_alg_priv_t *ctx, va_list args) argument
887 ctrl_enable_motion_vector_unit_test( vpx_codec_alg_priv_t *ctx, va_list args) argument
895 ctrl_get_level(vpx_codec_alg_priv_t *ctx, va_list args) argument
902 encoder_init(vpx_codec_ctx_t *ctx, vpx_codec_priv_enc_mr_cfg_t *data) argument
945 encoder_destroy(vpx_codec_alg_priv_t *ctx) argument
953 pick_quickcompress_mode(vpx_codec_alg_priv_t *ctx, unsigned long duration, unsigned long deadline) argument
997 write_superframe_index(vpx_codec_alg_priv_t *ctx) argument
1084 encoder_encode(vpx_codec_alg_priv_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned long duration, vpx_enc_frame_flags_t enc_flags, unsigned long deadline) argument
1325 encoder_get_cxdata(vpx_codec_alg_priv_t *ctx, vpx_codec_iter_t *iter) argument
1330 ctrl_set_reference(vpx_codec_alg_priv_t *ctx, va_list args) argument
1346 ctrl_copy_reference(vpx_codec_alg_priv_t *ctx, va_list args) argument
1362 ctrl_get_reference(vpx_codec_alg_priv_t *ctx, va_list args) argument
1377 ctrl_set_previewpp(vpx_codec_alg_priv_t *ctx, va_list args) argument
1394 encoder_get_preview(vpx_codec_alg_priv_t *ctx) argument
1413 ctrl_set_roi_map(vpx_codec_alg_priv_t *ctx, va_list args) argument
1422 ctrl_set_active_map(vpx_codec_alg_priv_t *ctx, va_list args) argument
1437 ctrl_get_active_map(vpx_codec_alg_priv_t *ctx, va_list args) argument
1452 ctrl_set_scale_mode(vpx_codec_alg_priv_t *ctx, va_list args) argument
1466 ctrl_set_svc(vpx_codec_alg_priv_t *ctx, va_list args) argument
1489 ctrl_set_svc_layer_id(vpx_codec_alg_priv_t *ctx, va_list args) argument
1513 ctrl_get_svc_layer_id(vpx_codec_alg_priv_t *ctx, va_list args) argument
1525 ctrl_set_svc_parameters(vpx_codec_alg_priv_t *ctx, va_list args) argument
1549 ctrl_set_svc_ref_frame_config(vpx_codec_alg_priv_t *ctx, va_list args) argument
1563 ctrl_register_cx_callback(vpx_codec_alg_priv_t *ctx, va_list args) argument
1573 ctrl_set_tune_content(vpx_codec_alg_priv_t *ctx, va_list args) argument
1580 ctrl_set_color_space(vpx_codec_alg_priv_t *ctx, va_list args) argument
1587 ctrl_set_color_range(vpx_codec_alg_priv_t *ctx, va_list args) argument
1594 ctrl_set_render_size(vpx_codec_alg_priv_t *ctx, va_list args) argument
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_draw.c61 struct fd_context *ctx = fd_context(pctx); local
62 struct fd_batch *batch = ctx->batch;
64 struct pipe_scissor_state *scissor = fd_context_get_scissor(ctx);
78 if (!fd_supported_prim(ctx, info->mode)) {
79 if (ctx->streamout.num_targets > 0)
81 util_primconvert_save_index_buffer(ctx->primconvert, &ctx->indexbuf);
82 util_primconvert_save_rasterizer_state(ctx->primconvert, ctx->rasterizer);
83 util_primconvert_draw_vbo(ctx
211 struct fd_context *ctx = fd_context(pctx); local
283 struct fd_context *ctx = fd_context(pctx); local
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_context.c64 struct gl_context *ctx; local
76 ctx = screen->driver->context_create(screen, api, visual, share_ctx);
77 if (!ctx) {
82 driContextSetFlags(ctx, flags);
84 nctx = to_nouveau_context(ctx);
86 dri_ctx->driverPrivate = ctx;
88 _mesa_compute_version(ctx);
89 if (ctx->Version < major_version * 10 + minor_version) {
96 _mesa_initialize_dispatch_tables(ctx);
97 _mesa_initialize_vbo_vtxfmt(ctx);
111 nouveau_context_init(struct gl_context *ctx, gl_api api, struct nouveau_screen *screen, const struct gl_config *visual, struct gl_context *share_ctx) argument
200 nouveau_context_deinit(struct gl_context *ctx) argument
229 struct gl_context *ctx = &nctx->base; local
238 struct gl_context *ctx = dri_ctx->driverPrivate; local
324 struct gl_context *ctx = dri_ctx->driverPrivate; local
344 struct gl_context *ctx = &nctx->base; local
378 nouveau_fallback(struct gl_context *ctx, enum nouveau_fallback mode) argument
414 nouveau_validate_framebuffer(struct gl_context *ctx) argument
[all...]
/external/vboot_reference/firmware/2lib/
H A D2sha1.c39 static void sha1_transform(struct vb2_sha1_context *ctx) argument
46 A = ctx->state[0];
47 B = ctx->state[1];
48 C = ctx->state[2];
49 D = ctx->state[3];
50 E = ctx->state[4];
54 (W[t] = bswap_32(ctx->buf.w[t])) + \
130 ctx->state[0] += A;
131 ctx->state[1] += B;
132 ctx
137 vb2_sha1_update(struct vb2_sha1_context *ctx, const uint8_t *data, uint32_t size) argument
163 vb2_sha1_finalize(struct vb2_sha1_context *ctx) argument
189 sha1_transform(struct vb2_sha1_context *ctx) argument
241 vb2_sha1_update(struct vb2_sha1_context *ctx, const uint8_t *data, uint32_t size) argument
259 vb2_sha1_finalize(struct vb2_sha1_context *ctx, uint8_t *digest) argument
284 vb2_sha1_init(struct vb2_sha1_context *ctx) argument
[all...]
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dconv_ops.cc160 XlaOpKernelContext* ctx, const TensorShape& filter_shape, DataType dtype,
170 *ctx->GetOrCreateAdd(dtype),
177 explicit ConvOp(OpKernelConstruction* ctx, int num_spatial_dims, argument
179 : XlaOpKernel(ctx),
182 OP_REQUIRES_OK(ctx, ctx->GetAttr("dilations", &dilations_));
183 OP_REQUIRES_OK(ctx, ctx->GetAttr("strides", &strides_));
184 OP_REQUIRES_OK(ctx, ctx
159 ContractFilterForDepthwiseBackprop( XlaOpKernelContext* ctx, const TensorShape& filter_shape, DataType dtype, const xla::ComputationDataHandle& filter_backprop, xla::ComputationBuilder* builder) argument
307 Conv2DOp(OpKernelConstruction* ctx) argument
314 Conv3DOp(OpKernelConstruction* ctx) argument
321 DepthwiseConv2DOp(OpKernelConstruction* ctx) argument
329 ConvBackpropInputOp(OpKernelConstruction* ctx, int num_spatial_dims, bool depthwise) argument
460 Conv2DBackpropInputOp(OpKernelConstruction* ctx) argument
469 Conv3DBackpropInputOp(OpKernelConstruction* ctx) argument
478 DepthwiseConv2DBackpropInputOp(OpKernelConstruction* ctx) argument
487 ConvBackpropFilterOp(OpKernelConstruction* ctx, int num_spatial_dims, bool depthwise) argument
662 Conv2DBackpropFilterOp(OpKernelConstruction* ctx) argument
672 Conv3DBackpropFilterOp(OpKernelConstruction* ctx) argument
682 DepthwiseConv2DBackpropFilterOp(OpKernelConstruction* ctx) argument
[all...]
/external/boringssl/src/crypto/fipsmodule/modes/
H A Dpolyval.c53 void CRYPTO_POLYVAL_init(struct polyval_ctx *ctx, const uint8_t key[16]) { argument
59 CRYPTO_ghash_init(&ctx->gmult, &ctx->ghash, &ctx->H, ctx->Htable, &is_avx,
61 OPENSSL_memset(&ctx->S, 0, sizeof(ctx->S));
64 void CRYPTO_POLYVAL_update_blocks(struct polyval_ctx *ctx, const uint8_t *in, argument
83 ctx->ghash(ctx
87 CRYPTO_POLYVAL_finish(const struct polyval_ctx *ctx, uint8_t out[16]) argument
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_compute.c37 static void st_dispatch_compute_common(struct gl_context *ctx, argument
44 ctx->_Shader->CurrentProgram[MESA_SHADER_COMPUTE];
45 struct st_context *st = st_context(ctx);
52 if (ctx->NewState)
53 _mesa_update_state(ctx);
55 if ((st->dirty | ctx->NewDriverState) & ST_PIPELINE_COMPUTE_STATE_MASK ||
72 static void st_dispatch_compute(struct gl_context *ctx, argument
75 st_dispatch_compute_common(ctx, num_groups, NULL, NULL, 0);
78 static void st_dispatch_compute_indirect(struct gl_context *ctx, argument
81 struct gl_buffer_object *indirect_buffer = ctx
87 st_dispatch_compute_group_size(struct gl_context *ctx, const GLuint *num_groups, const GLuint *group_size) argument
[all...]
/external/mesa3d/src/mesa/vbo/
H A Dvbo_save.c39 void vbo_save_init( struct gl_context *ctx )
41 struct vbo_context *vbo = vbo_context(ctx);
44 save->ctx = ctx;
58 _mesa_reference_buffer_object(ctx, &arrays->BufferObj,
70 _mesa_reference_buffer_object(ctx, &array->BufferObj,
75 ctx->Driver.CurrentSavePrimitive = PRIM_OUTSIDE_BEGIN_END;
79 void vbo_save_destroy( struct gl_context *ctx )
81 struct vbo_context *vbo = vbo_context(ctx);
91 _mesa_reference_buffer_object(ctx,
108 vbo_save_fallback( struct gl_context *ctx, GLboolean fallback ) argument
[all...]
/external/syslinux/gpxe/src/include/gpxe/
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...]
/external/tensorflow/tensorflow/contrib/framework/kernels/
H A Dzero_initializer_op.cc35 explicit ZeroInitializerOp(OpKernelConstruction* ctx) : OpKernel(ctx) { argument
36 OP_REQUIRES(ctx, IsRefType(ctx->input_type(0)),
40 void Compute(OpKernelContext* ctx) override {
41 mutex_lock l(*ctx->input_ref_mutex(0));
42 Tensor input = ctx->mutable_input(0, true);
43 OP_REQUIRES(ctx, !input.IsInitialized(),
51 ctx, ctx
[all...]
/external/elfutils/lib/
H A Dmd5.c52 md5_init_ctx (struct md5_ctx *ctx) argument
54 ctx->A = 0x67452301;
55 ctx->B = 0xefcdab89;
56 ctx->C = 0x98badcfe;
57 ctx->D = 0x10325476;
59 ctx->total[0] = ctx->total[1] = 0;
60 ctx->buflen = 0;
69 md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) argument
71 ((md5_uint32 *) resbuf)[0] = SWAP (ctx
95 md5_finish_ctx(struct md5_ctx *ctx, void *resbuf) argument
131 struct md5_ctx ctx; local
187 struct md5_ctx ctx; local
202 md5_process_bytes(const void *buffer, size_t len, struct md5_ctx *ctx) argument
286 md5_process_block(const void *buffer, size_t len, struct md5_ctx *ctx) argument
[all...]

Completed in 2680 milliseconds

<<21222324252627282930>>