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

/gem5/ext/fputils/tests/
H A Dtest_helper.c64 va_list ap; local
65 va_start(ap, fmt);
68 vprintf(fmt, ap);
71 va_end(ap);
79 va_list ap; local
80 va_start(ap, fmt);
83 vprintf(fmt, ap);
86 va_end(ap);
92 const char *fmt_why, va_list ap)
102 vprintf(fmt_why, ap);
90 test_vstatus(const char *status, const char *test, const char *directive, const char *fmt_why, va_list ap) argument
114 va_list ap; local
138 va_list ap; local
149 va_list ap; local
[all...]
/gem5/ext/nomali/tests/
H A Dtest_helpers.c54 va_list ap; local
55 va_start(ap, fmt);
58 vprintf(fmt, ap);
61 va_end(ap);
69 va_list ap; local
70 va_start(ap, fmt);
73 vprintf(fmt, ap);
76 va_end(ap);
82 const char *fmt_why, va_list ap)
92 vprintf(fmt_why, ap);
80 test_vstatus(const char *status, const char *test, const char *directive, const char *fmt_why, va_list ap) argument
104 va_list ap; local
128 va_list ap; local
139 va_list ap; local
[all...]
/gem5/ext/systemc/src/sysc/qt/md/
H A Daxp.c42 va_list ap;
43 va_start (ap, a2);
44 qt_vargs (... &ap ...);
94 va_list ap; local
100 ap = *(va_list *)vargs;
104 tmove = 6 - ap._offset/sizeof(qt_word_t);
109 sp[i+6] = ((qt_word_t *)(ap._a0 + ap._offset))[i];
111 sp[i] = ((qt_word_t *)(ap._a0 + ap
[all...]
H A Dm88k.c73 va_list ap; local
80 ap = *(va_list *)vargs;
84 reg = (ap.__va_arg < 8)
85 ? &ap.__va_reg[ap.__va_arg]
87 stk = &ap.__va_stk[8];
88 n = ap.__va_arg;
H A Dvax_b.s26 movl 4(ap),r0
42 movl 4(ap),r0
57 movl 4(ap),r0
77 movl 4(ap),r0
/gem5/system/alpha/console/
H A Dprintf.c175 FormatItem(const char *f, va_list *ap) argument
200 char a = (char)va_arg(*ap, int);
211 const char *a = va_arg(*ap, const char *);
237 double a = va_arg(*ap, double);
255 long a = va_arg(*ap, long);
264 va_list ap; local
266 va_start(ap, f);
270 f = FormatItem(f + 1, &ap);
280 va_end(ap); /* clean up */
287 va_list ap; local
[all...]
/gem5/ext/systemc/src/sysc/tracing/
H A Dsc_trace.cpp70 va_list ap; local
71 va_start(ap, format);
72 (void) vsprintf(buffer, format, ap);
73 va_end(ap);
/gem5/src/arch/arm/
H A Dpagetable.hh118 uint8_t ap; // Access permissions bits member in struct:ArmISA::TlbEntry
154 innerAttrs(0), outerAttrs(0), ap(read_only ? 0x3 : 0), hap(0x3),
169 vmid(0), N(0), innerAttrs(0), outerAttrs(0), ap(0), hap(0x3),
289 return csprintf("%#x, asn %d vmn %d hyp %d ppn %#x size: %#x ap:%d "
291 isHyp, pfn << N, size, ap, ns, nstid, global, el);
319 SERIALIZE_SCALAR(ap); variable
349 UNSERIALIZE_SCALAR(ap); variable
H A Dtlb.cc181 "ppn %#x size: %#x pa: %#x ap:%d ns:%d nstid:%d g:%d asid: %d "
185 retval ? retval->pAddr(va) : 0, retval ? retval->ap : 0,
199 " ap:%#x domain:%#x ns:%d nstid:%d isHyp:%d\n", entry.pfn,
202 entry.ap, static_cast<uint8_t>(entry.domain), entry.ns, entry.nstid,
207 "size: %#x ap:%d ns:%d nstid:%d g:%d isHyp:%d el: %d\n",
210 table[size-1].size, table[size-1].ap, table[size-1].ns,
690 // The 'ap' variable is AP[2:0] or {AP[2,1],1b'0}, i.e. always three bits
691 uint8_t ap = te->longDescFormat ? te->ap << 1 : te->ap; local
849 uint8_t ap = 0x3 & (te->ap); // 2-bit access protection field local
1016 checkPAN(ThreadContext *tc, uint8_t ap, const RequestPtr &req, Mode mode) argument
[all...]
H A Dtable_walker.hh79 virtual uint8_t ap() const = 0;
181 uint8_t ap() const function in class:ArmISA::TableWalker::L1Descriptor
318 uint8_t ap() const function in class:ArmISA::TableWalker::L2Descriptor
583 uint8_t ap() const function
607 static uint8_t ap(bool rw, bool user) function
H A Dtable_walker.cc1496 if (currState->sctlr.afe && bits(currState->l1Desc.ap(), 0) == 0) {
1593 "xn: %d, ap: %d, af: %d, type: %d\n",
1598 currState->longDesc.ap(),
1771 if (currState->sctlr.afe && bits(currState->l2Desc.ap(), 0) == 0) {
1775 DPRINTF(TLB, "Generating access fault at L2, afe: %d, ap: %d\n",
1776 currState->sctlr.afe, currState->l2Desc.ap());
2088 te.hap = lDescriptor.ap();
2090 te.ap = ((!currState->rwTable || descriptor.ap() >> 1) << 1) |
2091 (currState->userTable && (descriptor.ap()
[all...]
H A Dtlb.hh247 bool checkPAN(ThreadContext *tc, uint8_t ap, const RequestPtr &req,
/gem5/ext/systemc/src/sysc/qt/
H A Dmeas.c523 va_list ap; local
527 va_start (ap, nbytes);
528 t->qt = QT_VARGS (t->top, nbytes, ap, t, start, f, cleanup);
529 va_end (ap);
683 va_list ap;
685 va_start (ap, nbytes);
686 new->qt = QT_VARGS (new->top, nbytes, ap, next, test10_startup,
688 va_end (ap);
682 va_list ap; local
/gem5/ext/pybind11/include/pybind11/
H A Dcast.h2010 void process(list &args_list, detail::args_proxy ap) {
2011 for (const auto &a : ap)

Completed in 38 milliseconds