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

1 2

  /src/external/gpl3/binutils/dist/gprofng/src/
IndexMap2D.h 72 Vector<Value_t> *map2 = NULL;
74 map2 = map1->fetch ((int) key1);
75 if (map2 == NULL)
77 map2 = new Vector<Value_t>;
78 map1->store ((int) key1, map2);
80 map2->store ((int) key2, val);
89 Vector<Value_t> *map2 = map1->fetch ((int) key1);
90 if (map2 == NULL || key2 >= map2->size ())
92 return map2->fetch ((int) key2)
    [all...]
DefaultMap2D.h 84 Map<Key2_t, Value_t> *map2 = map1->get (key1); local
85 if (map2 == NULL)
88 map2 = new IntervalMap<Key2_t, Value_t>;
90 map2 = new DefaultMap<Key2_t, Value_t>;
91 map2list->append (map2);
92 map1->put (key1, map2);
94 map2->put (key2, val);
101 Map<Key2_t, Value_t> *map2 = map1->get (key1); local
102 if (map2 == NULL)
104 return map2->get (key2)
112 Map<Key2_t, Value_t> *map2 = map1->get (key1); local
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
IndexMap2D.h 72 Vector<Value_t> *map2 = NULL;
74 map2 = map1->fetch ((int) key1);
75 if (map2 == NULL)
77 map2 = new Vector<Value_t>;
78 map1->store ((int) key1, map2);
80 map2->store ((int) key2, val);
89 Vector<Value_t> *map2 = map1->fetch ((int) key1);
90 if (map2 == NULL || key2 >= map2->size ())
92 return map2->fetch ((int) key2)
    [all...]
DefaultMap2D.h 84 Map<Key2_t, Value_t> *map2 = map1->get (key1); local
85 if (map2 == NULL)
88 map2 = new IntervalMap<Key2_t, Value_t>;
90 map2 = new DefaultMap<Key2_t, Value_t>;
91 map2list->append (map2);
92 map1->put (key1, map2);
94 map2->put (key2, val);
101 Map<Key2_t, Value_t> *map2 = map1->get (key1); local
102 if (map2 == NULL)
104 return map2->get (key2)
112 Map<Key2_t, Value_t> *map2 = map1->get (key1); local
    [all...]
  /src/tests/lib/libc/sys/
t_minherit.c 72 void *map2 = makemap(1, MAP_INHERIT_COPY); local
76 ATF_REQUIRE(memcmp(map1, map2, page) == 0);
82 ATF_REQUIRE(memcmp(map1, map2, page) == 0);
98 void *map2 = makemap(1, MAP_INHERIT_SHARE); local
103 memset(map2, 0, page);
104 ATF_REQUIRE(memcmp(map1, map2, page) == 0);
110 ATF_REQUIRE(memcmp(map1, map2, page) == 0);
158 void *map2 = makemap(0, MAP_INHERIT_SHARE); local
163 memset(map2, 1, page);
164 ATF_REQUIRE(memcmp(map1, map2, page) == 0)
    [all...]
t_mprotect.c 328 void *map, *map2; local
342 map2 = mremap(map, page, NULL, page, MAP_REMAPDUP);
343 ATF_REQUIRE(map2 != MAP_FAILED);
345 ATF_REQUIRE(mprotect(map2, page, PROT_EXEC|PROT_READ) == 0);
351 ATF_REQUIRE(((int (*)(void))map2)() == 1);
359 ATF_REQUIRE(strlcpy(map2, "XXX", 3) == 0);
384 ATF_REQUIRE(munmap(map2, page) == 0);
396 void *map, *map2; local
413 map2 = mremap(map, page, NULL, page, MAP_REMAPDUP);
414 ATF_REQUIRE(map2 != MAP_FAILED)
    [all...]
t_mmap.c 626 void *map1 = MAP_FAILED, *map2 = MAP_FAILED, *map3 = MAP_FAILED; local
633 map2 = mmap(map1, page, PROT_READ|PROT_WRITE, MAP_ANON, -1, 0);
634 if (map2 == MAP_FAILED) {
650 if (map2 != MAP_FAILED) {
651 ATF_CHECK_MSG(munmap(map2, page) == 0, "munmap2 %p hint=%p",
652 map2, hint); local
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator_bytemap.h 71 u8 *map2 = GetOrCreate(idx / kSize2); local
72 CHECK_EQ(0U, map2[idx % kSize2]);
73 map2[idx % kSize2] = val;
78 u8 *map2 = Get(idx / kSize2); local
79 if (!map2) return 0;
80 auto value_ptr = AddressSpaceView::Load(&map2[idx % kSize2]);
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/inc/
mod_shared.h 105 enum lut3d_control_gamut_map map2; member in struct:lut3d_settings
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_flat_map.h 110 T *map2 = GetOrCreate(idx / kSize2); local
111 return *AddressSpaceView::Load(&map2[idx % kSize2]);
116 T *map2 = GetOrCreate(idx / kSize2); local
117 return *AddressSpaceView::LoadWritable(&map2[idx % kSize2]);
  /src/external/bsd/libproc/dist/tests/
proc_test.c 190 prmap_t *map1, *map2; local
201 map2 = proc_obj2map(phdl, aout_object);
202 ATF_REQUIRE_MSG(map2 != 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
233 map2 = proc_name2map(phdl, aout_object);
234 ATF_REQUIRE_MSG(map2 != 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 133 const struct alias_map *map2));
392 alias_compare (map1, map2)
394 const struct alias_map *map2;
397 return strcasecmp (map1->alias, map2->alias);
400 const unsigned char *p2 = (const unsigned char *) map2->alias;
  /src/external/gpl3/gcc.old/dist/intl/
localealias.c 147 const struct alias_map *map2));
390 alias_compare (map1, map2)
392 const struct alias_map *map2;
395 return strcasecmp (map1->alias, map2->alias);
398 const unsigned char *p2 = (const unsigned char *) map2->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 152 const struct alias_map *map2);
410 alias_compare (const struct alias_map *map1, const struct alias_map *map2)
413 return strcasecmp (map1->alias, map2->alias);
416 const unsigned char *p2 = (const unsigned char *) map2->alias;
  /src/external/gpl2/texinfo/dist/intl/
localealias.c 149 const struct alias_map *map2);
389 alias_compare (const struct alias_map *map1, const struct alias_map *map2)
392 return strcasecmp (map1->alias, map2->alias);
395 const unsigned char *p2 = (const unsigned char *) map2->alias;
  /src/sys/dev/wsfont/
wsfont.c 1080 const struct wsfont_level2_glyphmap *map2; local
1093 map2 = map1->level2[hi - map1->base];
1099 if (map2 == NULL || lo < map2->base || lo >= map2->base + map2->size)
1102 lo -= map2->base;
1104 switch(map2->width) {
1106 c = (((const u_int8_t *)map2->chars)[lo]);
1109 c = (((const u_int16_t *)map2->chars)[lo])
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
bitmap.h 580 bmp_iter_and_init (bitmap_iterator *bi, const_bitmap map1, const_bitmap map2,
584 bi->elt2 = map2->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,
654 bi->elt2 = map2->first;
656 gcc_checking_assert (!map1->tree_form && !map2->tree_form);
  /src/external/bsd/kyua-cli/dist/engine/
test_program.cpp 189 std::map< std::string, engine::test_case_ptr > map1, map2; local
195 map2.insert(make_pair((*iter)->name(), *iter));
196 return std::equal(map1.begin(), map1.end(), map2.begin(),
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
program-state.cc 1557 sm_state_map map2 (*sm);
1566 /* Make the same change to map2. */
1567 map2.impl_set_state (y_sval, TEST_STATE_5, z_sval, ext_state);
1568 ASSERT_EQ (map1.hash (), map2.hash ());
1569 ASSERT_EQ (map1, map2);
1580 sm_state_map map2 (*sm);
1595 map2.impl_set_state (z_sval, TEST_STATE_2, NULL, ext_state);
1596 map2.impl_set_state (y_sval, TEST_STATE_3, NULL, ext_state);
1597 map2.impl_set_state (x_sval, TEST_STATE_2, NULL, ext_state);
1599 ASSERT_EQ (map1.hash (), map2.hash ())
    [all...]
store.cc 688 binding_map::cmp (const binding_map &map1, const binding_map &map2)
690 if (int count_cmp = map1.elements () - map2.elements ())
699 auto_vec <const binding_key *> keys2 (map2.elements ());
700 for (map_t::iterator iter = map2.begin ();
701 iter != map2.end (); ++iter)
712 if (int sval_cmp = svalue::cmp_ptr (map1.get (k1), map2.get (k2)))
  /src/external/bsd/openldap/dist/servers/slapd/back-meta/
map.c 73 struct ldapmapping *map2 = (struct ldapmapping *)c2; local
74 int rc = map1->src.bv_len - map2->src.bv_len;
76 return ( strcasecmp( map1->src.bv_val, map2->src.bv_val ) );
83 struct ldapmapping *map2 = (struct ldapmapping *)c2; local
85 return ( ( strcasecmp( map1->src.bv_val, map2->src.bv_val ) == 0 ) ? -1 : 0 );
  /src/external/bsd/openldap/dist/servers/slapd/overlays/
rwmmap.c 48 struct ldapmapping *map2 = (struct ldapmapping *)c2; local
49 int rc = map1->m_src.bv_len - map2->m_src.bv_len;
55 return strcasecmp( map1->m_src.bv_val, map2->m_src.bv_val );
62 struct ldapmapping *map2 = (struct ldapmapping *)c2; local
63 int rc = map1->m_src.bv_len - map2->m_src.bv_len;
69 return ( ( strcasecmp( map1->m_src.bv_val, map2->m_src.bv_val ) == 0 ) ? -1 : 0 );
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/allwinner/
sun8i-a33.dtsi 314 map2 {
  /src/external/gpl3/gcc.old/dist/gcc/cp/
constraint.cc 604 tree map2 = ATOMIC_CONSTR_MAP (t2); local
605 while (map1 && map2)
607 gcc_checking_assert (TREE_VALUE (map1) == TREE_VALUE (map2));
609 tree arg2 = TREE_PURPOSE (map2);
613 map2 = TREE_CHAIN (map2);
615 gcc_checking_assert (!map1 && !map2);

Completed in 50 milliseconds

1 2