Lines Matching +defs:comment +defs:end
713 char *end;
716 val = strtoull(buf, &end, 0);
717 if (end == buf) {
720 } else if (end[0] == '.') {
721 double fval = strtod(buf, &end);
722 fval *= pow(2, str2shift(end));
735 int shift = str2shift(end);
750 const char *comment;
884 option_table[i].comment);
1228 * See comment above spa_write_cachefile().
1901 ztest_fill_unused_bonus(dmu_buf_t *db, void *end, uint64_t obj,
1906 ASSERT(IS_P2ALIGNED((char *)end - (char *)db->db_data, 8));
1908 for (bonusp = db->db_data; bonusp < (uint64_t *)end; bonusp++) {
1920 ztest_verify_unused_bonus(dmu_buf_t *db, void *end, uint64_t obj,
1925 for (bonusp = db->db_data; bonusp < (uint64_t *)end; bonusp++) {
6149 * insertion point to not be the end because our txg may already be
6655 * Only allow damage to the labels at one end of the vdev.
6670 * The two end labels are stored at the "end" of the disk, but
6671 * the end of the disk (vdev_psize) is aligned to
6719 * data corruption. See the comment in zfs_fault_inject().
6817 hrtime_t end = gethrtime() + NANOSEC;
6839 while (gethrtime() <= end) {
6904 hrtime_t end = gethrtime() + NANOSEC;
6906 while (gethrtime() <= end) {
6981 hrtime_t end = gethrtime() + NANOSEC;
6983 while (gethrtime() <= end) {
7099 /* The end of strings is indicated by a NULL element */
7583 * I/Os then it will end up aborting the tests.