/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
fixunsxfdi.c | 36 long_double_bits fb; local in function:__fixunsxfdi 37 fb.f = a; 38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 39 if (e < 0 || (fb.u.high.s.low & 0x00008000)) 43 return fb.u.low.all >> (63 - e);
|
fixunsxfsi.c | 35 long_double_bits fb; local in function:__fixunsxfsi 36 fb.f = a; 37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 38 if (e < 0 || (fb.u.high.s.low & 0x00008000)) 42 return fb.u.low.s.high >> (31 - e);
|
fixunsxfti.c | 35 long_double_bits fb; local in function:__fixunsxfti 36 fb.f = a; 37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 38 if (e < 0 || (fb.u.high.s.low & 0x00008000)) 42 tu_int r = fb.u.low.all;
|
floatundixf.c | 36 long_double_bits fb; local in function:__floatundixf 37 fb.u.high.s.low = (e + 16383); /* exponent */ 38 fb.u.low.all = a << clz; /* mantissa */ 39 return fb.f;
|
floatuntidf.c | 73 double_bits fb; local in function:__floatuntidf 74 fb.u.s.high = ((e + 1023) << 20) | /* exponent */ 76 fb.u.s.low = (su_int)a; /* mantissa-low */ 77 return fb.f;
|
floatuntisf.c | 73 float_bits fb; local in function:__floatuntisf 74 fb.u = ((e + 127) << 23) | /* exponent */ 76 return fb.f;
|
floatuntixf.c | 75 long_double_bits fb; local in function:__floatuntixf 76 fb.u.high.s.low = (e + 16383); /* exponent */ 77 fb.u.low.all = (du_int)a; /* mantissa */ 78 return fb.f;
|
fixxfdi.c | 35 long_double_bits fb; local in function:__fixxfdi 36 fb.f = a; 37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 42 di_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15); 43 di_int r = fb.u.low.all;
|
fixxfti.c | 35 long_double_bits fb; local in function:__fixxfti 36 fb.f = a; 37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 40 ti_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15); 41 ti_int r = fb.u.low.all;
|
floatdisf.c | 73 float_bits fb; local in function:__floatdisf 74 fb.u = ((su_int)s & 0x80000000) | /* sign */ 77 return fb.f;
|
floatdixf.c | 39 long_double_bits fb; local in function:__floatdixf 40 fb.u.high.s.low = ((su_int)s & 0x00008000) | /* sign */ 42 fb.u.low.all = a << clz; /* mantissa */ 43 return fb.f;
|
floattidf.c | 75 double_bits fb; local in function:__floattidf 76 fb.u.s.high = ((su_int)s & 0x80000000) | /* sign */ 79 fb.u.s.low = (su_int)a; /* mantissa-low */ 80 return fb.f;
|
floattisf.c | 75 float_bits fb; local in function:__floattisf 76 fb.u = ((su_int)s & 0x80000000) | /* sign */ 79 return fb.f;
|
floattixf.c | 77 long_double_bits fb; local in function:__floattixf 78 fb.u.high.s.low = ((su_int)s & 0x8000) | /* sign */ 80 fb.u.low.all = (du_int)a; /* mantissa */ 81 return fb.f;
|
floatundisf.c | 71 float_bits fb; local in function:__floatundisf 72 fb.u = ((e + 127) << 23) | /* exponent */ 74 return fb.f;
|
floatdidf.c | 98 double_bits fb; local in function:__floatdidf 99 fb.u.s.high = ((su_int)s & 0x80000000) | /* sign */ 102 fb.u.s.low = (su_int)a; /* mantissa-low */ 103 return fb.f;
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/ |
nouveau_nvkm_subdev_fb_gm200.c | 35 gm200_fb_init_page(struct nvkm_fb *fb) 37 struct nvkm_device *device = fb->subdev.device; 38 switch (fb->page) { 51 struct gf100_fb *fb = gf100_fb(base); local in function:gm200_fb_init 52 struct nvkm_device *device = fb->base.subdev.device; 54 if (fb->r100c10_page) 55 nvkm_wr32(device, 0x100c10, fb->r100c10 >> 8); 57 nvkm_wr32(device, 0x100cc8, nvkm_memory_addr(fb->base.mmu_wr) >> 8); 58 nvkm_wr32(device, 0x100ccc, nvkm_memory_addr(fb->base.mmu_rd) >> 8); 60 min(nvkm_memory_size(fb->base.mmu_rd) >> 16, (u64)2) << 17) [all...] |
nouveau_nvkm_subdev_fb_gp100.c | 45 gp100_fb_init_remapper(struct nvkm_fb *fb) 47 struct nvkm_device *device = fb->subdev.device; 55 struct gf100_fb *fb = gf100_fb(base); local in function:gp100_fb_init 56 struct nvkm_device *device = fb->base.subdev.device; 58 if (fb->r100c10_page) 59 nvkm_wr32(device, 0x100c10, fb->r100c10 >> 8); 61 nvkm_wr32(device, 0x100cc8, nvkm_memory_addr(fb->base.mmu_wr) >> 8); 62 nvkm_wr32(device, 0x100ccc, nvkm_memory_addr(fb->base.mmu_rd) >> 8); 64 min(nvkm_memory_size(fb->base.mmu_rd) >> 16, (u64)2) << 17);
|
/src/sys/external/bsd/drm2/include/drm/ |
drm_writeback.h | 48 struct drm_framebuffer *fb; member in struct:drm_writeback_job
|
/src/sys/arch/hpcsh/hpcsh/ |
debug.c | 66 uint16_t *fb = (uint16_t *)bootinfo->fb_addr; local in function:__dbg_heart_beat 71 fb += (cause & 0x7) * bootinfo->fb_line_bytes * LINE_STEP; 76 *(fb + i) = color; 77 *(fb + intr_state_rgb16->cnt) =
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/devinit/ |
nouveau_nvkm_subdev_devinit_nv20.c | 44 struct io_mapping *fb; local in function:nv20_devinit_meminit 47 fb = fbmem_init(device); 48 if (!fb) { 49 nvkm_error(subdev, "failed to map fb\n"); 60 fbmem_poke(fb, off - 4, off); 63 if (amount != fbmem_peek(fb, amount - 4)) 67 fbmem_fini(fb);
|
/src/sys/external/bsd/drm2/drm/ |
drm_gem_framebuffer_helper.c | 48 * drm_gem_fb_destroy(fb) 58 drm_gem_fb_destroy(struct drm_framebuffer *fb) 62 for (plane = 0; plane < __arraycount(fb->obj); plane++) 63 drm_gem_object_put_unlocked(fb->obj[plane]); 64 drm_framebuffer_cleanup(fb); 65 kfree(fb); 69 * drm_gem_fb_create_handle(fb, file, handlep) 72 * of fb in the specified drm file namespace, and store it in 78 drm_gem_fb_create_handle(struct drm_framebuffer *fb, struct drm_file *file, 82 return drm_gem_handle_create(file, fb->obj[0], handlep) 102 struct drm_framebuffer *fb; local in function:drm_gem_fb_create_with_funcs [all...] |
/src/sys/dev/sbus/ |
cgsix_sbus.c | 92 struct fbdevice *fb = &sc->sc_fb; local in function:cgsixattach 104 fb->fb_device = sc->sc_dev; 105 fb->fb_type.fb_type = FBTYPE_SUNFAST_COLOR; 106 fb->fb_flags = device_cfdata(sc->sc_dev)->cf_flags & FB_USERMASK; 107 fb->fb_type.fb_depth = 8; 109 fb_setsize_obp(fb, fb->fb_type.fb_depth, 1152, 900, node);
|
cgthree_sbus.c | 135 struct fbdevice *fb = &sc->sc_fb; local in function:cgthreeattach_sbus 147 fb->fb_device = self; 148 fb->fb_flags = device_cfdata(self)->cf_flags & FB_USERMASK; 149 fb->fb_type.fb_type = FBTYPE_SUN3COLOR; 151 fb->fb_type.fb_depth = 8; 152 fb_setsize_obp(fb, fb->fb_type.fb_depth, 1152, 900, node); 174 fb->fb_pixels = NULL; 176 fb->fb_pixels = (void *)(u_long)sa->sa_promvaddrs[0]; 177 if (fb->fb_pixels == NULL) [all...] |
/src/sys/arch/amiga/dev/ |
ite_rh.c | 193 volatile u_char * fb = ip->grf->g_fbkva; local in function:rh_putc 201 fb += 4 * (dy * ip->cols + dx); 202 *fb++ = c; *fb = attr; 221 u_long *fb = (u_long *)__UNVOLATILE(ip->grf->g_fbkva); local in function:rh_scroll 230 memcpy(fb + (sy - count) * ip->cols, fb + sy * ip->cols, 238 memcpy(fb + (sy + count) * ip->cols, fb + sy * ip->cols,
|