Searched refs:ctx (Results 226 - 250 of 4049) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/vp9/
H A Dvp9_dx_iface.c34 static vpx_codec_err_t decoder_init(vpx_codec_ctx_t *ctx, argument
41 if (!ctx->priv) {
46 ctx->priv = (vpx_codec_priv_t *)priv;
47 ctx->priv->init_flags = ctx->init_flags;
50 if (ctx->config.dec) {
51 priv->cfg = *ctx->config.dec;
52 ctx->config.dec = &priv->cfg;
59 static vpx_codec_err_t decoder_destroy(vpx_codec_alg_priv_t *ctx) { argument
60 if (ctx
177 decoder_get_si(vpx_codec_alg_priv_t *ctx, vpx_codec_stream_info_t *si) argument
188 set_error_detail(vpx_codec_alg_priv_t *ctx, const char *const error) argument
193 update_error_state( vpx_codec_alg_priv_t *ctx, const struct vpx_internal_error_info *error) argument
201 init_buffer_callbacks(vpx_codec_alg_priv_t *ctx) argument
231 set_ppflags(const vpx_codec_alg_priv_t *ctx, vp9_ppflags_t *flags) argument
238 init_decoder(vpx_codec_alg_priv_t *ctx) argument
264 check_resync(vpx_codec_alg_priv_t *const ctx, const VP9Decoder *const pbi) argument
272 decode_one(vpx_codec_alg_priv_t *ctx, const uint8_t **data, unsigned int data_sz, void *user_priv, int64_t deadline) argument
309 decoder_decode(vpx_codec_alg_priv_t *ctx, const uint8_t *data, unsigned int data_sz, void *user_priv, long deadline) argument
377 decoder_get_frame(vpx_codec_alg_priv_t *ctx, vpx_codec_iter_t *iter) argument
403 decoder_set_fb_fn( vpx_codec_alg_priv_t *ctx, vpx_get_frame_buffer_cb_fn_t cb_get, vpx_release_frame_buffer_cb_fn_t cb_release, void *cb_priv) argument
420 ctrl_set_reference(vpx_codec_alg_priv_t *ctx, va_list args) argument
435 ctrl_copy_reference(vpx_codec_alg_priv_t *ctx, va_list args) argument
450 ctrl_get_reference(vpx_codec_alg_priv_t *ctx, va_list args) argument
465 ctrl_set_postproc(vpx_codec_alg_priv_t *ctx, va_list args) argument
484 ctrl_get_quantizer(vpx_codec_alg_priv_t *ctx, va_list args) argument
492 ctrl_get_last_ref_updates(vpx_codec_alg_priv_t *ctx, va_list args) argument
508 ctrl_get_frame_corrupted(vpx_codec_alg_priv_t *ctx, va_list args) argument
527 ctrl_get_frame_size(vpx_codec_alg_priv_t *ctx, va_list args) argument
545 ctrl_get_render_size(vpx_codec_alg_priv_t *ctx, va_list args) argument
563 ctrl_get_bit_depth(vpx_codec_alg_priv_t *ctx, va_list args) argument
580 ctrl_set_invert_tile_order(vpx_codec_alg_priv_t *ctx, va_list args) argument
586 ctrl_set_decryptor(vpx_codec_alg_priv_t *ctx, va_list args) argument
594 ctrl_set_byte_alignment(vpx_codec_alg_priv_t *ctx, va_list args) argument
614 ctrl_set_skip_loop_filter(vpx_codec_alg_priv_t *ctx, va_list args) argument
625 ctrl_set_spatial_layer_svc(vpx_codec_alg_priv_t *ctx, va_list args) argument
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DIItemVisitor.java19 Object visit (AllItem item, Object ctx); argument
20 Object visit (PackageItem item, Object ctx); argument
21 Object visit (SrcFileItem item, Object ctx); argument
22 Object visit (ClassItem item, Object ctx); argument
23 Object visit (MethodItem item, Object ctx); argument
/external/mesa3d/src/egl/main/
H A Deglcontext.c46 _eglGetContextAPIBit(_EGLContext *ctx) argument
50 switch (ctx->ClientAPI) {
52 switch (ctx->ClientMajorVersion) {
84 _eglParseContextAttribList(_EGLContext *ctx, _EGLDisplay *dpy, argument
87 EGLenum api = ctx->ClientAPI;
126 ctx->ClientMajorVersion = val;
144 ctx->ClientMinorVersion = val;
182 (api != EGL_OPENGL_API || ctx->ClientMajorVersion < 3)) {
218 ctx->Flags |= val;
239 ctx
486 _eglInitContext(_EGLContext *ctx, _EGLDisplay *dpy, _EGLConfig *conf, const EGLint *attrib_list) argument
528 _eglQueryContextRenderBuffer(_EGLContext *ctx) argument
587 _eglBindContextToThread(_EGLContext *ctx, _EGLThreadInfo *t) argument
609 _eglCheckMakeCurrent(_EGLContext *ctx, _EGLSurface *draw, _EGLSurface *read) argument
683 _eglBindContext(_EGLContext *ctx, _EGLSurface *draw, _EGLSurface *read, _EGLContext **old_ctx, _EGLSurface **old_draw, _EGLSurface **old_read) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dcolortab.c46 GET_CURRENT_CONTEXT(ctx);
47 _mesa_error(ctx, GL_INVALID_OPERATION, "glColorTable");
57 GET_CURRENT_CONTEXT(ctx);
58 _mesa_error(ctx, GL_INVALID_OPERATION, "glColorSubTable");
67 GET_CURRENT_CONTEXT(ctx);
68 _mesa_error(ctx, GL_INVALID_OPERATION, "glCopyColorTable");
77 GET_CURRENT_CONTEXT(ctx);
78 _mesa_error(ctx, GL_INVALID_OPERATION, "glCopyColorSubTable");
87 GET_CURRENT_CONTEXT(ctx);
88 _mesa_error(ctx, GL_INVALID_OPERATIO
[all...]
H A Dscissor.c42 set_scissor_no_notify(struct gl_context *ctx, unsigned idx, argument
45 if (x == ctx->Scissor.ScissorArray[idx].X &&
46 y == ctx->Scissor.ScissorArray[idx].Y &&
47 width == ctx->Scissor.ScissorArray[idx].Width &&
48 height == ctx->Scissor.ScissorArray[idx].Height)
51 FLUSH_VERTICES(ctx, _NEW_SCISSOR);
52 ctx->Scissor.ScissorArray[idx].X = x;
53 ctx->Scissor.ScissorArray[idx].Y = y;
54 ctx->Scissor.ScissorArray[idx].Width = width;
55 ctx
109 _mesa_set_scissor(struct gl_context *ctx, unsigned idx, GLint x, GLint y, GLsizei width, GLsizei height) argument
272 _mesa_init_scissor(struct gl_context *ctx) argument
[all...]
H A Ddrawtex.c31 draw_texture(struct gl_context *ctx, GLfloat x, GLfloat y, GLfloat z, argument
34 if (!ctx->Extensions.OES_draw_texture) {
35 _mesa_error(ctx, GL_INVALID_OPERATION,
40 _mesa_error(ctx, GL_INVALID_VALUE, "glDrawTex(width or height <= 0)");
44 _mesa_set_vp_override(ctx, GL_TRUE);
46 if (ctx->NewState)
47 _mesa_update_state(ctx);
49 assert(ctx->Driver.DrawTex);
50 ctx->Driver.DrawTex(ctx,
[all...]
H A Dvdpau.c57 GET_CURRENT_CONTEXT(ctx);
60 _mesa_error(ctx, GL_INVALID_VALUE, "vdpDevice");
65 _mesa_error(ctx, GL_INVALID_VALUE, "getProcAddress");
69 if (ctx->vdpDevice || ctx->vdpGetProcAddress || ctx->vdpSurfaces) {
70 _mesa_error(ctx, GL_INVALID_OPERATION, "VDPAUInitNV");
74 ctx->vdpDevice = vdpDevice;
75 ctx->vdpGetProcAddress = getProcAddress;
76 ctx
113 register_surface(struct gl_context *ctx, GLboolean isOutput, const GLvoid *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames) argument
[all...]
H A Dcompute.c34 GET_CURRENT_CONTEXT(ctx);
38 _mesa_debug(ctx, "glDispatchCompute(%d, %d, %d)\n",
41 if (!_mesa_validate_DispatchCompute(ctx, num_groups))
47 ctx->Driver.DispatchCompute(ctx, num_groups);
53 GET_CURRENT_CONTEXT(ctx);
56 _mesa_debug(ctx, "glDispatchComputeIndirect(%ld)\n", (long) indirect);
58 if (!_mesa_validate_DispatchComputeIndirect(ctx, indirect))
61 ctx->Driver.DispatchComputeIndirect(ctx, indirec
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fNegativeAtomicCounterTests.cpp68 std::string genShaderSource (NegativeTestContext& ctx, TestCase test, glu::ShaderType type) argument
75 ctx.glGetIntegerv(GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS, &maxBuffers);
156 void iterateShaders (NegativeTestContext& ctx, TestCase testCase)
158 tcu::TestLog& log = ctx.getLog();
161 if (ctx.isShaderSupported(s_shaders[ndx]))
163 ctx.beginSection(std::string("Verify shader: ") + glu::getShaderTypeName(s_shaders[ndx]));
164 const glu::ShaderProgram program(ctx.getRenderContext(), glu::ProgramSources() << glu::ShaderSource(s_shaders[ndx], genShaderSource(ctx, testCase, s_shaders[ndx])));
169 ctx.fail("Shader was not expected to compile.");
171 ctx
[all...]
/external/libdrm/intel/
H A Dintel_decode.c115 instr_out(struct drm_intel_decode *ctx, unsigned int index, argument
120 uint32_t offset = ctx->hw_offset + index * 4;
122 if (index > ctx->count) {
123 if (!ctx->overflowed) {
125 ctx->overflowed = true;
138 ctx->data[index], index == 0 ? "" : " ");
145 decode_MI_SET_CONTEXT(struct drm_intel_decode *ctx) argument
147 uint32_t data = ctx->data[1];
148 if (ctx->gen > 7)
151 instr_out(ctx,
161 decode_MI_WAIT_FOR_EVENT(struct drm_intel_decode *ctx) argument
229 decode_mi(struct drm_intel_decode *ctx) argument
379 decode_2d_br00(struct drm_intel_decode *ctx, const char *cmd) argument
391 decode_2d_br01(struct drm_intel_decode *ctx) argument
423 decode_2d(struct drm_intel_decode *ctx) argument
593 decode_3d_1c(struct drm_intel_decode *ctx) argument
853 i915_decode_alu1(struct drm_intel_decode *ctx, int i, char *instr_prefix, const char *op_name) argument
868 i915_decode_alu2(struct drm_intel_decode *ctx, int i, char *instr_prefix, const char *op_name) argument
884 i915_decode_alu3(struct drm_intel_decode *ctx, int i, char *instr_prefix, const char *op_name) argument
901 i915_decode_tex(struct drm_intel_decode *ctx, int i, const char *instr_prefix, const char *tex_name) argument
922 i915_decode_dcl(struct drm_intel_decode *ctx, int i, char *instr_prefix) argument
1011 i915_decode_instruction(struct drm_intel_decode *ctx, int i, char *instr_prefix) argument
1271 decode_3d_1d(struct drm_intel_decode *ctx) argument
2285 decode_3d_primitive(struct drm_intel_decode *ctx) argument
2545 decode_3d(struct drm_intel_decode *ctx) argument
2725 i965_decode_urb_fence(struct drm_intel_decode *ctx, int len) argument
2766 state_base_out(struct drm_intel_decode *ctx, unsigned int index, const char *name) argument
2780 state_max_out(struct drm_intel_decode *ctx, unsigned int index, const char *name) argument
2799 gen7_3DSTATE_VIEWPORT_STATE_POINTERS_CC(struct drm_intel_decode *ctx) argument
2808 gen7_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP(struct drm_intel_decode *ctx) argument
2817 gen7_3DSTATE_BLEND_STATE_POINTERS(struct drm_intel_decode *ctx) argument
2828 gen7_3DSTATE_DEPTH_STENCIL_STATE_POINTERS(struct drm_intel_decode *ctx) argument
2840 gen7_3DSTATE_HIER_DEPTH_BUFFER(struct drm_intel_decode *ctx) argument
2851 gen6_3DSTATE_CC_STATE_POINTERS(struct drm_intel_decode *ctx) argument
2863 gen7_3DSTATE_CC_STATE_POINTERS(struct drm_intel_decode *ctx) argument
2875 gen7_3DSTATE_URB_unit(struct drm_intel_decode *ctx, const char *unit) argument
2891 gen7_3DSTATE_URB_VS(struct drm_intel_decode *ctx) argument
2897 gen7_3DSTATE_URB_HS(struct drm_intel_decode *ctx) argument
2903 gen7_3DSTATE_URB_DS(struct drm_intel_decode *ctx) argument
2909 gen7_3DSTATE_URB_GS(struct drm_intel_decode *ctx) argument
2915 gen7_3DSTATE_CONSTANT(struct drm_intel_decode *ctx, const char *unit) argument
2936 gen7_3DSTATE_CONSTANT_VS(struct drm_intel_decode *ctx) argument
2942 gen7_3DSTATE_CONSTANT_GS(struct drm_intel_decode *ctx) argument
2948 gen7_3DSTATE_CONSTANT_PS(struct drm_intel_decode *ctx) argument
2954 gen7_3DSTATE_CONSTANT_DS(struct drm_intel_decode *ctx) argument
2960 gen7_3DSTATE_CONSTANT_HS(struct drm_intel_decode *ctx) argument
2967 gen6_3DSTATE_WM(struct drm_intel_decode *ctx) argument
3020 gen7_3DSTATE_WM(struct drm_intel_decode *ctx) argument
3100 gen4_3DPRIMITIVE(struct drm_intel_decode *ctx) argument
3116 gen7_3DPRIMITIVE(struct drm_intel_decode *ctx) argument
3137 decode_3d_965(struct drm_intel_decode *ctx) argument
3750 decode_3d_i830(struct drm_intel_decode *ctx) argument
3821 struct drm_intel_decode *ctx; local
3853 drm_intel_decode_context_free(struct drm_intel_decode *ctx) argument
3859 drm_intel_decode_set_dump_past_end(struct drm_intel_decode *ctx, int dump_past_end) argument
3866 drm_intel_decode_set_batch_pointer(struct drm_intel_decode *ctx, void *data, uint32_t hw_offset, int count) argument
3875 drm_intel_decode_set_head_tail(struct drm_intel_decode *ctx, uint32_t head, uint32_t tail) argument
3883 drm_intel_decode_set_output_file(struct drm_intel_decode *ctx, FILE *output) argument
3897 drm_intel_decode(struct drm_intel_decode *ctx) argument
[all...]
/external/mesa3d/src/gallium/tests/graw/
H A Docclusion-query.c91 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
92 info.ctx->bind_vertex_elements_state(info.ctx, handle);
97 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
103 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
121 handle = graw_parse_vertex_shader(info->ctx, text);
126 info->ctx->bind_vs_state(info->ctx, handl
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv04_state_raster.c117 nv04_defer_control(struct gl_context *ctx, int emit) argument
119 context_dirty(ctx, CONTROL);
123 nv04_emit_control(struct gl_context *ctx, int emit) argument
125 struct nv04_context *nv04 = to_nv04_context(ctx);
126 struct gl_framebuffer *fb = ctx->DrawBuffer;
127 int cull = ctx->Polygon.CullFaceMode;
128 int front = ctx->Polygon.FrontFace;
136 if (ctx->Color.DitherFlag)
140 if (!ctx->Polygon.CullFlag)
150 if (ctx
192 nv04_defer_blend(struct gl_context *ctx, int emit) argument
198 nv04_emit_blend(struct gl_context *ctx, int emit) argument
[all...]
H A Dnouveau_context.h87 #define to_nouveau_context(ctx) ((struct nouveau_context *)(ctx))
89 #define context_dev(ctx) \
90 (to_nouveau_context(ctx)->screen->device)
91 #define context_chipset(ctx) \
92 (context_dev(ctx)->chipset)
93 #define context_chan(ctx) \
94 (to_nouveau_context(ctx)->hw.chan)
95 #define context_client(ctx) \
96 (to_nouveau_context(ctx)
[all...]
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dtranspose_op.cc35 explicit TransposeOp(OpKernelConstruction* ctx) : XlaOpKernel(ctx) {} argument
37 void Compile(XlaOpKernelContext* ctx) override {
38 const TensorShape input_shape = ctx->InputShape(0);
39 const TensorShape perm_tensor_shape = ctx->InputShape(1);
42 OP_REQUIRES(ctx, TensorShapeUtils::IsVector(perm_tensor_shape),
47 OP_REQUIRES(ctx, dims == perm_tensor_shape.num_elements(),
54 OP_REQUIRES_OK(ctx, ctx->ConstantInputReshaped(1, {dims}, &literal));
67 ctx,
105 InvertPermutationOp(OpKernelConstruction* ctx) argument
[all...]
H A Dstrided_slice_op.cc35 explicit StridedSliceOp(OpKernelConstruction* ctx) : XlaOpKernel(ctx) { argument
36 OP_REQUIRES_OK(ctx, ctx->GetAttr("begin_mask", &begin_mask_));
37 OP_REQUIRES_OK(ctx, ctx->GetAttr("end_mask", &end_mask_));
38 OP_REQUIRES_OK(ctx, ctx->GetAttr("ellipsis_mask", &ellipsis_mask_));
39 OP_REQUIRES_OK(ctx, ctx
117 StridedSliceGradOp(OpKernelConstruction* ctx) argument
227 StridedSliceAssignOp(OpKernelConstruction* ctx) argument
[all...]
H A Darg_op.cc30 explicit XlaArgOp(OpKernelConstruction* ctx) : XlaOpKernel(ctx) { argument
31 OP_REQUIRES_OK(ctx, ctx->GetAttr("T", &dtype_));
32 OP_REQUIRES_OK(ctx, ctx->GetAttr("index", &index_));
35 void Compile(XlaOpKernelContext* ctx) override {
38 auto frame = ctx->call_frame();
41 OP_REQUIRES_OK(ctx, frame->GetArg(index_, &val));
42 OP_REQUIRES(ctx, va
[all...]
/external/kmod/libkmod/
H A Dlibkmod.c90 void kmod_log(const struct kmod_ctx *ctx, argument
96 if (ctx->log_fn == NULL)
100 ctx->log_fn(ctx->log_data, priority, file, line, fn, format, args);
152 * @ctx: kmod library context
157 KMOD_EXPORT const char *kmod_get_dirname(const struct kmod_ctx *ctx) argument
159 return ctx->dirname;
164 * @ctx: kmod library context
171 KMOD_EXPORT void *kmod_get_userdata(const struct kmod_ctx *ctx) argument
173 if (ctx
185 kmod_set_userdata(struct kmod_ctx *ctx, const void *userdata) argument
253 struct kmod_ctx *ctx; local
306 kmod_ref(struct kmod_ctx *ctx) argument
323 kmod_unref(struct kmod_ctx *ctx) argument
353 kmod_set_log_fn(struct kmod_ctx *ctx, void (*log_fn)(void *data, int priority, const char *file, int line, const char *fn, const char *format, va_list args), const void *data) argument
373 kmod_get_log_priority(const struct kmod_ctx *ctx) argument
388 kmod_set_log_priority(struct kmod_ctx *ctx, int priority) argument
395 kmod_pool_get_module(struct kmod_ctx *ctx, const char *key) argument
407 kmod_pool_add_module(struct kmod_ctx *ctx, struct kmod_module *mod, const char *key) argument
415 kmod_pool_del_module(struct kmod_ctx *ctx, struct kmod_module *mod, const char *key) argument
423 kmod_lookup_alias_from_alias_bin(struct kmod_ctx *ctx, enum kmod_index index_number, const char *name, struct kmod_list **list) argument
477 kmod_lookup_alias_from_symbols_file(struct kmod_ctx *ctx, const char *name, struct kmod_list **list) argument
487 kmod_lookup_alias_from_aliases_file(struct kmod_ctx *ctx, const char *name, struct kmod_list **list) argument
494 lookup_builtin_file(struct kmod_ctx *ctx, const char *name) argument
525 kmod_lookup_alias_from_builtin_file(struct kmod_ctx *ctx, const char *name, struct kmod_list **list) argument
557 kmod_lookup_alias_is_builtin(struct kmod_ctx *ctx, const char *name) argument
566 kmod_search_moddep(struct kmod_ctx *ctx, const char *name) argument
596 kmod_lookup_alias_from_moddep_file(struct kmod_ctx *ctx, const char *name, struct kmod_list **list) argument
630 kmod_lookup_alias_from_config(struct kmod_ctx *ctx, const char *name, struct kmod_list **list) argument
664 kmod_lookup_alias_from_commands(struct kmod_ctx *ctx, const char *name, struct kmod_list **list) argument
743 kmod_set_modules_visited(struct kmod_ctx *ctx, bool visited) argument
753 kmod_set_modules_required(struct kmod_ctx *ctx, bool required) argument
788 kmod_validate_resources(struct kmod_ctx *ctx) argument
834 kmod_load_resources(struct kmod_ctx *ctx) argument
880 kmod_unload_resources(struct kmod_ctx *ctx) argument
912 kmod_dump_index(struct kmod_ctx *ctx, enum kmod_index type, int fd) argument
945 kmod_get_config(const struct kmod_ctx *ctx) argument
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_push.c86 emit_vertices_i08(struct push_context *ctx, unsigned start, unsigned count) argument
88 uint8_t *elts = (uint8_t *)ctx->idxbuf + start;
91 unsigned push = MIN2(count, ctx->packet_vertex_limit);
95 if (ctx->primitive_restart)
96 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
98 size = ctx->vertex_words * nr;
100 BEGIN_NI04(ctx->push, NV30_3D(VERTEX_DATA), size);
102 ctx->translate->run_elts8(ctx->translate, elts, nr, 0, 0, ctx
118 emit_vertices_i16(struct push_context *ctx, unsigned start, unsigned count) argument
150 emit_vertices_i32(struct push_context *ctx, unsigned start, unsigned count) argument
182 emit_vertices_seq(struct push_context *ctx, unsigned start, unsigned count) argument
200 struct push_context ctx; local
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Dquantize_and_dequantize_op.cc44 explicit QuantizeAndDequantizeV2Op(OpKernelConstruction* ctx) argument
45 : OpKernel(ctx) {
46 OP_REQUIRES_OK(ctx, ctx->GetAttr("signed_input", &signed_input_));
47 OP_REQUIRES_OK(ctx, ctx->GetAttr("num_bits", &num_bits_));
48 OP_REQUIRES(ctx, num_bits_ > 0 && num_bits_ < (signed_input_ ? 62 : 63),
51 OP_REQUIRES_OK(ctx, ctx->GetAttr("range_given", &range_given_));
54 void Compute(OpKernelContext* ctx) overrid
98 QuantizeAndDequantizeV3Op(OpKernelConstruction* ctx) argument
150 QuantizeAndDequantizeOp(OpKernelConstruction* ctx) argument
[all...]
H A Dsendrecv_ops.cc42 static FrameAndIter GetFrameAndIter(OpKernelContext* ctx, argument
44 if (hostmem_sendrecv && ctx->call_frame() != nullptr) {
49 return FrameAndIter(reinterpret_cast<uint64>(ctx->call_frame()), 0);
51 return ctx->frame_iter();
55 SendOp::SendOp(OpKernelConstruction* ctx) : OpKernel(ctx) { argument
57 OP_REQUIRES_OK(ctx, ctx->GetAttr("send_device", &send_device));
59 OP_REQUIRES_OK(ctx, ctx
77 Compute(OpKernelContext* ctx) argument
123 RecvOp(OpKernelConstruction* ctx) argument
146 make_recv_callback(OpKernelContext* ctx, AsyncOpKernel::DoneCallback done) argument
171 ComputeAsync(OpKernelContext* ctx, DoneCallback done) argument
[all...]
/external/dhcpcd-6.8.2/
H A Ddhcpcd.c143 free_globals(struct dhcpcd_ctx *ctx) argument
147 if (ctx->ifac) {
148 for (; ctx->ifac > 0; ctx->ifac--)
149 free(ctx->ifav[ctx->ifac - 1]);
150 free(ctx->ifav);
151 ctx->ifav = NULL;
153 if (ctx->ifdc) {
154 for (; ctx
199 struct dhcpcd_ctx *ctx; local
212 dhcpcd_oneup(struct dhcpcd_ctx *ctx) argument
226 dhcpcd_ipwaited(struct dhcpcd_ctx *ctx) argument
247 dhcpcd_daemonise(struct dhcpcd_ctx *ctx) argument
336 struct dhcpcd_ctx *ctx; local
606 dhcpcd_handlecarrier(struct dhcpcd_ctx *ctx, int carrier, unsigned int flags, const char *ifname) argument
879 struct dhcpcd_ctx *ctx; local
943 struct dhcpcd_ctx *ctx; local
1015 dhcpcd_handlehwaddr(struct dhcpcd_ctx *ctx, const char *ifname, const uint8_t *hwaddr, uint8_t hwlen) argument
1041 dhcpcd_start_interface(struct dhcpcd_ctx *ctx, const char *ifname) argument
1055 dhcpcd_stop_interface(struct dhcpcd_ctx *ctx, const char *ifname) argument
1069 dhcpcd_stop_interfaces(struct dhcpcd_ctx *ctx) argument
1078 dhcpcd_release_ipv4(struct dhcpcd_ctx *ctx, const char *ifname) argument
1106 reload_config(struct dhcpcd_ctx *ctx) argument
1123 reconf_reboot(struct dhcpcd_ctx *ctx, int action, int argc, char **argv, int oi) argument
1154 stop_all_interfaces(struct dhcpcd_ctx *ctx, int do_release) argument
1183 struct dhcpcd_ctx *ctx; local
1310 dhcpcd_handleargs(struct dhcpcd_ctx *ctx, struct fd_list *fd, int argc, char **argv) argument
1434 struct dhcpcd_ctx ctx; local
[all...]
/external/libconstrainedcrypto/
H A Dsha.c38 static void SHA1_Transform(SHA_CTX* ctx) { argument
41 uint8_t* p = ctx->buf;
56 A = ctx->state[0];
57 B = ctx->state[1];
58 C = ctx->state[2];
59 D = ctx->state[3];
60 E = ctx->state[4];
81 ctx->state[0] += A;
82 ctx->state[1] += B;
83 ctx
96 SHA_init(SHA_CTX* ctx) argument
107 SHA_update(SHA_CTX* ctx, const void* data, int len) argument
123 SHA_final(SHA_CTX* ctx) argument
150 SHA_CTX ctx; local
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_feedback.c36 feedback_vertex(struct gl_context * ctx, const SWvertex * v, const SWvertex * pv) argument
44 win[2] = v->attrib[VARYING_SLOT_POS][2] / ctx->DrawBuffer->_DepthMaxF;
47 _mesa_feedback_vertex(ctx, win, color, vtc);
55 _swrast_feedback_triangle(struct gl_context *ctx, const SWvertex *v0, argument
58 if (!_swrast_culltriangle(ctx, v0, v1, v2)) {
59 _mesa_feedback_token(ctx, (GLfloat) (GLint) GL_POLYGON_TOKEN);
60 _mesa_feedback_token(ctx, (GLfloat) 3); /* three vertices */
62 if (ctx->Light.ShadeModel == GL_SMOOTH) {
63 feedback_vertex(ctx, v0, v0);
64 feedback_vertex(ctx, v
77 _swrast_feedback_line(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1) argument
102 _swrast_feedback_point(struct gl_context *ctx, const SWvertex *v) argument
110 _swrast_select_triangle(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
124 _swrast_select_line(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1) argument
133 _swrast_select_point(struct gl_context *ctx, const SWvertex *v) argument
[all...]
/external/e2fsprogs/e2fsck/
H A Ddirinfo.c43 static void e2fsck_put_dir_info(e2fsck_t ctx, struct dir_info *dir);
46 static void setup_tdb(e2fsck_t ctx, ext2_ino_t num_dirs) argument
48 struct dir_info_db *db = ctx->dir_info;
55 profile_get_string(ctx->profile, "scratch_files", "directory", 0, 0,
57 profile_get_uint(ctx->profile, "scratch_files",
59 profile_get_boolean(ctx->profile, "scratch_files",
70 uuid_unparse(ctx->fs->super->s_uuid, uuid);
89 static void setup_db(e2fsck_t ctx) argument
96 e2fsck_allocate_memory(ctx, sizeof(struct dir_info_db),
101 ctx
130 e2fsck_add_dir_info(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent) argument
204 e2fsck_get_dir_info(e2fsck_t ctx, ext2_ino_t ino) argument
322 e2fsck_free_dir_info(e2fsck_t ctx) argument
346 e2fsck_get_num_dirinfo(e2fsck_t ctx) argument
351 e2fsck_dir_info_iter_begin(e2fsck_t ctx) argument
378 e2fsck_dir_info_iter(e2fsck_t ctx, struct dir_info_iter *iter) argument
425 e2fsck_dir_info_set_parent(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent) argument
442 e2fsck_dir_info_set_dotdot(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t dotdot) argument
459 e2fsck_dir_info_get_parent(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t *parent) argument
475 e2fsck_dir_info_get_dotdot(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t *dotdot) argument
[all...]
/external/libvpx/libvpx/vpx/src/
H A Dvpx_encoder.c23 #define SAVE_STATUS(ctx, var) (ctx ? (ctx->err = var) : var)
25 static vpx_codec_alg_priv_t *get_alg_priv(vpx_codec_ctx_t *ctx) { argument
26 return (vpx_codec_alg_priv_t *)ctx->priv;
29 vpx_codec_err_t vpx_codec_enc_init_ver(vpx_codec_ctx_t *ctx, argument
37 else if (!ctx || !iface || !cfg)
49 ctx->iface = iface;
50 ctx->name = iface->name;
51 ctx
65 vpx_codec_enc_init_multi_ver( vpx_codec_ctx_t *ctx, vpx_codec_iface_t *iface, vpx_codec_enc_cfg_t *cfg, int num_enc, vpx_codec_flags_t flags, vpx_rational_t *dsf, int ver) argument
196 vpx_codec_encode(vpx_codec_ctx_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned long duration, vpx_enc_frame_flags_t flags, unsigned long deadline) argument
247 vpx_codec_get_cx_data(vpx_codec_ctx_t *ctx, vpx_codec_iter_t *iter) argument
293 vpx_codec_set_cx_data_buf(vpx_codec_ctx_t *ctx, const vpx_fixed_buf_t *buf, unsigned int pad_before, unsigned int pad_after) argument
313 vpx_codec_get_preview_frame(vpx_codec_ctx_t *ctx) argument
330 vpx_codec_get_global_headers(vpx_codec_ctx_t *ctx) argument
347 vpx_codec_enc_config_set(vpx_codec_ctx_t *ctx, const vpx_codec_enc_cfg_t *cfg) argument
[all...]

Completed in 976 milliseconds

1234567891011>>