| /src/sys/contrib/openzfs/module/zfs/ |
| H A D | vdev_initialize.c | 49 vdev_initialize_should_stop(vdev_t *vd) in vdev_initialize_should_stop() argument 51 return (vd->vdev_initialize_exit_wanted || !vdev_writeable(vd) || in vdev_initialize_should_stop() 52 vd->vdev_detached || vd->vdev_top->vdev_removing || in vdev_initialize_should_stop() 53 vd->vdev_top->vdev_rz_expanding); in vdev_initialize_should_stop() 71 vdev_t *vd = spa_lookup_by_guid(tx->tx_pool->dp_spa, guid, B_FALSE); in vdev_initialize_zap_update_sync() local 72 if (vd == NULL || vd->vdev_top->vdev_removing || in vdev_initialize_zap_update_sync() 73 !vdev_is_concrete(vd) || vd->vdev_top->vdev_rz_expanding) in vdev_initialize_zap_update_sync() 76 uint64_t last_offset = vd->vdev_initialize_offset[txg & TXG_MASK]; in vdev_initialize_zap_update_sync() 77 vd->vdev_initialize_offset[txg & TXG_MASK] = 0; in vdev_initialize_zap_update_sync() 79 VERIFY(vd->vdev_leaf_zap != 0); in vdev_initialize_zap_update_sync() [all …]
|
| H A D | vdev.c | 174 vdev_dbgmsg(vdev_t *vd, const char *fmt, ...) in vdev_dbgmsg() argument 183 if (vd->vdev_path != NULL) { in vdev_dbgmsg() 184 zfs_dbgmsg("%s vdev '%s': %s", vd->vdev_ops->vdev_op_type, in vdev_dbgmsg() 185 vd->vdev_path, buf); in vdev_dbgmsg() 188 vd->vdev_ops->vdev_op_type, in vdev_dbgmsg() 189 (u_longlong_t)vd->vdev_id, in vdev_dbgmsg() 190 (u_longlong_t)vd->vdev_guid, buf); in vdev_dbgmsg() 195 vdev_dbgmsg_print_tree(vdev_t *vd, int indent) in vdev_dbgmsg_print_tree() argument 199 if (vd->vdev_ishole || vd->vdev_ops == &vdev_missing_ops) { in vdev_dbgmsg_print_tree() 201 (u_longlong_t)vd->vdev_id, in vdev_dbgmsg_print_tree() [all …]
|
| H A D | vdev_trim.c | 170 vdev_trim_should_stop(vdev_t *vd) in vdev_trim_should_stop() argument 172 return (vd->vdev_trim_exit_wanted || !vdev_writeable(vd) || in vdev_trim_should_stop() 173 vd->vdev_detached || vd->vdev_top->vdev_removing || in vdev_trim_should_stop() 174 vd->vdev_top->vdev_rz_expanding); in vdev_trim_should_stop() 194 vdev_autotrim_wait_kick(vdev_t *vd, int num_of_kick) in vdev_autotrim_wait_kick() argument 196 mutex_enter(&vd->vdev_autotrim_lock); in vdev_autotrim_wait_kick() 198 if (vd->vdev_autotrim_exit_wanted) in vdev_autotrim_wait_kick() 200 cv_wait_idle(&vd->vdev_autotrim_kick_cv, in vdev_autotrim_wait_kick() 201 &vd->vdev_autotrim_lock); in vdev_autotrim_wait_kick() 203 boolean_t exit_wanted = vd->vdev_autotrim_exit_wanted; in vdev_autotrim_wait_kick() [all …]
|
| H A D | vdev_rebuild.c | 146 clear_rebuild_bytes(vdev_t *vd) in clear_rebuild_bytes() argument 148 vdev_stat_t *vs = &vd->vdev_stat; in clear_rebuild_bytes() 150 for (uint64_t i = 0; i < vd->vdev_children; i++) in clear_rebuild_bytes() 151 clear_rebuild_bytes(vd->vdev_child[i]); in clear_rebuild_bytes() 153 mutex_enter(&vd->vdev_stat_lock); in clear_rebuild_bytes() 155 mutex_exit(&vd->vdev_stat_lock); in clear_rebuild_bytes() 162 vdev_rebuild_should_stop(vdev_t *vd) in vdev_rebuild_should_stop() argument 164 return (!vdev_writeable(vd) || vd->vdev_removing || in vdev_rebuild_should_stop() 165 vd->vdev_rebuild_exit_wanted || in vdev_rebuild_should_stop() 166 vd->vdev_rebuild_cancel_wanted || in vdev_rebuild_should_stop() [all …]
|
| H A D | vdev_label.c | 189 vdev_label_read(zio_t *zio, vdev_t *vd, int l, abd_t *buf, uint64_t offset, in vdev_label_read() argument 197 zio_nowait(zio_read_phys(zio, vd, in vdev_label_read() 198 vdev_label_offset(vd->vdev_psize, l, offset), in vdev_label_read() 204 vdev_label_write(zio_t *zio, vdev_t *vd, int l, abd_t *buf, uint64_t offset, in vdev_label_write() argument 212 zio_nowait(zio_write_phys(zio, vd, in vdev_label_write() 213 vdev_label_offset(vd->vdev_psize, l, offset), in vdev_label_write() 222 vdev_config_generate_stats(vdev_t *vd, nvlist_t *nv) in vdev_config_generate_stats() argument 231 vdev_get_stats_ex(vd, vs, vsx); in vdev_config_generate_stats() 404 root_vdev_actions_getprogress(vdev_t *vd, nvlist_t *nvl) in root_vdev_actions_getprogress() argument 406 spa_t *spa = vd->vdev_spa; in root_vdev_actions_getprogress() [all …]
|
| H A D | vdev_removal.c | 208 vdev_activate(vdev_t *vd) in vdev_activate() argument 210 metaslab_group_t *mg = vd->vdev_mg; in vdev_activate() 212 ASSERT(!vd->vdev_islog); in vdev_activate() 213 ASSERT(vd->vdev_noalloc); in vdev_activate() 216 metaslab_group_activate(vd->vdev_log_mg); in vdev_activate() 218 vdev_update_nonallocating_space(vd, B_FALSE); in vdev_activate() 220 vd->vdev_noalloc = B_FALSE; in vdev_activate() 224 vdev_passivate(vdev_t *vd, uint64_t *txg) in vdev_passivate() argument 226 spa_t *spa = vd->vdev_spa; in vdev_passivate() 229 ASSERT(!vd->vdev_noalloc); in vdev_passivate() [all …]
|
| H A D | vdev_draid.c | 582 vdev_draid_psize_to_asize(vdev_t *vd, uint64_t psize, uint64_t txg) in vdev_draid_psize_to_asize() argument 585 vdev_draid_config_t *vdc = vd->vdev_tsd; in vdev_draid_psize_to_asize() 586 uint64_t ashift = vd->vdev_ashift; in vdev_draid_psize_to_asize() 588 ASSERT3P(vd->vdev_ops, ==, &vdev_draid_ops); in vdev_draid_psize_to_asize() 603 vdev_draid_asize_to_psize(vdev_t *vd, uint64_t asize, uint64_t txg) in vdev_draid_asize_to_psize() argument 606 vdev_draid_config_t *vdc = vd->vdev_tsd; in vdev_draid_asize_to_psize() 617 vdev_draid_offset_to_group(vdev_t *vd, uint64_t offset) in vdev_draid_offset_to_group() argument 619 vdev_draid_config_t *vdc = vd->vdev_tsd; in vdev_draid_offset_to_group() 621 ASSERT3P(vd->vdev_ops, ==, &vdev_draid_ops); in vdev_draid_offset_to_group() 630 vdev_draid_group_to_offset(vdev_t *vd, uint64_t group) in vdev_draid_group_to_offset() argument [all …]
|
| H A D | vdev_root.c | 42 vdev_root_core_tvds(vdev_t *vd) in vdev_root_core_tvds() argument 46 for (uint64_t c = 0; c < vd->vdev_children; c++) { in vdev_root_core_tvds() 47 vdev_t *cvd = vd->vdev_child[c]; in vdev_root_core_tvds() 68 too_many_errors(vdev_t *vd, uint64_t numerrors) in too_many_errors() argument 75 tvds = vdev_root_core_tvds(vd); in too_many_errors() 81 return (numerrors > spa_missing_tvds_allowed(vd->vdev_spa)); in too_many_errors() 85 vdev_root_open(vdev_t *vd, uint64_t *asize, uint64_t *max_asize, in vdev_root_open() argument 88 spa_t *spa = vd->vdev_spa; in vdev_root_open() 92 if (vd->vdev_children == 0) { in vdev_root_open() 93 vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL; in vdev_root_open() [all …]
|
| H A D | vdev_file.c | 71 vdev_file_hold(vdev_t *vd) in vdev_file_hold() argument 73 ASSERT3P(vd->vdev_path, !=, NULL); in vdev_file_hold() 77 vdev_file_rele(vdev_t *vd) in vdev_file_rele() argument 79 ASSERT3P(vd->vdev_path, !=, NULL); in vdev_file_rele() 99 vdev_file_open(vdev_t *vd, uint64_t *psize, uint64_t *max_psize, in vdev_file_open() argument 110 vd->vdev_nonrot = B_TRUE; in vdev_file_open() 113 vd->vdev_is_blkdev = B_FALSE; in vdev_file_open() 120 vd->vdev_has_trim = B_TRUE; in vdev_file_open() 126 vd->vdev_has_securetrim = B_FALSE; in vdev_file_open() 131 if (vd->vdev_path == NULL || vd->vdev_path[0] != '/') { in vdev_file_open() [all …]
|
| H A D | vdev_indirect.c | 325 vdev_indirect_mark_obsolete(vdev_t *vd, uint64_t offset, uint64_t size) in vdev_indirect_mark_obsolete() argument 327 spa_t *spa = vd->vdev_spa; in vdev_indirect_mark_obsolete() 329 ASSERT3U(vd->vdev_indirect_config.vic_mapping_object, !=, 0); in vdev_indirect_mark_obsolete() 330 ASSERT(vd->vdev_removing || vd->vdev_ops == &vdev_indirect_ops); in vdev_indirect_mark_obsolete() 333 vd->vdev_indirect_mapping, offset) != NULL); in vdev_indirect_mark_obsolete() 336 mutex_enter(&vd->vdev_obsolete_lock); in vdev_indirect_mark_obsolete() 337 zfs_range_tree_add(vd->vdev_obsolete_segments, offset, size); in vdev_indirect_mark_obsolete() 338 mutex_exit(&vd->vdev_obsolete_lock); in vdev_indirect_mark_obsolete() 339 vdev_dirty(vd, 0, NULL, spa_syncing_txg(spa)); in vdev_indirect_mark_obsolete() 352 vdev_t *vd = vdev_lookup_top(spa, vdev_id); in spa_vdev_indirect_mark_obsolete() local [all …]
|
| H A D | zfs_fm.c | 208 vdev_prop_get_inherited(vdev_t *vd, vdev_prop_t prop) in vdev_prop_get_inherited() argument 215 propval = vd->vdev_checksum_n; in vdev_prop_get_inherited() 218 propval = vd->vdev_checksum_t; in vdev_prop_get_inherited() 221 propval = vd->vdev_io_n; in vdev_prop_get_inherited() 224 propval = vd->vdev_io_t; in vdev_prop_get_inherited() 227 propval = vd->vdev_slow_io_events; in vdev_prop_get_inherited() 230 propval = vd->vdev_slow_io_n; in vdev_prop_get_inherited() 233 propval = vd->vdev_slow_io_t; in vdev_prop_get_inherited() 243 if (vd->vdev_parent == NULL) in vdev_prop_get_inherited() 246 return (vdev_prop_get_inherited(vd->vdev_parent, prop)); in vdev_prop_get_inherited() [all …]
|
| H A D | spa_checkpoint.c | 211 vdev_t *vd = sdc->sdc_vd; in spa_checkpoint_discard_sync_callback() local 212 metaslab_t *ms = vd->vdev_ms[sme->sme_offset >> vd->vdev_ms_shift]; in spa_checkpoint_discard_sync_callback() 240 vdev_dirty(vd, VDD_METASLAB, ms, sdc->sdc_txg); in spa_checkpoint_discard_sync_callback() 244 ASSERT3U(vd->vdev_spa->spa_checkpoint_info.sci_dspace, >=, in spa_checkpoint_discard_sync_callback() 246 ASSERT3U(vd->vdev_stat.vs_checkpoint_space, >=, sme->sme_run); in spa_checkpoint_discard_sync_callback() 248 vd->vdev_spa->spa_checkpoint_info.sci_dspace -= sme->sme_run; in spa_checkpoint_discard_sync_callback() 249 vd->vdev_stat.vs_checkpoint_space -= sme->sme_run; in spa_checkpoint_discard_sync_callback() 264 vdev_t *vd = rvd->vdev_child[c]; in spa_checkpoint_accounting_verify() local 266 if (vd->vdev_checkpoint_sm != NULL) { in spa_checkpoint_accounting_verify() 268 -space_map_allocated(vd->vdev_checkpoint_sm); in spa_checkpoint_accounting_verify() [all …]
|
| /src/stand/common/ |
| H A D | vdisk.c | 75 vdisk_info_t *vd; in vdisk_get_info() local 77 STAILQ_FOREACH(vd, &vdisk_list, vdisk_link) { in vdisk_get_info() 78 if (vd->vdisk_unit == dev->d_unit) in vdisk_get_info() 79 return (vd); in vdisk_get_info() 81 return (vd); in vdisk_get_info() 89 vdisk_info_t *vd, *p; in command_mapvd() local 97 STAILQ_FOREACH(vd, &vdisk_list, vdisk_link) { in command_mapvd() 98 if (strcmp(vd->vdisk_path, argv[1]) == 0) { in command_mapvd() 101 vd->vdisk_unit); in command_mapvd() 126 vd = calloc(1, sizeof (*vd)); in command_mapvd() [all …]
|
| /src/sys/dev/vt/ |
| H A D | vt_core.c | 302 vt_schedule_flush(struct vt_device *vd, int ms) in vt_schedule_flush() argument 309 callout_schedule(&vd->vd_timer, hz / (1000 / ms)); in vt_schedule_flush() 315 struct vt_device *vd = vw->vw_device; in vt_resume_flush_timer() local 317 if (vd->vd_curwindow != vw) in vt_resume_flush_timer() 320 if (!(vd->vd_flags & VDF_ASYNC) || in vt_resume_flush_timer() 321 !atomic_cmpset_int(&vd->vd_timer_armed, 0, 1)) in vt_resume_flush_timer() 324 vt_schedule_flush(vd, ms); in vt_resume_flush_timer() 328 vt_suspend_flush_timer(struct vt_device *vd) in vt_suspend_flush_timer() argument 335 VT_LOCK_ASSERT(vd, MA_OWNED); in vt_suspend_flush_timer() 337 if (!(vd->vd_flags & VDF_ASYNC) || in vt_suspend_flush_timer() [all …]
|
| H A D | vt_cpulogos.c | 65 vt_draw_2_vga16_px(struct vt_device *vd, vt_axis_t x, vt_axis_t y, in vt_draw_2_vga16_px() argument 69 vd->vd_driver->vd_setpixel(vd, x, y, vt_vga2bsd(color >> 4)); in vt_draw_2_vga16_px() 70 vd->vd_driver->vd_setpixel(vd, x + 1, y, vt_vga2bsd(color & 0xf)); in vt_draw_2_vga16_px() 74 vt_draw_1_logo(struct vt_device *vd, vt_axis_t top, vt_axis_t left) in vt_draw_1_logo() argument 100 vt_draw_2_vga16_px(vd, in vt_draw_1_logo() 107 vt_draw_2_vga16_px(vd, left + (xy % vt_logo_sprite_width), in vt_draw_1_logo() 117 vtterm_draw_cpu_logos(struct vt_device *vd) in vtterm_draw_cpu_logos() argument 121 struct terminal *tm = vd->vd_curwindow->vw_terminal; in vtterm_draw_cpu_logos() 133 if (vd->vd_driver->vd_drawrect) in vtterm_draw_cpu_logos() 134 vd->vd_driver->vd_drawrect(vd, 0, 0, vd->vd_width - 1, in vtterm_draw_cpu_logos() [all …]
|
| H A D | vt.h | 172 #define VD_PASTEBUF(vd) ((vd)->vd_pastebuf.vpb_buf) argument 173 #define VD_PASTEBUFSZ(vd) ((vd)->vd_pastebuf.vpb_bufsz) argument 174 #define VD_PASTEBUFLEN(vd) ((vd)->vd_pastebuf.vpb_len) argument 176 #define VT_LOCK(vd) mtx_lock(&(vd)->vd_lock) argument 177 #define VT_UNLOCK(vd) mtx_unlock(&(vd)->vd_lock) argument 178 #define VT_LOCK_ASSERT(vd, what) mtx_assert(&(vd)->vd_lock, what) argument 180 #define VT_FLUSH_LOCK(vd) \ argument 181 if ((vd)->vd_driver->vd_bitblt_after_vtbuf_unlock) \ 182 mtx_lock(&(vd)->vd_flush_lock) 184 #define VT_FLUSH_UNLOCK(vd) \ argument [all …]
|
| /src/sys/contrib/openzfs/include/sys/ |
| H A D | vdev.h | 54 typedef boolean_t vdev_open_children_func_t(vdev_t *vd); 56 extern void vdev_dbgmsg(vdev_t *vd, const char *fmt, ...) 68 extern int vdev_validate_aux(vdev_t *vd); 69 extern zio_t *vdev_probe(vdev_t *vd, zio_t *pio); 70 extern boolean_t vdev_is_concrete(vdev_t *vd); 71 extern boolean_t vdev_is_bootable(vdev_t *vd); 73 extern vdev_t *vdev_lookup_by_guid(vdev_t *vd, uint64_t guid); 75 extern void vdev_dtl_dirty(vdev_t *vd, vdev_dtl_type_t d, 77 extern boolean_t vdev_dtl_contains(vdev_t *vd, vdev_dtl_type_t d, 79 extern boolean_t vdev_dtl_empty(vdev_t *vd, vdev_dtl_type_t d); [all …]
|
| H A D | vdev_impl.h | 67 typedef void vdev_kobj_post_evt_func_t(vdev_t *vd); 68 typedef void vdev_fini_func_t(vdev_t *vd); 69 typedef int vdev_open_func_t(vdev_t *vd, uint64_t *size, uint64_t *max_size, 71 typedef void vdev_close_func_t(vdev_t *vd); 72 typedef uint64_t vdev_asize_func_t(vdev_t *vd, uint64_t psize, uint64_t txg); 73 typedef uint64_t vdev_min_asize_func_t(vdev_t *vd); 74 typedef uint64_t vdev_min_alloc_func_t(vdev_t *vd); 77 typedef void vdev_state_change_func_t(vdev_t *vd, int, int); 78 typedef boolean_t vdev_need_resilver_func_t(vdev_t *vd, const dva_t *dva, 80 typedef void vdev_hold_func_t(vdev_t *vd); [all …]
|
| /src/crypto/openssl/crypto/perlasm/ |
| H A D | riscv.pm | 422 my $vd = read_vreg shift; 426 return ".word ".($template | ($vm << 25) | ($vs2 << 20) | ($vs1 << 15) | ($vd << 7)); 432 my $vd = read_vreg shift; 436 return ".word ".($template | ($vm << 25) | ($vs2 << 20) | ($rs1 << 15) | ($vd << 7)); 442 my $vd = read_vreg shift; 446 return ".word ".($template | ($vm << 25) | ($vs2 << 20) | ($vs1 << 15) | ($vd << 7)); 452 my $vd = read_vreg shift; 456 return ".word ".($template | ($vm << 25) | ($vs2 << 20) | ($rs1 << 15) | ($vd << 7)); 462 my $vd = read_vreg shift; 463 return ".word ".($template | ($vd << 7)); [all …]
|
| /src/sys/dev/vt/hw/fb/ |
| H A D | vt_fb.c | 107 vt_fb_ioctl(struct vt_device *vd, u_long cmd, caddr_t data, struct thread *td) in vt_fb_ioctl() argument 112 info = vd->vd_softc; in vt_fb_ioctl() 133 if (vd->vd_driver->vd_blank == NULL) in vt_fb_ioctl() 135 vd->vd_driver->vd_blank(vd, TC_BLACK); in vt_fb_ioctl() 155 vt_fb_mmap(struct vt_device *vd, vm_ooffset_t offset, vm_paddr_t *paddr, in vt_fb_mmap() argument 160 info = vd->vd_softc; in vt_fb_mmap() 184 vt_fb_setpixel(struct vt_device *vd, int x, int y, term_color_t color) in vt_fb_setpixel() argument 190 info = vd->vd_softc; in vt_fb_setpixel() 219 vt_fb_drawrect(struct vt_device *vd, int x1, int y1, int x2, int y2, int fill, in vt_fb_drawrect() argument 227 vt_fb_setpixel(vd, x, y, color); in vt_fb_drawrect() [all …]
|
| /src/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
| H A D | LoongArchLSXInstrFormats.td | 13 // vd/rd/cd - destination register operand. 20 // <opcode | I13 | vd> 25 bits<5> vd; 29 let Inst{4-0} = vd; 33 // <opcode | vj | vd> 38 bits<5> vd; 42 let Inst{4-0} = vd; 45 // <opcode | rj | vd> 50 bits<5> vd; 54 let Inst{4-0} = vd; [all …]
|
| /src/sys/contrib/openzfs/module/os/freebsd/zfs/ |
| H A D | vdev_geom.c | 63 vdev_t *vd; member 95 vdev_geom_set_physpath(vdev_t *vd, struct g_consumer *cp, in vdev_geom_set_physpath() argument 110 old_physpath = vd->vdev_physpath; in vdev_geom_set_physpath() 111 vd->vdev_physpath = spa_strdup(physpath); in vdev_geom_set_physpath() 115 vd->vdev_physpath) != 0); in vdev_geom_set_physpath() 128 spa_async_request(vd->vdev_spa, SPA_ASYNC_CONFIG_UPDATE); in vdev_geom_set_physpath() 143 vdev_t *vd = elem->vd; in vdev_geom_attrchanged() local 145 vdev_geom_set_physpath(vd, cp, /* null_update */B_TRUE); in vdev_geom_attrchanged() 157 vdev_t *vd; in vdev_geom_resize() local 164 vd = elem->vd; in vdev_geom_resize() [all …]
|
| /src/tools/regression/usr.bin/cc/ |
| H A D | float.c | 118 volatile double vd; in run_tests() local 126 vd = NAN; in run_tests() 127 test("NaN equality", fpequal(NAN, NAN) && NAN != NAN && vd != vd); in run_tests() 130 test("NaN comparison returns false", !(vd <= vd)); in run_tests() 138 vd = 0.0; in run_tests() 139 run_zero_opt_test(vd, vd); in run_tests() 141 vd = INFINITY; in run_tests() 142 run_inf_opt_test(vd); in run_tests() 145 vd = INFINITY; in run_tests() 146 x = (int)vd; in run_tests() [all …]
|
| /src/sys/dev/vt/hw/vga/ |
| H A D | vt_vga.c | 127 vga_setwmode(struct vt_device *vd, int wmode) in vga_setwmode() argument 129 struct vga_softc *sc = vd->vd_softc; in vga_setwmode() 149 vga_setfg(struct vt_device *vd, term_color_t color) in vga_setfg() argument 151 struct vga_softc *sc = vd->vd_softc; in vga_setfg() 153 vga_setwmode(vd, 3); in vga_setfg() 164 vga_setbg(struct vt_device *vd, term_color_t color) in vga_setbg() argument 166 struct vga_softc *sc = vd->vd_softc; in vga_setbg() 168 vga_setwmode(vd, 3); in vga_setbg() 326 vga_blank(struct vt_device *vd, term_color_t color) in vga_blank() argument 328 struct vga_softc *sc = vd->vd_softc; in vga_blank() [all …]
|
| /src/crypto/krb5/src/lib/rpc/ |
| H A D | xdr_float.c | 204 struct vax_double vd; in xdr_double() local 222 vd = *((struct vax_double *)dp); in xdr_double() 226 if ((vd.mantissa4 == lim->d.mantissa4) && in xdr_double() 227 (vd.mantissa3 == lim->d.mantissa3) && in xdr_double() 228 (vd.mantissa2 == lim->d.mantissa2) && in xdr_double() 229 (vd.mantissa1 == lim->d.mantissa1) && in xdr_double() 230 (vd.exp == lim->d.exp)) { in xdr_double() 235 id.exp = vd.exp - VAX_DBL_BIAS + IEEE_DBL_BIAS; in xdr_double() 236 id.mantissa1 = (vd.mantissa1 << 13) | (vd.mantissa2 >> 3); in xdr_double() 237 id.mantissa2 = ((vd.mantissa2 & MASK(3)) << 29) | in xdr_double() [all …]
|