Home
last modified time | relevance | path

Searched refs:function (Results 1 – 8 of 8) sorted by relevance

/littlefs-latest/scripts/
Ddata.py119 def __new__(cls, file='', function='', size=0): argument
120 return super().__new__(cls, file, function,
124 return DataResult(self.file, self.function,
276 if r.function in defs:
277 file = defs[r.function]
283 r.function, False).ratio())
Dcode.py119 def __new__(cls, file='', function='', size=0): argument
120 return super().__new__(cls, file, function,
124 return CodeResult(self.file, self.function,
276 if r.function in defs:
277 file = defs[r.function]
283 r.function, False).ratio())
Dstack.py109 def __new__(cls, file='', function='', argument
111 return super().__new__(cls, file, function,
116 return StackResult(self.file, self.function,
180 function, file, size, type = m_.groups()
186 function, type, size))
189 file, function, int(size), targets)
Dcov.py189 def __new__(cls, file='', function='', line=0, argument
191 return super().__new__(cls, file, function, int(Int(line)),
195 return CovResult(self.file, self.function, self.line,
538 func = r.function
Dperf.py132 def __new__(cls, file='', function='', line=0, argument
135 return super().__new__(cls, file, function, int(Int(line)),
140 return PerfResult(self.file, self.function, self.line,
968 func = r.function
Dperfbd.py120 def __new__(cls, file='', function='', line=0, argument
123 return super().__new__(cls, file, function, int(Int(line)),
128 return PerfBdResult(self.file, self.function, self.line,
953 func = r.function
/littlefs-latest/
DREADME.md125 In the configuration struct, the `prog` and `erase` function provided by the
131 If your storage caches writes, make sure that the provided `sync` function
134 function does not perform caching, and therefore each `read` or `write` call
135 hits the memory, the `sync` function can simply return 0.
DDESIGN.md746 assumption from earlier. During iteration, the popcount function seems to
755 Unfortunately, the popcount function is non-injective, so we can't solve this
757 is greater than ![n] with error bounded by the range of the popcount function.