Searched refs:key (Results 51 - 75 of 76) sorted by relevance

1234

/gem5/ext/pybind11/tools/
H A Dmkdoc.py59 sorted(CPP_OPERATORS.items(), key=lambda t: -len(t[0])))
267 ), default=None, key=clang_folder_version)
326 for name, _, comment in list(sorted(comments, key=lambda x: (x[0], x[1]))):
/gem5/src/base/vnc/
H A Dvncserver.cc579 kem.key = betoh(kem.key);
580 DPRINTF(VNC, " -- received key code %d (%s)\n", kem.key, kem.down_flag ?
584 keyboard->keyPress(kem.key, kem.down_flag);
/gem5/util/stats/
H A Dprofile.py212 items = [ (val,key) for key,val in self.iteritems() ]
214 for val,key in items:
221 print >>output, '%-30s %8s' % (key, '%3.2f%%' % percent)
H A Ddb.py435 def __getitem__(self, key):
436 return self.stattop[key]
/gem5/ext/dsent/tech/
H A DTechModel.cc66 const String& key = it.first; local
67 if(key.compare(0, 8, "INCLUDE_") == 0)
/gem5/src/python/m5/util/
H A Ddot_writer.py338 for key in dvfs_domains:
339 cluster.add_subgraph(dvfs_domains[key])
/gem5/src/arch/arm/insts/
H A Dcrypto.cc214 uint8_t *key)
217 output[i] = input[i] ^ key[i];
257 uint8_t *key)
261 aesAddRoundKey(&temp1[0], input, key);
268 uint8_t *key)
272 aesAddRoundKey(&temp1[0], input, key);
213 aesAddRoundKey(uint8_t *output, uint8_t *input, uint8_t *key) argument
256 aesEncrypt(uint8_t *output, uint8_t *input, uint8_t *key) argument
267 aesDecrypt(uint8_t *output, uint8_t *input, uint8_t *key) argument
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc189 void UnitTestRecordProperty(const char* key, const std::string& value) { argument
190 unit_test_.RecordProperty(key, value);
1068 TestProperty property("key", "1");
1069 EXPECT_STREQ("key", property.key());
1075 TestProperty property("key", "1");
1318 const TestProperty property("key", "value");
1319 EXPECT_STREQ("key", property.key());
1324 TestProperty property("key", "value_
1943 ExpectNonFatalFailureRecordingPropertyWithReservedKey( const TestResult& test_result, const char* key) argument
1950 ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTest( const char* key) argument
1958 ExpectNonFatalFailureRecordingPropertyWithReservedKeyForCurrentTestCase( const char* key) argument
1966 ExpectNonFatalFailureRecordingPropertyWithReservedKeyOutsideOfTestCase( const char* key) argument
[all...]
H A Dgtest-unittest-api_test.cc137 RecordProperty("key", "value");
309 EXPECT_STREQ("key", property.key());
/gem5/ext/googletest/googletest/src/
H A Dgtest-internal-inl.h344 // A predicate that checks the key of a TestProperty against a known key.
352 explicit TestPropertyKeyIs(const std::string& key) : key_(key) {} argument
356 return test_property.key() == key_;
713 // result already contains a property with the same key, the value will be
H A Dgtest.cc2054 // Adds a test property to the list. If a property with the same key as the
2056 // replaces the old value for that key.
2065 internal::TestPropertyKeyIs(test_property.key()));
2145 ADD_FAILURE() << "Reserved key used in RecordProperty(): " << property_name
2153 // Adds a failure if the key is a reserved attribute of the element named
2157 return ValidateTestPropertyName(test_property.key(),
2236 // Allows user supplied key value pairs to be recorded for later output.
2237 void Test::RecordProperty(const std::string& key, const std::string& value) { argument
2238 UnitTest::GetInstance()->RecordProperty(key, value);
2241 // Allows user supplied key valu
2242 RecordProperty(const std::string& key, int value) argument
4175 RecordProperty(const std::string& key, const std::string& value) argument
[all...]
/gem5/ext/pybind11/include/pybind11/
H A Dstl.h131 auto key = reinterpret_steal<object>(key_conv::cast(forward_like<T>(kv.first), policy_key, parent)); local
133 if (!key || !value)
135 d[key] = value;
H A Dpybind11.h1436 auto key = std::string(pybind11::str(kv.first));
1438 docstring += "\n\n " + key;
1901 calling from a Python thread). Since we use a different key, this ensures
1978 auto key = internals.tstate; local
1979 PYBIND11_TLS_DELETE_VALUE(key);
1987 auto key = detail::get_internals().tstate; local
1988 PYBIND11_TLS_REPLACE_VALUE(key, tstate);
2029 auto key = std::make_pair(type.ptr(), name); local
2034 if (cache.find(key) != cache.end())
2039 cache.insert(key);
[all...]
/gem5/ext/googletest/googlemock/scripts/
H A Dupload.py168 for key, value in self.extra_headers.iteritems():
169 req.add_header(key, value)
514 for (key, value) in fields:
516 lines.append('Content-Disposition: form-data; name="%s"' % key)
519 for (key, filename, value) in files:
522 (key, filename))
/gem5/ext/googletest/googletest/scripts/
H A Dupload.py168 for key, value in self.extra_headers.iteritems():
169 req.add_header(key, value)
514 for (key, value) in fields:
516 lines.append('Content-Disposition: form-data; name="%s"' % key)
519 for (key, filename, value) in files:
522 (key, filename))
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h411 // test case. Only the last value for a given key is remembered. These
422 static void RecordProperty(const std::string& key, const std::string& value);
423 static void RecordProperty(const std::string& key, int value);
483 // output as a key/value string pair.
495 // Gets the user supplied key.
496 const char* key() const { function in class:testing::TestProperty
511 // The key supplied by the user.
588 // key names). If a property is already recorded for the same key, the
590 // key
[all...]
/gem5/tests/
H A Dtests.py340 for key, (impl, cmd_parser) in _commands.items():
/gem5/ext/testlib/
H A Dloader.py258 orphan_tests = sorted(orphan_tests, key=new_tests.index)
/gem5/src/python/m5/
H A Dsimulate.py98 for obj in sorted(root.descendants(), key=lambda o: o.path()):
/gem5/configs/example/arm/
H A Ddevices.py280 key=lambda c: c.clk_domain.clock[0])
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dast.py1401 key = tokens[i].name
1403 if keywords.IsKeyword(key) or key == ',':
1415 # Re-adjust the key (variable) and type_name (Type).
1416 key = tokens[i-1].name
1419 result[key] = (type_name, default)
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h67 // - Use #if to key off these macros. Don't use #ifdef or "#if
2042 // Releases resources associated with the key. This will *not*
2067 pthread_key_t key; local
2071 pthread_key_create(&key, &DeleteThreadLocalValue));
2072 return key;
2120 // A key pthreads uses for looking up per-thread values.
/gem5/util/minorview/
H A Dmodel.py621 key = id.lineSeqNum
622 return self.lines.get(key, None)
983 if typ == 'key':
1022 elif typ == 'key':
/gem5/src/mem/slicc/symbols/
H A DStateMachine.py1333 for key,val in res.iteritems():
1337 ''' % (key.code, val)
/gem5/ext/ply/ply/
H A Dcpp.py409 macro.patch.sort(key=lambda x: x[2],reverse=True)

Completed in 111 milliseconds

1234