HomeSort by: relevance | last modified time | path
    Searched defs:universe (Results 1 - 21 of 21) sorted by relevancy

  /src/external/mpl/dhcp/dist/keama/
print.c 101 struct element *universe; local
111 universe = mapGet(arg, "universe");
112 if ((universe == NULL) || (universe->type != ELEMENT_STRING)) {
117 concatString(result, stringValue(universe));
625 struct element *universe; local
635 universe = mapGet(arg, "universe");
636 if ((universe == NULL) || (universe->type != ELEMENT_STRING))
953 struct element *universe; local
    [all...]
reduce.c 84 * { "universe": <option_space_old>,
87 * semantic: check universe/code from incoming packet
90 struct element *universe; local
100 universe = mapGet(arg, "universe");
101 if ((universe == NULL) || (universe->type != ELEMENT_STRING)) {
102 debug("can't get exists option universe");
110 option = option_lookup_name(stringValue(universe)->content,
537 * { "universe": <option_space_old>
543 struct element *universe; local
881 struct element *universe; local
    [all...]
options.c 586 struct space *universe; local
589 universe = space_lookup(space);
590 if (universe == NULL)
595 if (universe != option->space)
606 struct space *universe; local
609 TAILQ_FOREACH(universe, &spaces) {
610 if (universe->status == kea_unknown)
612 if (strcmp(name, universe->name) == 0)
615 if (universe == NULL)
620 if (universe != option->space
631 struct space *universe; local
    [all...]
parse.c 780 struct space *universe; local
793 universe = (struct space *)malloc(sizeof(*universe));
794 if (universe == NULL)
796 memset(universe, 0, sizeof(*universe));
797 universe->old = strdup(val);
798 universe->name = universe->old;
799 push_space(universe);
1294 struct space *universe; local
    [all...]
  /src/external/mit/isl/dist/
codegen.c 52 static __isl_give isl_union_set *universe(isl_ctx *ctx, const char *name) function
74 target = universe(ctx, name);
96 target = universe(ctx, "separate");
98 target = universe(ctx, "atomic");
isl_map_subtract.c 931 isl_map *universe; local
936 universe = isl_map_universe(isl_map_get_space(map));
938 return isl_map_subtract(universe, map);
isl_morph.c 387 isl_basic_set *universe; local
395 universe = isl_basic_set_universe(isl_space_copy(bset->dim));
397 return isl_morph_alloc(universe, isl_basic_set_copy(universe),
isl_schedule_constraints.c 530 isl_bool universe; local
538 universe = isl_set_plain_is_universe(sc->context);
539 if (universe < 0)
541 if (!universe)
isl_ast_graft.c 716 isl_set *universe; local
723 universe = isl_set_universe(isl_ast_build_get_space(build, 1));
731 graft->guard = isl_set_copy(universe);
736 isl_set_free(universe);
isl_schedule_tree.c 1584 isl_union_map *universe; local
1587 universe = isl_union_map_universe(isl_union_map_copy(umap));
1588 dom = isl_union_map_domain(universe);
1898 /* Extract a universe domain from the children of the tree root "tree",
1933 /* Extract a universe domain from the tree root "tree".
isl_schedule_node.c 352 isl_union_map *exp, *universe; local
362 universe = isl_union_map_universe(isl_union_map_copy(exp));
363 filter = isl_union_map_domain(universe);
406 * We collect the universe domain of the elements in "list" and
407 * add it to the universe range of the extension (intersected
450 * (or its universe).
453 * We therefore initialize data->filter to the universe of the domain,
456 * to the universe of the schedule domain and replace the zero-dimensional
531 * (or its universe).
612 * or if we are collecting the universe domain (without prefix)
4288 isl_union_set *universe; local
4457 isl_union_set *universe; local
    [all...]
isl_ast_codegen.c 1362 * Otherwise, return the universe.
2959 * Otherwise, "class_domain" is the universe domain.
3104 * specified, then we call compute_partial_domains with the universe
3108 * between the universe and domains->done).
4329 isl_union_map *partial, *test, *gt, *universe, *umap1, *umap2; local
4358 universe = isl_union_map_universe(isl_union_map_copy(umap));
4359 domain = isl_union_map_domain(isl_union_map_copy(universe));
4360 range = isl_union_map_range(universe);
4384 isl_union_map *prefix, *universe, *umap1, *umap2; local
4392 universe = isl_union_map_universe(isl_union_map_copy(umap))
5086 isl_union_map *universe; local
    [all...]
isl_union_map.c 2290 /* Return the universe in the space of "map".
2292 static __isl_give isl_map *universe(__isl_take isl_map *map) function
2304 .fn_map = &universe,
3057 isl_union_map *universe; local
3068 universe = isl_union_map_universe(isl_union_map_copy(umap));
3069 domain = isl_union_map_domain(universe);
isl_test.c 10262 isl_bool universe; local
10266 universe = isl_basic_set_plain_is_universe(bset);
10269 if (universe < 0)
10271 if (!universe)
10785 /* Check that a universe basic set that is not obviously equal to the universe
10786 * is still recognized as being equal to the universe.
10803 "not recognized as universe set", return -1);
10901 { "universe", &test_universe },
  /src/external/mit/isl/dist/include/isl/
typed_cpp.h 3321 static inline typed::map<Domain, Range> universe(const typed::space<Domain, Range> &space);
3586 static inline typed::map<pair<Domain, Range>, Range2> universe(const typed::space<pair<Domain, Range>, Range2> &space);
3867 static inline typed::map<Domain, Domain> universe(const typed::space<Domain, Domain> &space);
4132 static inline typed::map<Domain, pair<Range, Range2>> universe(const typed::space<Domain, pair<Range, Range2>> &space);
4410 static inline typed::map<pair<T1, T2>, pair<T1, T2>> universe(const typed::space<pair<T1, T2>, pair<T1, T2>> &space);
4674 static inline typed::map<pair<T1, T2>, pair<Range, Range2>> universe(const typed::space<pair<T1, T2>, pair<Range, Range2>> &space);
9546 static inline typed::set<> universe(const typed::space<> &space);
9727 static inline typed::set<Domain> universe(const typed::space<Domain> &space);
9909 static inline typed::set<pair<Domain, Range>> universe(const typed::space<pair<Domain, Range>> &space);
11256 inline typed::union_map<Domain, Range> universe() const
23280 typed::map<Domain, Range> typed::map<Domain, Range>::universe(const typed::space<Domain, Range> &space) function in class:isl::typed::typed::map
24120 typed::map<pair<Domain, Range>, Range2> typed::map<pair<Domain, Range>, Range2>::universe(const typed::space<pair<Domain, Range>, Range2> &space) function in class:isl::typed::typed::map
25118 typed::map<Domain, Domain> typed::map<Domain, Domain>::universe(const typed::space<Domain, Domain> &space) function in class:isl::typed::typed::map
25958 typed::map<Domain, pair<Range, Range2>> typed::map<Domain, pair<Range, Range2>>::universe(const typed::space<Domain, pair<Range, Range2>> &space) function in class:isl::typed::typed::map
27050 typed::map<pair<T1, T2>, pair<T1, T2>> typed::map<pair<T1, T2>, pair<T1, T2>>::universe(const typed::space<pair<T1, T2>, pair<T1, T2>> &space) function in class:isl::typed::typed::map
27937 typed::map<pair<T1, T2>, pair<Range, Range2>> typed::map<pair<T1, T2>, pair<Range, Range2>>::universe(const typed::space<pair<T1, T2>, pair<Range, Range2>> &space) function in class:isl::typed::typed::map
41428 typed::set<> typed::set<>::universe(const typed::space<> &space) function in class:isl::typed::typed::set
41978 typed::set<Domain> typed::set<Domain>::universe(const typed::space<Domain> &space) function in class:isl::typed::typed::set
42542 typed::set<pair<Domain, Range>> typed::set<pair<Domain, Range>>::universe(const typed::space<pair<Domain, Range>> &space) function in class:isl::typed::typed::set
44563 typed::union_map<Domain, Range> typed::union_map<Domain, Range>::universe() const function in class:isl::typed::typed::union_map
45251 typed::union_map<pair<Domain, Range>, Range2> typed::union_map<pair<Domain, Range>, Range2>::universe() const function in class:isl::typed::typed::union_map
45913 typed::union_map<Domain, Domain> typed::union_map<Domain, Domain>::universe() const function in class:isl::typed::typed::union_map
46601 typed::union_map<Domain, pair<Range, Range2>> typed::union_map<Domain, pair<Range, Range2>>::universe() const function in class:isl::typed::typed::union_map
47375 typed::union_map<pair<T1, T2>, pair<T1, T2>> typed::union_map<pair<T1, T2>, pair<T1, T2>>::universe() const function in class:isl::typed::typed::union_map
48119 typed::union_map<pair<T1, T2>, pair<Range, Range2>> typed::union_map<pair<T1, T2>, pair<Range, Range2>>::universe() const function in class:isl::typed::typed::union_map
51636 typed::union_set<> typed::union_set<>::universe() const function in class:isl::typed::typed::union_set
51987 typed::union_set<Domain> typed::union_set<Domain>::universe() const function in class:isl::typed::typed::union_set
52338 typed::union_set<pair<Domain, Range>> typed::union_set<pair<Domain, Range>>::universe() const function in class:isl::typed::typed::union_set
    [all...]
cpp-checked.h 2100 static inline isl::checked::map universe(isl::checked::space space);
3720 static inline isl::checked::set universe(isl::checked::space space);
4045 inline isl::checked::union_map universe() const;
4326 inline isl::checked::union_set universe() const;
10617 isl::checked::map map::universe(isl::checked::space space) function in class:isl::checked::map
17576 isl::checked::set set::universe(isl::checked::space space) function in class:isl::checked::set
19063 isl::checked::union_map union_map::universe() const function in class:isl::checked::union_map
20351 isl::checked::union_set union_set::universe() const function in class:isl::checked::union_set
cpp.h 2166 static inline isl::map universe(isl::space space);
3786 static inline isl::set universe(isl::space space);
4111 inline isl::union_map universe() const;
4392 inline isl::union_set universe() const;
13496 isl::map map::universe(isl::space space) function in class:isl::map
24635 isl::set set::universe(isl::space space) function in class:isl::set
27276 isl::union_map union_map::universe() const function in class:isl::union_map
29456 isl::union_set union_set::universe() const function in class:isl::union_set
  /src/external/mpl/dhcp/dist/common/
options.c 47 static int prepare_option_buffer(struct universe *universe, struct buffer *bp,
124 int parse_option_buffer (options, buffer, length, universe)
128 struct universe *universe;
144 (offset + universe->tag_size) <= length &&
145 (code = universe->get_tag(buffer + offset)) != universe->end; ) {
147 offset += universe->tag_size;
154 if ((offset + universe->length_size) > length)
310 struct universe *universe = (struct universe *)0; local
358 struct universe *universe = find_option_universe (eopt, uname); local
3791 struct universe *universe = find_option_universe (oc -> option, local
    [all...]
parse.c 1187 struct universe *universe; local
1222 universe = (struct universe *)0;
1223 if (!universe_hash_lookup (&universe, universe_hash,
1233 universe = &dhcp_universe;
1237 option_name_hash_lookup(opt, universe->name_hash, val, 0, MDL);
1256 if (code == 0 || code == universe->end) {
1258 "in the %s space.", universe->end,
1259 universe->name)
    [all...]
  /src/external/mpl/dhcp/dist/includes/
tree.h 303 struct universe { struct
305 struct option_cache *(*lookup_func) (struct universe *,
308 void (*save_func) (struct universe *, struct option_state *,
313 struct binding_scope **, struct universe *, void *,
319 struct universe *, void *));
320 void (*delete_func) (struct universe *universe,
322 int (*option_state_dereference) (struct universe *,
326 const unsigned char *, unsigned, struct universe *);
331 struct universe *);
350 struct universe *universe; member in struct:option
    [all...]
  /src/external/mit/isl/dist/interface/
isl.py 8822 def universe(arg0): member in class:union_map
10227 def universe(arg0): member in class:map
11324 def universe(arg0): member in class:union_set
12312 def universe(arg0): member in class:set

Completed in 167 milliseconds