Searched refs:context (Results 1 - 25 of 193) sorted by relevance

12345678

/barrelfish-master/usr/eclipseclp/CPViz/viz/src/ie/ucc/cccc/viz/
H A DVisualizerAllDifferentMatrix.java34 public VisualizerAllDifferentMatrix(VisualContext context) { argument
35 super(context);
H A DVisualizer.java30 * the context to store parameters of the visualizers, and then create the
57 VisualContext context = new VisualContext(id,type,display,
62 visualizerDrawer = new VisualizerVector(context);
64 visualizerDrawer = new VisualizerVectorWaterfall(context);
66 visualizerDrawer = new VisualizerVectorSize(context);
68 visualizerDrawer = new VisualizerBinaryVector(context);
70 visualizerDrawer = new VisualizerMatrix(context);
72 visualizerDrawer = new VisualizerBinaryMatrix(context);
74 visualizerDrawer = new VisualizerAllDifferent(context);
76 visualizerDrawer = new VisualizerBinPacking(context);
[all...]
H A DVisualizerGCCMatrix.java36 public VisualizerGCCMatrix(VisualContext context){ argument
37 super(context);
44 out.println("<!-- Matrix " + context + " -->");
H A DVisualizerUnknown.java39 public VisualizerUnknown(VisualContext context,String type) { argument
40 super(context);
H A DVisualizerGraph.java30 public VisualizerGraph(VisualContext context){ argument
31 super(context);
57 return context.getX()+1+x;
60 return context.getY()+1+height()-height()*y/max();
63 return context.getY()+height()+1;
H A DVisualizerItemChart.java36 public VisualizerItemChart(VisualContext context){ argument
37 super(context);
72 return context.getX()+1+x;
75 return context.getY()+y;
78 return context.getY();
H A DVisualizerAllDifferent.java35 public VisualizerAllDifferent(VisualContext context) { argument
36 super(context);
42 out.println("<!-- Vector " + context + " -->");
H A DVisualizerInverse.java36 public VisualizerInverse(VisualContext context){ argument
37 super(context);
47 assert context.getMin() == 1;
H A DVisualizerBinaryMatrix.java35 public VisualizerBinaryMatrix(VisualContext context) { argument
36 super(context);
H A DVisualizerDrawer.java36 public VisualContext context; field in class:VisualizerDrawer
45 * Save the context for later reference
46 * @param context a VisualizerContext holding parameters for the visualizer
49 public VisualizerDrawer(VisualContext context) { argument
50 this.context = context;
70 rawRectSVG(out,context.getX(),context.getY(),context.getBoxWidth(),context
[all...]
/barrelfish-master/usr/tests/cxx/unwind/
H A Dunw_getcontext.pass.cpp5 unw_context_t context; local
6 int ret = unw_getcontext(&context);
H A Dlibunwind_01.pass.cpp5 unw_context_t context; local
6 unw_getcontext(&context);
9 unw_init_local(&cursor, &context);
H A Dlibunwind_02.pass.cpp8 _Unwind_Reason_Code callback(_Unwind_Context *context, void *cnt) { argument
9 (void)context;
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/net/mlx4/
H A Den_resources.c48 struct mlx4_qp_context *context) {
52 memset(context, 0, sizeof *context);
53 context->flags = cpu_to_be32(7 << 16 | rss << MLX4_RSS_QPC_FLAG_OFFSET);
54 context->pd = cpu_to_be32(mdev->priv_pdn);
55 context->mtu_msgmax = 0xff;
57 context->rq_size_stride = ilog2(size) << 3 | (ilog2(stride) - 4);
59 context->sq_size_stride = ilog2(size) << 3 | (ilog2(stride) - 4);
61 context->sq_size_stride = ilog2(TXBB_SIZE) - 4;
62 context
46 mlx4_en_fill_qp_context(struct mlx4_en_priv *priv, int size, int stride, int is_tx, int rss, int qpn, int cqn, int user_prio, struct mlx4_qp_context *context) argument
[all...]
/barrelfish-master/lib/openssl-1.0.0d/crypto/store/
H A Dstr_mem.c181 void *context = mem_list_start(s, type, attributes, parameters); local
183 if (context)
185 STORE_OBJECT *object = mem_list_next(s, context);
187 if (mem_list_end(s, context))
216 puts that stack into the context to be returned. mem_list_next
224 struct mem_ctx_st *context = local
229 if (!context)
234 memset(context, 0, sizeof(struct mem_ctx_st));
245 if (context->search_attributes == NULL)
247 context
272 struct mem_ctx_st *context = (struct mem_ctx_st *)handle; local
330 struct mem_ctx_st *context = (struct mem_ctx_st *)handle; local
344 struct mem_ctx_st *context = (struct mem_ctx_st *)handle; local
[all...]
/barrelfish-master/include/lwip2/netif/ppp/
H A Dpppcrypt.h54 #define lwip_md4_init(context)
58 #define lwip_md4_free(context)
62 #define lwip_md5_init(context)
66 #define lwip_md5_free(context)
70 #define lwip_sha1_init(context)
74 #define lwip_sha1_free(context)
78 #define lwip_des_init(context)
81 #define lwip_des_free(context)
85 #define lwip_arc4_init(context)
88 #define lwip_arc4_free(context)
[all...]
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/infiniband/hw/mlx4/
H A Ddoorbell.c44 int mlx4_ib_db_map_user(struct mlx4_ib_ucontext *context, unsigned long virt, argument
51 mutex_lock(&context->db_page_mutex);
53 list_for_each_entry(page, &context->db_page_list, list)
65 page->umem = ib_umem_get(&context->ibucontext, virt & PAGE_MASK,
73 list_add(&page->list, &context->db_page_list);
82 mutex_unlock(&context->db_page_mutex);
87 void mlx4_ib_db_unmap_user(struct mlx4_ib_ucontext *context, struct mlx4_db *db) argument
89 mutex_lock(&context->db_page_mutex);
97 mutex_unlock(&context->db_page_mutex);
/barrelfish-master/lib/cxx/include/
H A Dunwind.h112 struct _Unwind_Context* context);
117 struct _Unwind_Context* context);
150 struct _Unwind_Context* context,
158 struct _Unwind_Context* context);
204 _Unwind_VRS_Get(_Unwind_Context *context, _Unwind_VRS_RegClass regclass,
209 _Unwind_VRS_Set(_Unwind_Context *context, _Unwind_VRS_RegClass regclass,
214 _Unwind_VRS_Pop(_Unwind_Context *context, _Unwind_VRS_RegClass regclass,
221 extern uintptr_t _Unwind_GetGR(struct _Unwind_Context *context, int index);
222 extern void _Unwind_SetGR(struct _Unwind_Context *context, int index,
224 extern uintptr_t _Unwind_GetIP(struct _Unwind_Context *context);
245 _Unwind_GetGR(struct _Unwind_Context *context, int index) argument
255 _Unwind_SetGR(struct _Unwind_Context *context, int index, uintptr_t value) argument
263 _Unwind_GetIP(struct _Unwind_Context *context) argument
271 _Unwind_SetIP(struct _Unwind_Context *context, uintptr_t value) argument
[all...]
/barrelfish-master/lib/cxx/unwind/
H A DUnwind-EHABI.h36 _Unwind_State state, _Unwind_Control_Block *ucbp, _Unwind_Context *context);
39 _Unwind_State state, _Unwind_Control_Block *ucbp, _Unwind_Context *context);
42 _Unwind_State state, _Unwind_Control_Block *ucbp, _Unwind_Context *context);
H A DUnwind-sjlj.c111 _LIBUNWIND_TRACE_UNWINDING("unwind_phase1: initial function-context=%p",
125 _LIBUNWIND_TRACE_UNWINDING("unwind_phase1: function-context=%p", (void *)c);
139 // stop search and remember function context
175 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2s(ex_ojb=%p): context=%p",
395 _Unwind_GetLanguageSpecificData(struct _Unwind_Context *context) { argument
396 _Unwind_FunctionContext_t ufc = (_Unwind_FunctionContext_t) context;
397 _LIBUNWIND_TRACE_API("_Unwind_GetLanguageSpecificData(context=%p) "
399 (void *)context, ufc->lsda);
405 _LIBUNWIND_EXPORT uintptr_t _Unwind_GetGR(struct _Unwind_Context *context, argument
407 _LIBUNWIND_TRACE_API("_Unwind_GetGR(context
415 _Unwind_SetGR(struct _Unwind_Context *context, int index, uintptr_t new_value) argument
426 _Unwind_GetIP(struct _Unwind_Context *context) argument
437 _Unwind_GetIPInfo(struct _Unwind_Context *context, int *ipBefore) argument
449 _Unwind_SetIP(struct _Unwind_Context *context, uintptr_t new_value) argument
461 _Unwind_GetRegionStart(struct _Unwind_Context *context) argument
485 _Unwind_GetDataRelBase(struct _Unwind_Context *context) argument
496 _Unwind_GetTextRelBase(struct _Unwind_Context *context) argument
505 _Unwind_GetCFA(struct _Unwind_Context *context) argument
[all...]
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/infiniband/core/
H A Dsa.h67 void *context),
68 void *context,
82 void *context),
83 void *context,
95 void *context),
96 void *context,
/barrelfish-master/lib/compiler-rt/builtins/
H A Dgcc_personality_v0.c144 struct _Unwind_Context *context) {
148 if (__gnu_unwind_frame(exceptionObject, context) != _URC_OK)
165 struct _Unwind_Exception *exceptionObject, struct _Unwind_Context *context)
170 struct _Unwind_Context *context)
174 struct _Unwind_Exception *exceptionObject, struct _Unwind_Context *context)
186 return continueUnwind(exceptionObject, context);
189 const uint8_t *lsda = (uint8_t *)_Unwind_GetLanguageSpecificData(context);
191 return continueUnwind(exceptionObject, context);
193 uintptr_t pc = (uintptr_t)_Unwind_GetIP(context) - 1;
194 uintptr_t funcStart = (uintptr_t)_Unwind_GetRegionStart(context);
143 continueUnwind(struct _Unwind_Exception *exceptionObject, struct _Unwind_Context *context) argument
163 __gcc_personality_sj0( int version, _Unwind_Action actions, uint64_t exceptionClass, struct _Unwind_Exception *exceptionObject, struct _Unwind_Context *context) argument
[all...]
/barrelfish-master/lib/devif/backends/net/mlx4/include/rdma/
H A Dib_peer_mem.h39 void *context; member in struct:core_ticket
43 struct ib_peer_memory_client *ib_get_peer_client(struct ib_ucontext *context, unsigned long addr,
52 void *context);
/barrelfish-master/usr/acpi/
H A Dbuttons.c45 void *context)
49 power_button_handler(context);
54 void *context, void **retval)
44 power_button_notify_handler(ACPI_HANDLE handle, uint32_t value, void *context) argument
53 power_button_probe(ACPI_HANDLE handle, uint32_t nestlevel, void *context, void **retval) argument
/barrelfish-master/usr/drivers/rtc/
H A Dmain.c54 struct chips_context *context = chips_get_context(); local
55 r = context->init("rtc");
58 r = chips_listen_and_register_singleton(NULL, handler, context, "rtc",

Completed in 95 milliseconds

12345678