Home
last modified time | relevance | path

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

/external/chromium_org/third_party/cython/src/Cython/Utility/
DBuffer.c88 size_t fmt_offset; member
231 ctx->fmt_offset = 0;
506 align_mod_offset = ctx->fmt_offset % align_at;
507 if (align_mod_offset > 0) ctx->fmt_offset += align_at - align_mod_offset;
533 if (ctx->fmt_offset != offset) {
536 (Py_ssize_t)ctx->fmt_offset, (Py_ssize_t)offset);
540 ctx->fmt_offset += size;
542 ctx->fmt_offset += (arraysize - 1) * size;
712 if (alignment && ctx->fmt_offset % alignment) {
714 ctx->fmt_offset += alignment - (ctx->fmt_offset % alignment);
[all …]