/external/libunwind/src/unwind/ |
H A D | GetTextRelBase.c | 29 _Unwind_GetTextRelBase (struct _Unwind_Context *context) argument
|
H A D | GetBSP.c | 29 _Unwind_GetBSP (struct _Unwind_Context *context) argument 34 unw_get_reg (&context->cursor, UNW_IA64_BSP, &val);
|
H A D | GetCFA.c | 29 _Unwind_GetCFA (struct _Unwind_Context *context) argument 33 unw_get_reg (&context->cursor, UNW_REG_SP, &val);
|
H A D | GetDataRelBase.c | 29 _Unwind_GetDataRelBase (struct _Unwind_Context *context) argument 34 unw_get_proc_info (&context->cursor, &pi);
|
H A D | GetGR.c | 29 _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 D | GetIP.c | 29 _Unwind_GetIP (struct _Unwind_Context *context) argument 33 unw_get_reg (&context->cursor, UNW_REG_IP, &val);
|
H A D | GetIPInfo.c | 32 _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 D | GetLanguageSpecificData.c | 29 _Unwind_GetLanguageSpecificData (struct _Unwind_Context *context) argument 34 unw_get_proc_info (&context->cursor, &pi);
|
H A D | GetRegionStart.c | 29 _Unwind_GetRegionStart (struct _Unwind_Context *context) argument 34 unw_get_proc_info (&context->cursor, &pi);
|
H A D | SetGR.c | 32 _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 D | SetIP.c | 29 _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 D | ext_exc.ml | 5 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 D | video_render_ios_view.h | 30 @property(nonatomic, retain) EAGLContext* context; variable
|
/external/clang/test/Sema/ |
H A D | freemain.c | 7 void* main(void* context, long size) { argument 8 if (context) return allocate(size);
|
/external/libunwind_llvm/test/ |
H A D | unw_getcontext.pass.cpp | 5 unw_context_t context; local 6 int ret = unw_getcontext(&context);
|
/external/libxkbcommon/xkbcommon/test/ |
H A D | context.c | 27 #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 D | ext_exc.ml | 9 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 D | transform_utils.ml | 12 let context = global_context () var 15 let m = create_module context "mod" in
|
/external/parameter-framework/asio/include/asio/detail/ |
H A D | handler_cont_helpers.hpp | 27 inline bool is_continuation(Context& context) argument 34 asio::detail::addressof(context));
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
H A D | handler_cont_helpers.hpp | 27 inline bool is_continuation(Context& context) argument 34 asio::detail::addressof(context));
|
/external/skia/src/gpu/ |
H A D | GrDrawOpTest.cpp | 17 const GrUserStencilSettings* GrGetRandomStencil(SkRandom* random, GrContext* context) { argument 18 if (context->caps()->avoidStencilBuffers()) {
|
/external/skqp/src/gpu/ |
H A D | GrDrawOpTest.cpp | 17 const GrUserStencilSettings* GrGetRandomStencil(SkRandom* random, GrContext* context) { argument 18 if (context->caps()->avoidStencilBuffers()) {
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
H A D | identity_op.cc | 24 explicit IdentityOp(OpKernelConstruction* context) : XlaOpKernel(context) {} argument
|
/external/tensorflow/tensorflow/core/kernels/ |
H A D | identity_op.h | 25 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 D | matrix_exponential_op.cc | 36 explicit MatrixExponentialOp(OpKernelConstruction* context) : Base(context) {} argument 38 void ComputeMatrix(OpKernelContext* context, const ConstMatrixMaps& inputs,
|