Searched refs:depth (Results 1 - 17 of 17) sorted by relevance

/gem5/ext/libfdt/
H A Dfdt.c140 int fdt_next_node(const void *fdt, int offset, int *depth) argument
159 if (depth)
160 (*depth)++;
164 if (depth && ((--(*depth)) < 0))
170 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth))
H A Dfdt_wip.c78 int depth = 0; local
80 while ((offset >= 0) && (depth >= 0))
81 offset = fdt_next_node(fdt, offset, &depth);
H A Dfdt_ro.c114 int depth; local
118 for (depth = 0;
119 (offset >= 0) && (depth >= 0);
120 offset = fdt_next_node(fdt, offset, &depth))
121 if ((depth == 1)
125 if (depth < 0)
339 int offset, depth, namelen; local
347 for (offset = 0, depth = 0;
349 offset = fdt_next_node(fdt, offset, &depth)) {
350 while (pdepth > depth) {
391 int offset, depth; local
[all...]
H A Dlibfdt.h121 int fdt_next_node(const void *fdt, int offset, int *depth);
605 * @supernodedepth: depth of the ancestor to find
609 * at a specific depth from the root (where the root itself has depth
610 * 0, its immediate subnodes depth 1 and so forth). So
613 * nodeoffset has depth D, then:
623 * of depth supernodedepth (>=0), on success
625 * -FDT_ERR_NOTFOUND, supernodedepth was greater than the depth of nodeoffset
635 * fdt_node_depth - find the depth of a given node
639 * fdt_node_depth() finds the depth o
[all...]
/gem5/src/systemc/tests/systemc/kernel/process_control/test06/
H A Dtest06.cpp21 void proc_tree( unsigned depth, unsigned width, bool as_method, bool spawn_only ) argument
25 while( depth && w --> 0 )
32 sc_spawn( sc_bind( &top::proc_tree, this, depth-1, width, !as_method, false )
38 sc_spawn( sc_bind( &top::proc_tree, this, depth-1, width, !as_method, false )
/gem5/src/python/m5/ext/pyfdt/
H A Dpyfdt.py66 def dts_represent(self, depth=0):
68 return INDENT*depth + self.name + ';'
81 def json_represent(self, depth=0):
187 def dts_represent(self, depth=0):
189 return INDENT*depth + self.name + ' = "' + \
211 def json_represent(self, depth=0):
271 def dts_represent(self, depth=0):
273 return INDENT*depth + self.name + ' = <' + \
288 def json_represent(self, depth=0):
344 def dts_represent(self, depth
[all...]
/gem5/src/mem/
H A Drequest.hh305 depth = 0;
406 accessDelta(0), depth(0)
415 accessDelta(0), depth(0)
432 accessDelta(0), depth(0)
442 accessDelta(0), depth(0)
453 accessDelta(0), depth(0)
465 accessDelta(0), depth(0)
490 accessDelta(other.accessDelta), depth(other.depth)
543 depth
621 mutable int depth; variable
[all...]
/gem5/ext/ply/example/GardenSnake/
H A DGardenSnake.py228 depth = 0
241 # only track the depth here. Don't indent/dedent
244 assert depth == 0
245 depth = len(token.value)
251 depth = 0
264 # The current depth must be larger than the previous level
265 if not (depth > levels[-1]):
268 levels.append(depth)
273 if depth == levels[-1]:
276 elif depth > level
[all...]
/gem5/src/cpu/minor/
H A Dbuffers.hh307 unsigned depth) :
309 (name, data_name, depth, 0, -1, -depth),
311 popWire(this->getWire(-depth)),
315 assert(depth > 0);
319 for (unsigned i = 0; i <= depth; i++)
305 SelfStallingPipeline(const std::string &name, const std::string &data_name, unsigned depth) argument
/gem5/src/cpu/pred/
H A Dmultiperspective_perceptron.hh636 int depth = p1; variable
644 for (int i = 0; i < depth; i += 1) {
651 for (int i = 0; i < depth; i += 1) {
699 int depth = p1; variable
707 for (int i = 0; i < depth; i += 1) {
714 int bm = (depth / mpp.blockSize) * mpp.blockSize;
721 for (int i = bm; i < depth; i += 1) {
768 int depth = p2; variable
772 for (int i=0; i<depth; i += 1) {
794 int depth variable
867 int depth = p2; variable
899 int depth = p2; variable
[all...]
/gem5/src/base/
H A Dpixel.cc58 depth(rw + gw + bw),
H A Dpixel.hh187 unsigned depth; member in class:PixelConverter
/gem5/src/base/vnc/
H A Dvncinput.hh104 uint8_t depth; member in struct:VncInput::PixelFormat
H A Dvncserver.cc135 pixelFormat.depth = pixelConverter.depth;
464 msg.px.depth = htobe(pixelFormat.depth);
492 DPRINTF(VNC, " -- bpp = %d; depth = %d; be = %d\n", pfm.px.bpp,
493 pfm.px.depth, pfm.px.bigendian);
501 betoh(pfm.px.depth) != pixelFormat.depth ||
/gem5/src/python/m5/util/
H A Ddot_writer.py248 # colour based on the depth such that the deeper levels in the
251 # start out with a depth of zero
252 depth = 0
256 depth = depth + 1
259 # slightly arbitrary, but assume that the depth is less than
261 r, g, b = map(lambda x: x * max(1 - depth / 7.0, 0.3), node_colour)
/gem5/src/python/m5/
H A DSimObject.py814 depth = 0
817 depth = depth + 1
818 if depth > 0 and not \
825 depth = depth - 1
826 elif c == ',' and depth == 0:
/gem5/src/arch/hsail/
H A DBrig_new.hpp442 //.depth={/DEPTH$/?"true":"false"}
1516 BrigUInt64 depth; //.acc=subItem<UInt64> //.wtype=UInt64 member in struct:BrigOperandConstantImage

Completed in 49 milliseconds