Home
last modified time | relevance | path

Searched refs:dfunc (Results 1 – 3 of 3) sorted by relevance

/external/honggfuzz/
Dhonggfuzz.h327 static void __attribute__((unused)) __clang_cleanup_func(void (^*dfunc)(void)) { (*dfunc)(); }
/external/python/cpython3/Doc/library/
Ddifflib.rst319 .. function:: diff_bytes(dfunc, a, b, fromfile=b'', tofile=b'', fromfiledate=b'', tofiledate=b'', n…
321 Compare *a* and *b* (lists of bytes objects) using *dfunc*; yield a
322 sequence of delta lines (also bytes) in the format returned by *dfunc*.
323 *dfunc* must be a callable, typically either :func:`unified_diff` or
328 converting all inputs (except *n*) to str, and calling ``dfunc(a, b,
330 *dfunc* is then converted back to bytes, so the delta lines that you
/external/python/cpython3/Lib/
Ddifflib.py1314 def diff_bytes(dfunc, a, b, fromfile=b'', tofile=b'', argument
1340 lines = dfunc(a, b, fromfile, tofile, fromfiledate, tofiledate, n, lineterm)