Home
last modified time | relevance | path

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

/third_party/iowow/src/kv/
Diwal.c173 static iwrc _write_wl(IWAL *wal, const void *op, off_t oplen, const uint8_t *data, off_t len) { in _write_wl() argument
177 if (bufsz - wal->bufpos < oplen) { in _write_wl()
181 assert(bufsz - wal->bufpos >= oplen); in _write_wl()
182 memcpy(wal->buf + wal->bufpos, op, (size_t) oplen); in _write_wl()
183 wal->bufpos += oplen; in _write_wl()
197 IW_INLINE iwrc _write_op(IWAL *wal, const void *op, off_t oplen, const uint8_t *data, off_t len) { in _write_op() argument
200 rc = _write_wl(wal, op, oplen, data, len); in _write_op()
/third_party/mksh/
Dexpr.c59 static const uint8_t oplen[] = { variable
640 (size_t)oplen[i]) == 0) { in exprtoken()
642 cp += oplen[i]; in exprtoken()
/third_party/pcre2/pcre2/src/
Dpcre2grep.c3836 int oplen = (int)(equals - op->long_name); in main() local
3839 if (oplen == arglen && strncmp(arg, op->long_name, oplen) == 0) in main()