HomeSort by: relevance | last modified time | path
    Searched refs:map1 (Results 1 - 25 of 43) sorted by relevancy

1 2

  /src/tests/lib/libc/sys/
t_minherit.c 71 void *map1 = makemap(1, MAP_INHERIT_COPY); local
76 ATF_REQUIRE(memcmp(map1, map2, page) == 0);
82 ATF_REQUIRE(memcmp(map1, map2, page) == 0);
83 memset(map1, 0, page);
97 void *map1 = makemap(1, MAP_INHERIT_SHARE); local
104 ATF_REQUIRE(memcmp(map1, map2, page) == 0);
110 ATF_REQUIRE(memcmp(map1, map2, page) == 0);
111 memset(map1, 0, page);
130 void *map1 = makemap(0, MAP_INHERIT_NONE); local
143 memset(map1, 0, page)
157 void *map1 = makemap(1, MAP_INHERIT_ZERO); local
    [all...]
t_mmap.c 626 void *map1 = MAP_FAILED, *map2 = MAP_FAILED, *map3 = MAP_FAILED; local
628 map1 = mmap(hint, page, PROT_READ|PROT_WRITE, MAP_ANON, -1, 0);
629 if (map1 == MAP_FAILED) {
633 map2 = mmap(map1, page, PROT_READ|PROT_WRITE, MAP_ANON, -1, 0);
635 atf_tc_fail_nonfatal("mmap2 hint=%p map1=%p failed: errno=%d",
636 hint, map1, errno);
641 atf_tc_fail_nonfatal("mmap3 hint=%p map1=%p failed: errno=%d",
642 hint, map1, errno);
654 if (map1 != MAP_FAILED) {
655 ATF_CHECK_MSG(munmap(map1, page) == 0, "munmap1 %p hint=%p"
656 map1, hint); local
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
IndexMap2D.h 50 Vector<Vector<Value_t>*> *map1; member in class:IndexMap2D
56 map1 = new Vector<Vector<Value_t>*>;
62 map1->destroy ();
63 delete map1;
73 if (key1 < map1->size ())
74 map2 = map1->fetch ((int) key1);
78 map1->store ((int) key1, map2);
87 if (key1 < 0 || key1 >= map1->size () || key2 < 0)
89 Vector<Value_t> *map2 = map1->fetch ((int) key1);
109 if (key1 < 0 || key1 >= map1->size () || key2 < 0
    [all...]
DefaultMap2D.h 51 Map<Key1_t, Map<Key2_t, Value_t>*> *map1; member in class:DefaultMap2D
59 map1 = new DefaultMap<Key1_t, Map<Key2_t, Value_t>*>;
68 map1 = new DefaultMap<Key1_t, Map<Key2_t, Value_t>*>;
77 delete map1;
84 Map<Key2_t, Value_t> *map2 = map1->get (key1);
92 map1->put (key1, map2);
101 Map<Key2_t, Value_t> *map2 = map1->get (key1);
112 Map<Key2_t, Value_t> *map2 = map1->get (key1);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
IndexMap2D.h 50 Vector<Vector<Value_t>*> *map1; member in class:IndexMap2D
56 map1 = new Vector<Vector<Value_t>*>;
62 map1->destroy ();
63 delete map1;
73 if (key1 < map1->size ())
74 map2 = map1->fetch ((int) key1);
78 map1->store ((int) key1, map2);
87 if (key1 < 0 || key1 >= map1->size () || key2 < 0)
89 Vector<Value_t> *map2 = map1->fetch ((int) key1);
109 if (key1 < 0 || key1 >= map1->size () || key2 < 0
    [all...]
DefaultMap2D.h 51 Map<Key1_t, Map<Key2_t, Value_t>*> *map1; member in class:DefaultMap2D
59 map1 = new DefaultMap<Key1_t, Map<Key2_t, Value_t>*>;
68 map1 = new DefaultMap<Key1_t, Map<Key2_t, Value_t>*>;
77 delete map1;
84 Map<Key2_t, Value_t> *map2 = map1->get (key1);
92 map1->put (key1, map2);
101 Map<Key2_t, Value_t> *map2 = map1->get (key1);
112 Map<Key2_t, Value_t> *map2 = map1->get (key1);
  /src/external/mit/isl/dist/
isl_map_subtract.c 512 /* Return an empty map living in the same space as "map1" and "map2".
514 static __isl_give isl_map *replace_pair_by_empty( __isl_take isl_map *map1,
519 space = isl_map_get_space(map1);
520 isl_map_free(map1);
525 /* Return the set difference between map1 and map2.
528 * If "map1" and "map2" are obviously equal to each other,
531 * If "map1" and "map2" are disjoint, then simply return "map1".
533 __isl_give isl_map *isl_map_subtract( __isl_take isl_map *map1,
540 if (isl_map_align_params_bin(&map1, &map2) < 0
    [all...]
isl_power_templ.c 7 * to the range of "map1" and returns the result.
15 static __isl_give TYPE *FN(TYPE,fixed_power_apply)(__isl_take TYPE *map1,
20 res = FN(TYPE,apply_range)(map1, FN(TYPE,copy)(map2));
isl_map.c 291 /* Do "map1" and "map2" have the same parameters?
293 isl_bool isl_map_has_equal_params(__isl_keep isl_map *map1,
298 space1 = isl_map_peek_space(map1);
1606 isl_bool isl_map_align_params_map_map_and_test(__isl_keep isl_map *map1,
1608 isl_bool (*fn)(__isl_keep isl_map *map1, __isl_keep isl_map *map2))
1612 if (!map1 || !map2)
1614 if (isl_map_has_equal_params(map1, map2))
1615 return fn(map1, map2);
1616 if (isl_map_check_named_params(map1) < 0)
1620 map1 = isl_map_copy(map1)
9177 struct isl_map *map1; local
    [all...]
  /src/external/bsd/libproc/dist/tests/
proc_test.c 190 prmap_t *map1, *map2; local
198 map1 = proc_obj2map(phdl, target_prog_file);
199 ATF_REQUIRE_MSG(map1 != NULL, "failed to look up map for '%s'",
204 ATF_CHECK_EQ(strcmp(map1->pr_mapname, map2->pr_mapname), 0);
222 prmap_t *map1, *map2; local
230 map1 = proc_name2map(phdl, target_prog_file);
231 ATF_REQUIRE_MSG(map1 != NULL, "failed to look up map for '%s'",
236 ATF_CHECK_EQ(strcmp(map1->pr_mapname, map2->pr_mapname), 0);
  /src/external/gpl2/grep/dist/intl/
localealias.c 132 static int alias_compare PARAMS ((const struct alias_map *map1,
392 alias_compare (map1, map2)
393 const struct alias_map *map1;
397 return strcasecmp (map1->alias, map2->alias);
399 const unsigned char *p1 = (const unsigned char *) map1->alias;
  /src/external/gpl3/gcc.old/dist/intl/
localealias.c 146 static int alias_compare PARAMS ((const struct alias_map *map1,
390 alias_compare (map1, map2)
391 const struct alias_map *map1;
395 return strcasecmp (map1->alias, map2->alias);
397 const unsigned char *p1 = (const unsigned char *) map1->alias;
  /src/sys/ddb/
db_break.c 266 db_map_equal(struct vm_map *map1, struct vm_map *map2)
269 return ((map1 == map2) ||
270 ((map1 == NULL) && (map2 == kernel_map)) ||
271 ((map1 == kernel_map) && (map2 == NULL)));
  /src/external/gpl2/gettext/dist/gettext-runtime/intl/
localealias.c 151 static int alias_compare (const struct alias_map *map1,
410 alias_compare (const struct alias_map *map1, const struct alias_map *map2)
413 return strcasecmp (map1->alias, map2->alias);
415 const unsigned char *p1 = (const unsigned char *) map1->alias;
  /src/external/gpl2/texinfo/dist/intl/
localealias.c 148 static int alias_compare (const struct alias_map *map1,
389 alias_compare (const struct alias_map *map1, const struct alias_map *map2)
392 return strcasecmp (map1->alias, map2->alias);
394 const unsigned char *p1 = (const unsigned char *) map1->alias;
  /src/external/mit/isl/dist/include/isl/
map.h 234 __isl_give isl_map *isl_map_sum(__isl_take isl_map *map1,
334 __isl_take isl_map *map1,
337 __isl_take isl_map *map1, __isl_take isl_map *map2);
366 __isl_take isl_map *map1,
370 __isl_take isl_map *map1,
390 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
397 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
400 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
404 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
408 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
    [all...]
  /src/external/bsd/kyua-cli/dist/engine/
test_program.cpp 189 std::map< std::string, engine::test_case_ptr > map1, map2; local
192 map1.insert(make_pair((*iter)->name(), *iter));
196 return std::equal(map1.begin(), map1.end(), map2.begin(),
  /src/external/gpl3/gcc/dist/gcc/
bitmap.h 583 bmp_iter_and_init (bitmap_iterator *bi, const_bitmap map1, const_bitmap map2,
586 bi->elt1 = map1->first;
589 gcc_checking_assert (!map1->tree_form && !map2->tree_form);
649 /* Initialize an iterator to iterate over the bits in MAP1 & ~MAP2. */
653 const_bitmap map1, const_bitmap map2,
656 bi->elt1 = map1->first;
659 gcc_checking_assert (!map1->tree_form && !map2->tree_form);
  /src/external/gpl3/gcc.old/dist/gcc/
bitmap.h 580 bmp_iter_and_init (bitmap_iterator *bi, const_bitmap map1, const_bitmap map2,
583 bi->elt1 = map1->first;
586 gcc_checking_assert (!map1->tree_form && !map2->tree_form);
646 /* Initialize an iterator to iterate over the bits in MAP1 & ~MAP2. */
650 const_bitmap map1, const_bitmap map2,
653 bi->elt1 = map1->first;
656 gcc_checking_assert (!map1->tree_form && !map2->tree_form);
  /src/external/gpl3/gcc/dist/gcc/analyzer/
program-state.cc 1765 sm_state_map map1 (*sm);
1768 ASSERT_EQ (map0.hash (), map1.hash ());
1769 ASSERT_EQ (map0, map1);
1771 map1.impl_set_state (y_sval, TEST_STATE_5, z_sval, ext_state);
1772 ASSERT_NE (map0.hash (), map1.hash ());
1773 ASSERT_NE (map0, map1);
1777 ASSERT_EQ (map1.hash (), map2.hash ());
1778 ASSERT_EQ (map1, map2);
1788 sm_state_map map1 (*sm);
1791 ASSERT_EQ (map0.hash (), map1.hash ())
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
program-state.cc 1556 sm_state_map map1 (*sm);
1559 ASSERT_EQ (map0.hash (), map1.hash ());
1560 ASSERT_EQ (map0, map1);
1562 map1.impl_set_state (y_sval, TEST_STATE_5, z_sval, ext_state);
1563 ASSERT_NE (map0.hash (), map1.hash ());
1564 ASSERT_NE (map0, map1);
1568 ASSERT_EQ (map1.hash (), map2.hash ());
1569 ASSERT_EQ (map1, map2);
1579 sm_state_map map1 (*sm);
1582 ASSERT_EQ (map0.hash (), map1.hash ())
    [all...]
  /src/sys/dev/wsfont/
wsfont.c 1079 const struct wsfont_level1_glyphmap *map1; local
1088 map1 = &encodings[font->encoding];
1090 if (hi < map1->base || hi >= map1->base + map1->size)
1093 map2 = map1->level2[hi - map1->base];
  /src/external/gpl3/gcc/dist/libcpp/
line-map.cc 1455 const struct line_map *map1 = linemap_lookup (set, l1);
1460 && linemap_macro_expansion_map_p (map1)
1461 && (map0 != map1))
1463 if (MAP_START_LOCATION (map0) < MAP_START_LOCATION (map1))
1471 l1 = linemap_macro_map_loc_to_exp_point (linemap_check_macro (map1),
1473 map1 = linemap_lookup (set, l1);
1477 if (map0 == map1)
1862 const line_map_ordinary *map1 = NULL;
1873 &map1);
1876 && !LINEMAP_SYSP (map1))
    [all...]
  /src/external/gpl3/gcc.old/dist/libcpp/
line-map.cc 1341 const struct line_map *map1 = linemap_lookup (set, l1);
1346 && linemap_macro_expansion_map_p (map1)
1347 && (map0 != map1))
1349 if (MAP_START_LOCATION (map0) < MAP_START_LOCATION (map1))
1357 l1 = linemap_macro_map_loc_to_exp_point (linemap_check_macro (map1),
1359 map1 = linemap_lookup (set, l1);
1363 if (map0 == map1)
1748 const line_map_ordinary *map1 = NULL;
1759 &map1);
1762 && !LINEMAP_SYSP (map1))
    [all...]
  /src/sys/dev/hpc/
bicons.c 366 static u_int16_t map1[] = { local
370 *addr = (map1[data >> 4] | map0[data & 0x0f]);
413 static u_int16_t map1[] = { local
417 *addr = (map1[data >> 4] | map0[data & 0x0f]);

Completed in 52 milliseconds

1 2