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

1 2 3 4

  /src/external/gpl3/gcc/dist/gcc/
profile.h 48 bool existed; local
49 gcov_type &c = edge_gcov_counts->get_or_insert (e, &existed);
50 if (!existed)
ordered-hash-map-tests.cc 61 bool existed; local
78 existed = true;
79 int &value = m.get_or_insert (spider, &existed);
81 ASSERT_EQ (false, existed);
92 existed = false;
93 ASSERT_EQ (750, m.get_or_insert (millipede, &existed));
94 ASSERT_EQ (true, existed);
123 bool existed; local
142 const char* &value = m.get_or_insert (8, &existed);
144 ASSERT_EQ (false, existed);
    [all...]
gimple-range-edge.cc 119 bool existed; local
162 vrange_storage *&slot = m_edge_table->get_or_insert (e, &existed);
163 if (existed)
182 vrange_storage *&slot = m_edge_table->get_or_insert (default_edge, &existed);
184 gcc_checking_assert (!existed);
hash-set.h 59 bool existed = !Traits::is_empty (*e); local
60 if (!existed)
68 return existed;
ctfc.cc 121 bool existed = false; local
128 existed = true;
130 gcc_assert (!existed);
154 bool existed = false; local
161 existed = true;
163 gcc_assert (!existed);
187 bool existed = false; local
194 existed = true;
196 gcc_assert (!existed);
gentarget-def.cc 185 bool existed; local
186 const char *&entry = have_funcs->get_or_insert (test, &existed);
187 if (!existed)
ordered-hash-map.h 58 bool existed = m_map.put (k, v); local
59 if (!existed)
69 return existed;
80 if it doesn't already exist. If existed is not NULL then it is set to
83 Value &get_or_insert (const Key &k, bool *existed = NULL)
99 if (existed)
100 *existed = _existed;
coroutine-passes.cc 347 bool existed; local
349 tree &res_dest = destinations.get_or_insert (idx, &existed);
350 if (existed && dump_file)
362 tree &dst_dest = destinations.get_or_insert (idx + 1, &existed);
363 if (existed && dump_file)
symbol-summary.h 201 bool existed; local
202 T **v = &m_map.get_or_insert (node->get_uid (), &existed);
203 if (!existed)
700 bool existed; local
701 T **v = &m_map.get_or_insert (edge->get_uid (), &existed);
702 if (!existed)
gimple-ssa-backprop.cc 584 bool existed; local
585 usage_info *&map_info = m_info_map.get_or_insert (var, &existed);
586 if (!existed)
graphite.cc 264 bool existed; local
265 tree &chrec = seir_cache->get_or_insert (key, &existed);
266 if (!existed)
ipa-free-lang-data.cc 205 bool existed;
207 = map->get_or_insert (t, &existed);
208 if (!existed)
275 bool existed;
277 = fld_incomplete_types->get_or_insert (t, &existed);
279 if (!existed)
204 bool existed; local
274 bool existed; local
  /src/external/gpl3/gcc.old/dist/gcc/
profile.h 48 bool existed; local
49 gcov_type &c = edge_gcov_counts->get_or_insert (e, &existed);
50 if (!existed)
gimple-range-edge.cc 120 bool existed; local
160 irange *&slot = m_edge_table->get_or_insert (e, &existed);
161 if (existed)
176 irange *&slot = m_edge_table->get_or_insert (default_edge, &existed);
178 gcc_checking_assert (!existed);
hash-set.h 59 bool existed = !Traits::is_empty (*e); local
60 if (!existed)
63 return existed;
ctfc.cc 121 bool existed = false; local
128 existed = true;
130 gcc_assert (!existed);
154 bool existed = false; local
161 existed = true;
163 gcc_assert (!existed);
187 bool existed = false; local
194 existed = true;
196 gcc_assert (!existed);
gentarget-def.cc 185 bool existed; local
186 const char *&entry = have_funcs->get_or_insert (test, &existed);
187 if (!existed)
ordered-hash-map.h 58 bool existed = m_map.put (k, v); local
59 if (!existed)
69 return existed;
coroutine-passes.cc 350 bool existed; local
352 tree &res_dest = destinations.get_or_insert (idx, &existed);
353 if (existed && dump_file)
365 tree &dst_dest = destinations.get_or_insert (idx + 1, &existed);
366 if (existed && dump_file)
symbol-summary.h 201 bool existed; local
202 T **v = &m_map.get_or_insert (node->get_uid (), &existed);
203 if (!existed)
700 bool existed; local
701 T **v = &m_map.get_or_insert (edge->get_uid (), &existed);
702 if (!existed)
gimple-ssa-backprop.cc 578 bool existed; local
579 usage_info *&map_info = m_info_map.get_or_insert (var, &existed);
580 if (!existed)
graphite.cc 263 bool existed; local
264 tree &chrec = seir_cache->get_or_insert (key, &existed);
265 if (!existed)
ipa-free-lang-data.cc 205 bool existed;
207 = map->get_or_insert (t, &existed);
208 if (!existed)
275 bool existed;
277 = fld_incomplete_types->get_or_insert (t, &existed);
279 if (!existed)
204 bool existed; local
274 bool existed; local
timevar.cc 174 bool existed; local
175 timer::timevar_def *def = &m_hash_map.get_or_insert (item_name, &existed);
176 if (!existed)
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_bo.c 703 bool existed; local
732 TTM_REF_SYNCCPU_WRITE, &existed, false);
733 if (ret != 0 || existed)

Completed in 52 milliseconds

1 2 3 4