Searched refs:len (Results 151 - 175 of 364) sorted by relevance

1234567891011>>

/gem5/src/python/m5/util/
H A Dmultidict.py71 return len(self.local) + len(self.parent)
171 print(len(test2))
/gem5/util/
H A Dhgstyle.py73 if len(pctx) in (1, 2):
75 if len(pctx) == 2:
81 mod_regions.append(0, len(lines))
H A Ddecode_packet_trace.py54 if len(sys.argv) != 3:
H A Ddecode_inst_trace.py74 if len(sys.argv) != 3:
H A Dencode_packet_trace.py84 if len(sys.argv) != 3:
/gem5/configs/topologies/
H A DMesh_XY.py69 cntrls_per_router, remainder = divmod(len(nodes), num_routers)
86 for node_index in range(len(nodes)):
87 if node_index < (len(nodes) - remainder):
H A DCluster.py130 return len([i for i in self.nodes if type(i) != Cluster]) + \
131 sum([len(i) for i in self.nodes if type(i) == Cluster])
/gem5/src/gpu-compute/
H A Dbrig_object.cc226 int len = str.length(); local
228 if (str[len - 1] >= 'a' && str[len - 1] <= 'z') {
405 BrigObject::tryFile(const std::string &fname, int len, uint8_t *fileData) argument
412 return new BrigObject(fname, len, fileData);
415 BrigObject::BrigObject(const std::string &fname, int len, uint8_t *fileData) argument
458 "name len: %d\n", code_hdr->byteCount, code_hdr->headerByteCount,
/gem5/ext/googletest/googletest/test/
H A Dgtest_filter_unittest.py248 self.assertEqual(len(set_var), len(full_partition))
371 self.RunAndVerifyWithSharding(None, len(ACTIVE_TESTS) - 1, ACTIVE_TESTS)
372 self.RunAndVerifyWithSharding(None, len(ACTIVE_TESTS), ACTIVE_TESTS)
373 self.RunAndVerifyWithSharding(None, len(ACTIVE_TESTS) + 1, ACTIVE_TESTS)
400 self.RunAndVerifyWithSharding('*.*', len(ACTIVE_TESTS) - 3, ACTIVE_TESTS)
/gem5/src/arch/arm/linux/
H A Datag.hh152 int len = s.length() + 1; local
154 // 2 + ceiling(len/4)
155 _size = 2 + ((len + 3) >> 2);
/gem5/ext/systemc/src/sysc/datatypes/bit/
H A Dsc_proxy.h869 int len = x.length(); local
871 int min_len = sc_min( len, s_len );
880 for( ; i < len; ++ i ) {
893 int len = x.length(); local
894 for( int i = 0; i < len; ++ i ) {
907 int len = x.length(); local
908 for( int i = 0; i < len; ++ i ) {
1269 int len = x.length(); local
1270 int half_len = len / 2;
1271 for( int i = 0, j = len
1294 int len = x.length(); local
1308 int len = x.length(); local
1322 int len = x.length(); local
1391 int len = x.length(); local
1458 int len = x.length(); local
1477 int len = x.length(); local
1507 int len = x.length(); local
[all...]
/gem5/configs/example/
H A Druby_random_test.py118 assert(options.num_cpus == len(system.ruby._cpu_ports))
120 tester.num_cpus = len(system.ruby._cpu_ports)
/gem5/src/arch/alpha/
H A Dremote_gdb.cc155 * Determine if the mapping at va..(va+len) is valid.
158 RemoteGDB::acc(Addr va, size_t len) argument
166 last_va = RoundPage(va + len);
/gem5/configs/learning_gem5/part1/
H A Dtwo_level.py77 if len(args) == 1:
79 elif len(args) > 1:
/gem5/util/stats/
H A Ddb.py35 last = min(len(v1), len(v2)) - 1
41 if len(v1) == len(v2):
44 return cmp(len(v1), len(v2))
63 if len(row) != 5:
157 from info import ProxyError, scalar, vector, value, values, total, len
186 while len(path) > 1:
364 if self.runs != None and len(sel
[all...]
/gem5/src/base/vnc/
H A Dvncserver.cc284 VncServer::read(uint8_t *buf, size_t len) argument
291 ret = ::read(dataFd, buf, len);
295 if (ret != len) {
305 VncServer::read1(uint8_t *buf, size_t len) argument
307 return read(buf + 1, len - 1);
320 VncServer::write(const uint8_t *buf, size_t len) argument
325 ssize_t ret = atomic_write(dataFd, buf, len);
327 if (ret != len) {
373 uint32_t len = strlen(error_msg); local
374 if (!write(&len))
[all...]
/gem5/ext/mcpat/cacti/
H A Drouter.h76 double Cw3(double len);
/gem5/ext/mcpat/
H A Dinterconnect.h96 double base_h, int data_w, double len,
/gem5/ext/ply/example/BASIC/
H A Dbasiclog.py25 if len(sys.argv) == 2:
/gem5/util/plot_dram/
H A DPlotPowerStates.py155 if len(line.strip()) == 0:
215 ind = np.arange(len(States))
238 fig, ax = plt.subplots(1, len(bankUtilValues), sharey=True)
245 N = len(seqBytesValues)
/gem5/src/arch/sparc/
H A Dremote_gdb.hh49 bool acc(Addr addr, size_t len);
/gem5/tests/configs/
H A Dsimple-timing-ruby.py83 assert(len(system.ruby._cpu_ports) == 1)
H A Dsimple-timing-mp-ruby.py79 assert(options.num_cpus == len(system.ruby._cpu_ports))
/gem5/src/cpu/testers/traffic_gen/
H A DBaseTrafficGen.py115 if hasattr(self, '_cached_ports') and (len(self._cached_ports) > 0):
/gem5/src/arch/arm/
H A Dremote_gdb.hh67 bool acc(Addr addr, size_t len);

Completed in 37 milliseconds

1234567891011>>