Home
last modified time | relevance | path

Searched refs:to_end (Results 1 - 19 of 19) sorted by relevance

/third_party/gn/src/base/containers/
H A Dcircular_deque.h913 size_t* to_end) { in MoveBuffer()
921 *to_end = from_end - from_begin; in MoveBuffer()
930 *to_end = right_size + from_end; in MoveBuffer()
933 *to_end = 0; in MoveBuffer()
908 MoveBuffer(VectorBuffer& from_buf, size_t from_begin, size_t from_end, VectorBuffer* to_buf, size_t* to_begin, size_t* to_end) MoveBuffer() argument
/kernel/linux/linux-5.10/drivers/rapidio/
H A Drio-scan.c1064 unsigned long to_end; in rio_disc_mport() local
1078 to_end = jiffies + CONFIG_RAPIDIO_DISC_TIMEOUT * HZ; in rio_disc_mport()
1079 while (time_before(jiffies, to_end)) { in rio_disc_mport()
/kernel/linux/linux-6.6/drivers/rapidio/
H A Drio-scan.c1064 unsigned long to_end; in rio_disc_mport() local
1078 to_end = jiffies + CONFIG_RAPIDIO_DISC_TIMEOUT * HZ; in rio_disc_mport()
1079 while (time_before(jiffies, to_end)) { in rio_disc_mport()
/kernel/linux/linux-5.10/fs/fuse/
H A Ddev.c2144 LIST_HEAD(to_end); in fuse_abort_conn()
2165 list_move(&req->list, &to_end); in fuse_abort_conn()
2171 &to_end); in fuse_abort_conn()
2184 list_splice_tail_init(&fiq->pending, &to_end); in fuse_abort_conn()
2194 end_requests(&to_end); in fuse_abort_conn()
2215 LIST_HEAD(to_end); in fuse_dev_release()
2221 list_splice_init(&fpq->processing[i], &to_end); in fuse_dev_release()
2224 end_requests(&to_end); in fuse_dev_release()
/kernel/linux/linux-6.6/fs/fuse/
H A Ddev.c2133 LIST_HEAD(to_end); in fuse_abort_conn()
2154 list_move(&req->list, &to_end); in fuse_abort_conn()
2160 &to_end); in fuse_abort_conn()
2173 list_splice_tail_init(&fiq->pending, &to_end); in fuse_abort_conn()
2183 end_requests(&to_end); in fuse_abort_conn()
2204 LIST_HEAD(to_end); in fuse_dev_release()
2210 list_splice_init(&fpq->processing[i], &to_end); in fuse_dev_release()
2213 end_requests(&to_end); in fuse_dev_release()
/kernel/linux/linux-5.10/drivers/md/
H A Ddm-integrity.c1034 unsigned to_end; in write_journal() local
1036 to_end = ic->journal_sections - commit_start; in write_journal()
1041 encrypt_journal(ic, true, commit_start, to_end, &crypt_comp_1); in write_journal()
1043 rw_journal(ic, REQ_OP_WRITE, REQ_FUA, commit_start, to_end, &io_comp); in write_journal()
1046 encrypt_journal(ic, true, 0, commit_sections - to_end, &crypt_comp_1); in write_journal()
1052 encrypt_journal(ic, true, 0, commit_sections - to_end, &crypt_comp_2); in write_journal()
1054 rw_journal(ic, REQ_OP_WRITE, REQ_FUA, commit_start, to_end, &io_comp); in write_journal()
1058 for (i = 0; i < to_end; i++) in write_journal()
1060 rw_journal(ic, REQ_OP_WRITE, REQ_FUA, commit_start, to_end, &io_comp); in write_journal()
1061 for (i = 0; i < commit_sections - to_end; in write_journal()
[all...]
/kernel/linux/linux-6.6/drivers/md/
H A Ddm-integrity.c1134 unsigned int to_end; in write_journal() local
1137 to_end = ic->journal_sections - commit_start; in write_journal()
1142 encrypt_journal(ic, true, commit_start, to_end, &crypt_comp_1); in write_journal()
1145 commit_start, to_end, &io_comp); in write_journal()
1148 encrypt_journal(ic, true, 0, commit_sections - to_end, &crypt_comp_1); in write_journal()
1154 encrypt_journal(ic, true, 0, commit_sections - to_end, &crypt_comp_2); in write_journal()
1156 rw_journal(ic, REQ_OP_WRITE | REQ_FUA, commit_start, to_end, &io_comp); in write_journal()
1160 for (i = 0; i < to_end; i++) in write_journal()
1162 rw_journal(ic, REQ_OP_WRITE | REQ_FUA, commit_start, to_end, &io_comp); in write_journal()
1163 for (i = 0; i < commit_sections - to_end; in write_journal()
[all...]
/kernel/linux/linux-5.10/fs/f2fs/
H A Dfile.c3857 bool to_end = false; in f2fs_sec_trim_file() local
3894 to_end = true; in f2fs_sec_trim_file()
3898 (!to_end && !IS_ALIGNED(end_addr, F2FS_BLKSIZE))) { in f2fs_sec_trim_file()
3914 to_end ? LLONG_MAX : end_addr - 1); in f2fs_sec_trim_file()
3919 to_end ? -1 : end_addr - 1); in f2fs_sec_trim_file()
/kernel/linux/linux-6.6/fs/f2fs/
H A Dfile.c3813 bool to_end = false; in f2fs_sec_trim_file() local
3850 to_end = true; in f2fs_sec_trim_file()
3854 (!to_end && !IS_ALIGNED(end_addr, F2FS_BLKSIZE))) { in f2fs_sec_trim_file()
3870 to_end ? LLONG_MAX : end_addr - 1); in f2fs_sec_trim_file()
3875 to_end ? -1 : end_addr - 1); in f2fs_sec_trim_file()
/third_party/node/deps/v8/src/objects/
H A Delements.cc386 uint32_t to_end; in CopyPackedSmiToDoubleElements() local
390 to_end = to_base.length(); in CopyPackedSmiToDoubleElements()
391 for (uint32_t i = to_start + copy_size; i < to_end; ++i) { in CopyPackedSmiToDoubleElements()
395 to_end = to_start + static_cast<uint32_t>(copy_size); in CopyPackedSmiToDoubleElements()
397 DCHECK(static_cast<int>(to_end) <= to_base.length()); in CopyPackedSmiToDoubleElements()
/third_party/libabigail/
H A Dltmain.sh4275 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
4858 lt_extend_str (const char *orig_value, const char *add, int to_end)
4866 if (to_end)
/third_party/skia/third_party/externals/microhttpd/
H A Dltmain.sh4295 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
4878 lt_extend_str (const char *orig_value, const char *add, int to_end)
4886 if (to_end)
/third_party/eudev/
H A Dltmain.sh5716 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
6304 lt_extend_str (const char *orig_value, const char *add, int to_end)
6312 if (to_end)
/third_party/curl/
H A Dltmain.sh5917 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
6505 lt_extend_str (const char *orig_value, const char *add, int to_end)
6513 if (to_end)
/third_party/lame/
H A Dltmain.sh5668 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
6256 lt_extend_str (const char *orig_value, const char *add, int to_end)
6264 if (to_end)
/third_party/node/deps/cares/
H A Dltmain.sh5917 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
6505 lt_extend_str (const char *orig_value, const char *add, int to_end)
6513 if (to_end)
/third_party/node/deps/cares/config/
H A Dltmain.sh5917 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
6505 lt_extend_str (const char *orig_value, const char *add, int to_end)
6513 if (to_end)
/third_party/libevdev/build-aux/
H A Dltmain.sh5918 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
6506 lt_extend_str (const char *orig_value, const char *add, int to_end)
6514 if (to_end)
/third_party/skia/third_party/externals/libpng/
H A Dltmain.sh5668 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
6256 lt_extend_str (const char *orig_value, const char *add, int to_end)
6264 if (to_end)

Completed in 113 milliseconds