HomeSort by: relevance | last modified time | path
    Searched defs:el (Results 1 - 25 of 119) sorted by relevancy

1 2 3 4 5

  /src/external/mit/isl/dist/
isl_list_read_templ.c 13 /* Read a list of elements of type EL from "s".
19 __isl_give LIST(EL) *FN(isl_stream_read,LIST(EL_BASE))(isl_stream *s)
22 LIST(EL) *list;
27 list = FN(LIST(EL),alloc)(ctx, 0);
31 return FN(LIST(EL),free)(list);
35 EL *el; local
37 el = FN(isl_stream_read,EL_BASE)(s);
38 list = FN(LIST(EL),add)(list, el);
    [all...]
isl_list_read_yaml_templ.c 14 /* Read a sequence of EL objects and return them as a list.
16 static __isl_give LIST(EL) *FN(isl_stream_yaml_read,LIST(EL_BASE))(
20 LIST(EL) *list;
28 list = FN(LIST(EL),alloc)(ctx, 0);
30 EL *el; local
32 el = FN(isl_stream_read,EL_BASE)(s);
33 list = FN(LIST(EL),add)(list, el);
37 return FN(LIST(EL),free)(list)
    [all...]
isl_multi_apply_templ.c 22 __isl_give EL *(*fn)(EL *el, __isl_take APPLY_DOM *set),
40 EL *el; local
42 el = FN(MULTI(BASE),take_at)(multi, i);
43 el = fn(el, FN(APPLY_DOM,copy)(set));
44 multi = FN(MULTI(BASE),restore_at)(multi, i, el);
isl_multi_coalesce.c 26 EL *el = FN(EL,copy)(multi->u.p[i]); local
27 el = FN(EL,coalesce)(el);
28 if (!el)
30 FN(EL,free)(multi->u.p[i]);
31 multi->u.p[i] = el;
isl_multi_zero_templ.c 34 EL *el; local
38 el = FN(EL,zero_on_domain)(ls);
42 FN(EL,copy)(el));
44 FN(EL,free)(el);
isl_map_bound_templ.c 45 TYPE *el; local
47 el = FN(MULTI(BASE),get_at)(bound, i);
48 map = map_bound(map, i, el);
isl_multi_bin_val_templ.c 14 __isl_give EL *(*fn)(__isl_take EL *el, __isl_take isl_val *v),
25 EL *el; local
27 el = FN(MULTI(BASE),take_at)(multi, i);
28 el = fn(el, isl_val_copy(v));
29 multi = FN(MULTI(BASE),restore_at)(multi, i, el);
48 __isl_give EL *(*fn)(__isl_take EL *el, __isl_take isl_val *v)
60 EL *el; local
    [all...]
isl_multi_identity_templ.c 52 EL *el; local
53 el = FN(EL,var_on_domain)(isl_local_space_copy(ls),
55 multi = FN(FN(MULTI(BASE),set),BASE)(multi, i, el);
isl_multi_move_dims_templ.c 61 EL *el; local
63 el = FN(MULTI(BASE),take_at)(multi, i);
64 el = FN(EL,move_dims)(el, dst_type, dst_pos,
66 multi = FN(MULTI(BASE),restore_at)(multi, i, el);
isl_multi_read_no_explicit_domain_templ.c 17 * Read an EL from "s" and add it to *list.
22 LIST(EL) **list = (LIST(EL) **) user;
23 EL *el; local
25 el = FN(isl_stream_read,BASE)(s);
26 *list = FN(LIST(EL),add)(*list, el);
45 LIST(EL) *list;
65 list = FN(LIST(EL),alloc)(s->ctx, 0)
    [all...]
isl_multi_un_op_templ.c 21 __isl_give EL *(*fn_el)(__isl_take EL *el);
38 EL *el; local
40 el = FN(MULTI(BASE),take_at)(multi, i);
41 el = control->fn_el(el);
42 multi = FN(MULTI(BASE),restore_at)(multi, i, el);
isl_pw_add_constant_templ.c 34 EL *el; local
36 el = FN(PW,take_base_at)(pw, i);
37 el = FN(FN(EL,add_constant),VAL_BASE)(el, FN(VAL,copy)(v));
38 pw = FN(PW,restore_base_at)(pw, i, el);
isl_pw_morph_templ.c 34 EL *el; local
39 el = FN(PW,take_base_at)(pw, i);
40 el = FN(EL,morph_domain)(el, isl_morph_copy(morph));
41 pw = FN(PW,restore_base_at)(pw, i, el);
isl_pw_move_dims_templ.c 29 EL *el; local
31 el = FN(PW,take_base_at)(pw, i);
32 el = FN(EL,move_dims)(el,
34 pw = FN(PW,restore_base_at)(pw, i, el);
isl_pw_scale_templ.c 34 EL *el; local
36 el = FN(PW,take_base_at)(pw, i);
37 el = FN(EL,scale)(el, v);
38 pw = FN(PW,restore_base_at)(pw, i, el);
isl_pw_un_op_templ.c 27 __isl_give EL *(*fn_base)(__isl_take EL *el);
47 EL *el; local
50 el = FN(PW,take_base_at)(pw, i);
51 el = control->fn_base(el);
52 pw = FN(PW,restore_base_at)(pw, i, el);
isl_vec_private.h 15 isl_int *el; member in struct:isl_vec
isl_multi_bind_templ.c 24 EL *el; local
42 el = FN(MULTI(BASE),get_at)(multi, 0);
44 bnd = FN(EL,bind_id)(el, id);
49 el = FN(MULTI(BASE),get_at)(multi, i);
51 bnd_i = FN(EL,bind_id)(el, id);
isl_multi_dims.c 32 involves = FN(EL,involves_dims)(multi->u.p[i], type, first, n);
71 EL *el; local
73 el = FN(MULTI(BASE),take_at)(multi, i);
74 el = FN(EL,insert_dims)(el, type, first, n);
75 multi = FN(MULTI(BASE),restore_at)(multi, i, el);
isl_multi_product_templ.c 24 EL *el; local
42 el = FN(FN(MULTI(BASE),get),BASE)(multi1, i);
43 el = FN(EL,insert_dims)(el, isl_dim_in, in1, in2);
44 el = FN(EL,reset_domain_space)(el, isl_space_copy(space));
45 res = FN(FN(MULTI(BASE),set),BASE)(res, i, el);
    [all...]
isl_pw_insert_dims_templ.c 33 EL *el; local
38 el = FN(PW,take_base_at)(pw, i);
39 el = FN(EL,insert_dims)(el, type, first, n);
40 pw = FN(PW,restore_base_at)(pw, i, el);
isl_pw_lift_templ.c 14 __isl_take EL *el,
15 isl_stat (*fn)(__isl_take isl_set *set, __isl_take EL *el,
20 if (!set || !el)
25 EL *copy;
30 copy = FN(EL,copy)(el);
31 copy = FN(EL,lift)(copy, isl_set_get_space(lift));
38 FN(EL,free)(el)
59 EL *el; local
    [all...]
isl_pw_print_templ.c 9 #undef EL
10 #define EL CAT(isl_,BASE)
26 EL *el; local
31 el = FN(PW,peek_base_at)(pw, i);
32 p = FN(print_body,BASE)(p, el);
33 space = FN(EL,get_domain_space)(el);
  /src/lib/libedit/TEST/
test_filecompletion.c 43 #include "el.h"
522 EditLine *el = el_init(argv[0], stdin, stdout, stderr); local
539 el->el_line = line;
540 fn_complete(el, mycomplet_func, NULL, break_chars, NULL, NULL, 10, NULL, NULL, NULL, NULL);
543 * fn_complete would have expanded and escaped the input in el->el_line.buffer.
547 inputs[i].user_typed_text, inputs[i].escaped_output, el->el_line.buffer);
548 assert(wcscmp(el->el_line.buffer, inputs[i].escaped_output) == 0);
550 el_end(el);
  /src/sys/stand/efiboot/bootaa64/
efibootaa64.c 75 uint64_t el; local
76 __asm __volatile ("mrs %0, CurrentEL" : "=r" (el));
77 return (el >> 2) & 0x3;
92 command_printtab("CurrentEL", "EL%u\n", efi_aarch64_current_el());

Completed in 19 milliseconds

1 2 3 4 5