Searched refs:success (Results 1 - 25 of 37) sorted by relevance

12

/gem5/ext/dsent/model/optical/
H A DLaserSource.cc106 bool success = optical_graph->performPowerOpt(getLaser("Laser"), laser_wavelengths, max_detectors, opt_util); local
107 if (!success)
H A DGatedLaserSource.cc108 bool success = optical_graph->performPowerOpt(getLaser("Laser"), laser_wavelengths, max_detectors, opt_util); local
109 if (!success)
H A DRingModulator.cc137 bool success = designModulator(IL_dB, ER_dB); local
138 getGenProperties()->set("Success", success);
141 if (!success) getEventResult("Modulate")->setValue(1e99);
163 bool success = getGenProperties()->get("Success"); local
166 if (success)
379 bool success = getGenProperties()->get("Success"); local
380 if (success)
H A DThrottledLaserSource.cc120 bool success = optical_graph->performPowerOpt(getLaser("Laser"), laser_wavelengths, max_detectors, opt_util); local
121 if (!success)
/gem5/ext/googletest/googletest/test/
H A Dgtest-test-part_test.cc77 const TestPartResult success(TestPartResult::kSuccess,
81 EXPECT_TRUE(success.passed());
82 EXPECT_FALSE(success.failed());
83 EXPECT_FALSE(success.nonfatally_failed());
84 EXPECT_FALSE(success.fatally_failed());
H A Dgtest-options_test.cc109 const bool success = local
117 const bool success = local
123 if (!success)
/gem5/ext/dsent/model/optical_graph/
H A DOpticalGraph.cc98 bool success = data_path.modulator->setModulatorSpec(IL, ER); local
100 if (success)
117 bool success = data_path.modulator->setModulatorSpec(best_IL, best_ER); local
119 possible = possible && success;
/gem5/src/mem/
H A Dhmc_controller.cc88 bool success = masterPorts[master_port_id]->sendTimingReq(pkt); local
90 if (!success) {
H A Ddramsim2_wrapper.cc174 bool success M5_VAR_USED = dramsim->addTransaction(is_write, addr);
175 assert(success);
H A Dcoherent_xbar.cc247 bool success = true; local
286 success = masterPorts[master_port_id]->sendTimingReq(pkt);
299 // Let the snoop filter know about the success of the send operation
300 snoopFilter->finishRequest(!success, addr, pkt->isSecure());
304 if (!success) {
377 if (success &&
417 assert(success);
436 return success;
637 bool success M5_VAR_USED =
641 assert(success);
[all...]
H A Ddramsim2.cc111 bool success = port.sendTimingResp(responseQueue.front()); local
112 if (success) {
H A Dnoncoherent_xbar.cc147 bool success = masterPorts[master_port_id]->sendTimingReq(pkt); local
149 if (!success) {
/gem5/tests/testing/
H A Dresults.py90 def success(self): member in class:UnitResult
97 return self.success() or self.skipped()
116 def success(self): member in class:TestResult
120 return all([ r.success() for r in self.run_results ])
123 return all([ r.success() for r in self.verify_results ])
/gem5/src/mem/cache/
H A Dcache_blk.hh407 bool success = false; local
410 while (!success && l != lockList.end()) {
415 success = true;
422 req->setExtraData(success ? 1 : 0);
426 return success;
H A Dnoncoherent_cache.cc86 bool success = BaseCache::access(pkt, blk, lat, writebacks); local
97 return success;
/gem5/src/arch/mips/
H A Dmt.hh176 int success = 0; local
177 for (ThreadID tid = 0; tid < num_threads && success == 0; tid++) {
193 tidTCStatus.a == 0 && success == 0) {
220 success = 1;
227 if (success == 0) {
/gem5/src/mem/ruby/system/
H A DGPUCoalescer.cc415 // The success flag indicates whether the LLSC operation was successful.
419 bool success = true; local
427 success = false;
430 // For successful SC requests, indicate the success to the cpu by
436 // Independent of success, all SC operations must clear the lock
452 return success;
522 bool success = true; local
524 success = handleLlsc(address, request);
532 hitCallback(request, mach, data, success,
597 bool success,
594 hitCallback(GPUCoalescerRequest* srequest, MachineType mach, DataBlock& data, bool success, Cycles initialRequestTime, Cycles forwardRequestTime, Cycles firstResponseTime, bool isRegion) argument
1180 recordMissLatency(GPUCoalescerRequest* srequest, MachineType mach, Cycles initialRequestTime, Cycles forwardRequestTime, Cycles firstResponseTime, bool success, bool isRegion) argument
[all...]
H A DSequencer.cc271 // The success flag indicates whether the LLSC operation was successful.
274 bool success = true;
282 success = false;
285 // For successful SC requests, indicate the success to the cpu by
291 // Independent of success, all SC operations must clear the lock
306 return success;
389 bool success = true; local
391 success = handleLlsc(address, request);
407 hitCallback(request, data, success, mach, externalHit,
H A DGPUCoalescer.hh237 bool success,
247 bool success, bool isRegion);
H A DRubyPort.cc201 // generally it is not safe to assume success here as
203 bool M5_VAR_USED success = local
205 assert(success);
/gem5/src/gpu-compute/
H A Dlds_state.cc297 bool success = cuPort.sendTimingResp(packet); local
299 if (!success) {
H A Dgpu_tlb.cc1063 bool success = tlbLookup(tmp_req, tmp_tc, update_stats); local
1065 if (success) {
1495 bool success = tlb->tlbLookup(pkt->req, tc, update_stats); local
1496 tlbOutcome tlb_outcome = success ? TLB_HIT : TLB_MISS;
1503 if (success) {
1509 if (!success) {
/gem5/src/dev/net/
H A Dethertap.cc179 bool success = sendReal(packet->data, packet->length); local
183 return success;
458 // `tap` is a nonblock fd. Here we try to write until success, and use
/gem5/src/cpu/trace/
H A Dtrace_cpu.cc682 bool success = port.sendTimingReq(pkt); local
685 if (!success) {
1171 bool success = port.sendTimingReq(pkt); local
1172 if (!success) {
1177 return success;
/gem5/src/dev/
H A Ddma_device.cc354 const bool success(tryGet(dst, len));
355 panic_if(!success, "Buffer underrun in DmaReadFifo::get()\n");

Completed in 53 milliseconds

12