Searched refs:empty (Results 1 - 25 of 259) sorted by relevance

1234567891011

/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-more-matchers.h46 // Defines a matcher that matches an empty container. The container must
47 // support both size() and empty(), which all STL-like containers provide.
48 MATCHER(IsEmpty, negation ? "isn't empty" : "is empty") {
49 if (arg.empty()) {
/gem5/src/gpu-compute/
H A Dgpu_static_inst.cc48 if (disassembly.empty()) {
50 assert(!disassembly.empty());
H A Dglobal_memory_pipeline.cc114 if (!gmIssuedRequests.empty()) {
157 if (!gmReturnedLoads.empty()) {
159 } else if (!gmReturnedStores.empty()) {
163 if (!gmOrderedRespBuffer.empty()) {
188 assert(!gmReturnedLoads.empty());
191 assert(!gmReturnedStores.empty());
H A Dlocal_memory_pipeline.cc61 GPUDynInstPtr m = !lmReturnedRequests.empty() ?
76 if (!lmReturnedRequests.empty() && m->latency.rdy() && accessVrf &&
107 if (!lmIssuedRequests.empty() && lmReturnedRequests.size() < lmQueueSize) {
/gem5/src/sim/
H A Darguments.cc38 while (!data.empty()) {
H A Dfutex_map.hh155 while (!waiterList.empty() && woken_up < count) {
161 if (waiterList.empty())
219 if (waiterList.empty())
247 while (!waiterList1.empty() && woken_up < count) {
256 while (!waiterList1.empty() && requeued < count2) {
273 if (waiterList1.empty())
/gem5/util/tlm/src/
H A Dmaster_transactor.cc49 if (portName.empty()) {
H A Dslave_transactor.cc49 if (portName.empty()) {
H A Dsc_mm.cc62 if (freePayloads.empty()) {
/gem5/src/systemc/core/
H A Dscheduler.hh94 * empty, and then immediately runs the update phase. Since these are all part
100 * of runnable processes will be empty. There may, however, have been some
284 if (events.empty()) {
311 return !readyListMethods.empty() || !readyListThreads.empty() ||
312 !updateList.empty() || !deltas.empty();
319 return !timeSlots.empty();
437 return (readyListMethods.empty() && readyListThreads.empty()
[all...]
/gem5/src/cpu/testers/traffic_gen/
H A Dstream_gen.hh57 // A non empty vector of StreamIDs must be provided.
58 // SubstreamIDs are not mandatory hence having an empty
61 fatal_if(streamIds.empty(),
86 * parameter to the TrafficGenerator is a non empty list.
90 bool ssidValid() const { return !substreamIds.empty(); }
/gem5/src/base/loader/
H A Dsymtab.cc57 if (symbol.empty())
82 if (buffer.empty())
91 if (address.empty())
96 if (symbol.empty())
/gem5/src/arch/riscv/
H A Dlocked_mem.hh78 if (locked_addr_stack.empty())
111 DPRINTF(LLSC, "[cid:%d]: locked_addrs empty? %s.\n", req->contextId(),
112 locked_addr_stack.empty() ? "yes" : "no");
113 if (!locked_addr_stack.empty()) {
119 if (locked_addr_stack.empty()
/gem5/src/mem/cache/prefetch/
H A Dslim_ampm.cc45 if (addresses.empty()) {
/gem5/src/systemc/tlm_bridge/
H A Dsc_mm.cc55 if (freePayloads.empty()) {
/gem5/src/systemc/tests/systemc/compliance_1666/test207/
H A Dtest207.cpp12 while (!s.empty())
16 sc_assert(!s.empty());
21 } while (!s.empty() && (s[0] != '_'));
/gem5/src/systemc/tests/include/
H A DSimpleATTarget1.h100 if (mEndRequestQueue.empty()) {
125 assert(!mEndRequestQueue.empty());
139 if (!mEndRequestQueue.empty()) {
143 if (mResponseQueue.empty()) {
153 assert(!mResponseQueue.empty());
187 assert(!mResponseQueue.empty());
191 if (!mResponseQueue.empty()) {
/gem5/src/base/
H A Dtrace.cc107 if (!name.empty() && ignore.match(name))
147 if (!name.empty() && ignore.match(name))
153 if (!name.empty())
H A Dmatch.hh55 return tokens.empty() ? false : domatch(name);
H A Dcallback.hh129 bool empty() const { return callbacks.empty(); } function in class:CallbackQueue
/gem5/src/cpu/pred/
H A Dras.hh77 bool empty() { return usedEntries == 0; } function in class:ReturnAddrStack
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_name_gen.cpp53 for( ; ! it.empty(); it ++ ) {
/gem5/src/mem/cache/
H A Dmshr_queue.hh141 * Returns true if the pending list is not empty.
146 return !readyList.empty();
/gem5/src/mem/ruby/structures/
H A DTimerTable.cc44 if (m_map.empty())
102 if (m_map.empty()) {
/gem5/src/base/stats/
H A Dhdf5.cc46 * Check if all strings in a container are empty.
52 if (!s.empty())
124 assert(!path.empty());
168 if (!info.subnames.empty() && !emptyStrings(info.subnames))
171 if (!info.y_subnames.empty() && !emptyStrings(info.y_subnames))
174 if (!info.subdescs.empty() && !emptyStrings(info.subdescs))
208 if (!info.subnames.empty() && !emptyStrings(info.subnames))
211 if (!info.subdescs.empty() && !emptyStrings(info.subdescs))
256 if (enableDescriptions && !info.desc.empty()) {

Completed in 12 milliseconds

1234567891011