Searched refs:sb (Results 1 - 14 of 14) sorted by relevance

/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64ui/
H A Dsb.S4 # sb.S
7 # Test sb instruction.
20 TEST_ST_OP( 2, lb, sb, 0xffffffffffffffaa, 0, tdat );
21 TEST_ST_OP( 3, lb, sb, 0x0000000000000000, 1, tdat );
22 TEST_ST_OP( 4, lh, sb, 0xffffffffffffefa0, 2, tdat );
23 TEST_ST_OP( 5, lb, sb, 0x000000000000000a, 3, tdat );
27 TEST_ST_OP( 6, lb, sb, 0xffffffffffffffaa, -3, tdat8 );
28 TEST_ST_OP( 7, lb, sb, 0x0000000000000000, -2, tdat8 );
29 TEST_ST_OP( 8, lb, sb, 0xffffffffffffffa0, -1, tdat8 );
30 TEST_ST_OP( 9, lb, sb,
[all...]
/gem5/ext/libelf/
H A Dlibelf_xlate.c49 uintptr_t sb, se, db, de; local
110 sb = (uintptr_t) src->d_buf;
111 se = sb + src->d_size;
116 * Check for overlapping buffers. Note that db == sb is
119 if (db != sb && de > sb && se > db) {
124 if ((direction == ELF_TOMEMORY ? db : sb) %
133 if (db == sb && encoding == LIBELF_PRIVATE(byteorder) &&
H A Delf_begin.c44 struct stat sb; local
52 if (fstat(fd, &sb) < 0) {
58 if ((m = mmap(NULL, (size_t) sb.st_size, PROT_READ, MAP_PRIVATE, fd,
64 if ((e = elf_memory(m, (size_t) sb.st_size)) == NULL) {
65 (void) munmap(m, (size_t) sb.st_size);
/gem5/src/mem/cache/prefetch/
H A Dsbooe.cc73 for (Sandbox &sb : sandboxes) {
75 for (const SandboxEntry &entry: sb.entries) {
77 sb.sandboxScore++;
79 sb.lateScore++;
84 sb.insert(access_line, curTick() + averageAccessLatency);
86 if (bestSandbox == NULL || sb.score() > bestSandbox->score()) {
87 bestSandbox = &sb;
/gem5/ext/iostream3/
H A Dzfstream.cc375 : std::istream(NULL), sb()
376 { this->init(&sb); }
381 : std::istream(NULL), sb()
383 this->init(&sb);
390 : std::istream(NULL), sb()
392 this->init(&sb);
401 if (!sb.open(name, mode | std::ios_base::in))
412 if (!sb.attach(fd, mode | std::ios_base::in))
422 if (!sb.close())
430 : std::ostream(NULL), sb()
[all...]
H A Dzfstream.h263 { return const_cast<gzfilebuf*>(&sb); }
270 is_open() { return sb.is_open(); }
312 gzfilebuf sb; member in class:gzifstream
352 { return const_cast<gzfilebuf*>(&sb); }
359 is_open() { return sb.is_open(); }
401 gzfilebuf sb; member in class:gzofstream
/gem5/src/systemc/tests/systemc/datatypes/int/sc_int/mixed/
H A Dtest_int.cpp87 sc_int<8> sb; local
89 sb = ( a.range(7,4), a.range(3,0) );
91 cout << "sb = " << sb << endl;
/gem5/src/systemc/tests/systemc/datatypes/int/sc_int_base/mixed/
H A Dtest_int.cpp91 sc_int_base sb(8);
93 sb = ( a.range(7,4), a.range(3,0) );
95 cout << "sb = " << sb << endl;
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest-message.h232 inline std::ostream& operator <<(std::ostream& os, const Message& sb) { argument
233 return os << sb.GetString();
/gem5/ext/dsent/libutil/
H A DString.cc345 std::streambuf* sb = is_.rdbuf(); local
349 int c = sb->sbumpc();
353 c = sb->sgetc();
355 sb->sbumpc();
/gem5/src/base/loader/
H A Dcoff_sym.h260 #define IssFSb(sb) (0x80000000 | ((coff_ulong)(sb)))
H A Delf_object.cc249 struct stat sb; local
250 M5_VAR_USED int check_i = fstat(fd, &sb);
253 void *mm = mmap(nullptr, sb.st_size, PROT_READ,
259 ObjectFile *obj = tryFile(interp_path, sb.st_size,
/gem5/src/arch/arm/
H A Dmiscregs_types.hh108 Bitfield<39, 36> sb; member in namespace:ArmISA
/gem5/tests/test-progs/asmtest/src/riscv/env/
H A Dencoding.h1024 DECLARE_INSN(sb, MATCH_SB, MASK_SB)

Completed in 35 milliseconds