Searched defs:context (Results 1 - 25 of 3927) sorted by relevance

1234567891011>>

/external/libunwind/src/unwind/
H A DGetTextRelBase.c29 _Unwind_GetTextRelBase (struct _Unwind_Context *context) argument
H A DGetBSP.c29 _Unwind_GetBSP (struct _Unwind_Context *context) argument
34 unw_get_reg (&context->cursor, UNW_IA64_BSP, &val);
H A DGetCFA.c29 _Unwind_GetCFA (struct _Unwind_Context *context) argument
33 unw_get_reg (&context->cursor, UNW_REG_SP, &val);
H A DGetDataRelBase.c29 _Unwind_GetDataRelBase (struct _Unwind_Context *context) argument
34 unw_get_proc_info (&context->cursor, &pi);
H A DGetGR.c29 _Unwind_GetGR (struct _Unwind_Context *context, int index) argument
33 if (index == UNW_REG_SP && context->end_of_stack)
38 unw_get_reg (&context->cursor, index, &val);
H A DGetIP.c29 _Unwind_GetIP (struct _Unwind_Context *context) argument
33 unw_get_reg (&context->cursor, UNW_REG_IP, &val);
H A DGetIPInfo.c32 _Unwind_GetIPInfo (struct _Unwind_Context *context, int *ip_before_insn) argument
36 unw_get_reg (&context->cursor, UNW_REG_IP, &val);
37 *ip_before_insn = unw_is_signal_frame (&context->cursor);
H A DGetLanguageSpecificData.c29 _Unwind_GetLanguageSpecificData (struct _Unwind_Context *context) argument
34 unw_get_proc_info (&context->cursor, &pi);
H A DGetRegionStart.c29 _Unwind_GetRegionStart (struct _Unwind_Context *context) argument
34 unw_get_proc_info (&context->cursor, &pi);
H A DSetGR.c32 _Unwind_SetGR (struct _Unwind_Context *context, int index, argument
38 unw_set_reg (&context->cursor, index, new_value);
42 unw_set_reg (&context->cursor, UNW_IA64_NAT + (index - UNW_IA64_GR), 0);
H A DSetIP.c29 _Unwind_SetIP (struct _Unwind_Context *context, unsigned long new_value) argument
31 unw_set_reg (&context->cursor, UNW_REG_IP, new_value);
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
H A Dext_exc.ml5 let context = Llvm.global_context () var
10 ignore (Llvm_bitreader.get_module context (Llvm.MemoryBuffer.of_stdin ()))
/external/webrtc/webrtc/modules/video_render/ios/
H A Dvideo_render_ios_view.h30 @property(nonatomic, retain) EAGLContext* context; variable
/external/clang/test/Sema/
H A Dfreemain.c7 void* main(void* context, long size) { argument
8 if (context) return allocate(size);
/external/libunwind_llvm/test/
H A Dunw_getcontext.pass.cpp5 unw_context_t context; local
6 int ret = unw_getcontext(&context);
/external/libxkbcommon/xkbcommon/test/
H A Dcontext.c27 #include "context.h"
32 struct xkb_context *context = test_get_context(0); local
35 assert(context);
37 assert(xkb_context_num_include_paths(context) == 1);
38 assert(!xkb_context_include_path_append(context, "¡NONSENSE!"));
39 assert(xkb_context_num_include_paths(context) == 1);
41 atom = xkb_atom_intern(context, "HELLOjunkjunkjunk", 5);
43 assert(streq(xkb_atom_text(context, atom), "HELLO"));
45 atom = xkb_atom_intern_literal(context, "HELLOjunkjunkjunk");
47 assert(streq(xkb_atom_text(context, ato
[all...]
/external/llvm/test/Bindings/OCaml/
H A Dext_exc.ml9 let context = Llvm.global_context () var
16 Llvm.set_diagnostic_handler context (Some diagnostic_handler);
18 ignore (Llvm_bitreader.get_module context (Llvm.MemoryBuffer.of_stdin ()))
H A Dtransform_utils.ml12 let context = global_context () var
15 let m = create_module context "mod" in
/external/parameter-framework/asio/include/asio/detail/
H A Dhandler_cont_helpers.hpp27 inline bool is_continuation(Context& context) argument
34 asio::detail::addressof(context));
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dhandler_cont_helpers.hpp27 inline bool is_continuation(Context& context) argument
34 asio::detail::addressof(context));
/external/skia/src/gpu/
H A DGrDrawOpTest.cpp17 const GrUserStencilSettings* GrGetRandomStencil(SkRandom* random, GrContext* context) { argument
18 if (context->caps()->avoidStencilBuffers()) {
/external/skqp/src/gpu/
H A DGrDrawOpTest.cpp17 const GrUserStencilSettings* GrGetRandomStencil(SkRandom* random, GrContext* context) { argument
18 if (context->caps()->avoidStencilBuffers()) {
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Didentity_op.cc24 explicit IdentityOp(OpKernelConstruction* context) : XlaOpKernel(context) {} argument
/external/tensorflow/tensorflow/core/kernels/
H A Didentity_op.h25 explicit IdentityOp(OpKernelConstruction* context) : OpKernel(context) {} argument
27 void Compute(OpKernelContext* context) override {
28 if (IsRefType(context->input_dtype(0))) {
29 context->forward_ref_input_to_ref_output(0, 0);
31 context->set_output(0, context->input(0));
H A Dmatrix_exponential_op.cc36 explicit MatrixExponentialOp(OpKernelConstruction* context) : Base(context) {} argument
38 void ComputeMatrix(OpKernelContext* context, const ConstMatrixMaps& inputs,

Completed in 1554 milliseconds

1234567891011>>