Home
last modified time | relevance | path

Searched refs:write (Results 1 – 14 of 14) sorted by relevance

/lib/zlib_inflate/
Dinffast.c80 unsigned write; /* window write index */ in inflate_fast() local
107 write = state->write; in inflate_fast()
188 if (write == 0) { /* very common case */ in inflate_fast()
198 else if (write < op) { /* wrap around window */ in inflate_fast()
199 from += wsize + write - op; in inflate_fast()
200 op -= write; in inflate_fast()
207 if (write < len) { /* some from start of window */ in inflate_fast()
208 op = write; in inflate_fast()
218 from += write - op; in inflate_fast()
Dinflate.c52 state->write = 0; in zlib_inflateReset()
131 state->write = 0; in zlib_updatewindow()
135 dist = state->wsize - state->write; in zlib_updatewindow()
137 memcpy(state->window + state->write, strm->next_out - copy, dist); in zlib_updatewindow()
141 state->write = copy; in zlib_updatewindow()
145 state->write += dist; in zlib_updatewindow()
146 if (state->write == state->wsize) state->write = 0; in zlib_updatewindow()
678 if (copy > state->write) { in zlib_inflate()
679 copy -= state->write; in zlib_inflate()
683 from = state->window + (state->write - copy); in zlib_inflate()
Dinflate.h88 unsigned write; /* window write index */ member
/lib/
Dlogic_iomem.c241 area->ops->write(area->priv, \
272 area->ops->write(area->priv, start + offs, 1, value); in memset_io()
319 area->ops->write(area->priv, start + offs, 1, buf[offs]); in memcpy_toio()
DKconfig.kcsan34 …def_bool (CC_IS_CLANG && $(cc-option,-fsanitize=thread -mllvm -tsan-compound-read-before-write=1))…
35 (CC_IS_GCC && $(cc-option,-fsanitize=thread --param tsan-compound-read-before-write=1))
37 The compiler instruments plain compound read-write operations
211 If enabled and a conflicting write is observed via a watchpoint, but
Dfortify_kunit.c28 void fortify_add_kunit_error(int write);
29 #define fortify_panic(func, write, avail, size, retfail) do { \ argument
30 FORTIFY_REPORT_KUNIT(FORTIFY_REASON(func, write), avail, size); \
31 fortify_add_kunit_error(write); \
65 void fortify_add_kunit_error(int write) in fortify_add_kunit_error() argument
75 write ? "fortify_write_overflows" in fortify_add_kunit_error()
Dstring_helpers.c1028 const bool write = FORTIFY_REASON_DIR(reason); in __fortify_report() local
1033 name, size, str_read_write(!write), avail); in __fortify_report()
DKconfig121 bool "Register read/write tracing"
124 Create tracepoints for MMIO read/write operations. These trace events
125 can be used for logging all MMIO read/write operations.
Dtest_hmm.c328 unsigned long end, bool write) in dmirror_fault() argument
338 HMM_PFN_REQ_FAULT | (write ? HMM_PFN_REQ_WRITE : 0), in dmirror_fault()
DKconfig.debug664 write to these files.
920 notified, write the error code to "actions/<notifier event>/error".
927 bash: echo: write error: Cannot allocate memory
1854 Allows to write steps between "offline" and "online" to the CPUs
1988 notified, write the error code to "actions/<notifier event>/error".
1995 bash: echo: write error: Cannot allocate memory
2012 notified, write the error code to "actions/<notifier event>/error".
2028 notified, write the error code to "actions/<notifier event>/error".
Ddynamic_debug.c1192 .write = ddebug_proc_write
Dtest_firmware.c1285 .write = test_fw_upload_write,
/lib/xz/
Dxz_dec_test.c181 .write = &xz_dec_test_write in xz_dec_test_init()
/lib/kunit/
Ddebugfs.c163 .write = debugfs_run,