Searched refs:fb (Results 1 - 25 of 188) sorted by relevance

12345678

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfloatundixf.c31 long_double_bits fb; local
32 fb.u.high.s.low = (e + 16383); // exponent
33 fb.u.low.all = a << clz; // mantissa
34 return fb.f;
H A Dfixunsxfti.c29 long_double_bits fb; local
30 fb.f = a;
31 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
32 if (e < 0 || (fb.u.high.s.low & 0x00008000))
36 tu_int r = fb.u.low.all;
H A Dfixxfti.c30 long_double_bits fb; local
31 fb.f = a;
32 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
35 ti_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
36 ti_int r = fb.u.low.all;
H A Dfixunsxfdi.c36 long_double_bits fb; local
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);
H A Dfixunsxfsi.c36 long_double_bits fb; local
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.s.high >> (31 - e);
H A Dfloatdixf.c34 long_double_bits fb; local
35 fb.u.high.s.low = ((su_int)s & 0x00008000) | // sign
37 fb.u.low.all = a << clz; // mantissa
38 return fb.f;
H A Dfixxfdi.c37 long_double_bits fb; local
38 fb.f = a;
39 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
44 di_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
45 di_int r = fb.u.low.all;
H A Dfloatuntisf.c62 float_bits fb; local
63 fb.u = ((e + 127) << 23) | // exponent
65 return fb.f;
H A Dfloattidf.c65 double_bits fb; local
66 fb.u.s.high = ((su_int)s & 0x80000000) | // sign
69 fb.u.s.low = (su_int)a; // mantissa-low
70 return fb.f;
H A Dfloattitf.c70 long_double_bits fb; local
71 fb.u.high.all = (s & 0x8000000000000000LL) // sign
74 fb.u.low.all = (du_int)(a);
75 return fb.f;
H A Dfloattixf.c66 long_double_bits fb; local
67 fb.u.high.s.low = ((su_int)s & 0x8000) | // sign
69 fb.u.low.all = (du_int)a; // mantissa
70 return fb.f;
H A Dfloatuntidf.c63 double_bits fb; local
64 fb.u.s.high = ((e + 1023) << 20) | // exponent
66 fb.u.s.low = (su_int)a; // mantissa-low
67 return fb.f;
H A Dfloatuntitf.c68 long_double_bits fb; local
69 fb.u.high.all = (du_int)(e + 16383) << 48 // exponent
71 fb.u.low.all = (du_int)(a);
72 return fb.f;
H A Dfloatuntixf.c64 long_double_bits fb; local
65 fb.u.high.s.low = (e + 16383); // exponent
66 fb.u.low.all = (du_int)a; // mantissa
67 return fb.f;
/freebsd-11-stable/sys/arm/nvidia/drm2/
H A Dtegra_fb.c48 struct tegra_fb *fb; local
52 fb = container_of(drm_fb, struct tegra_fb, drm_fb);
53 for (i = 0; i < fb->nplanes; i++) {
54 bo = fb->planes[i];
60 free(fb->planes, DRM_MEM_DRIVER);
67 struct tegra_fb *fb; local
70 fb = container_of(drm_fb, struct tegra_fb, drm_fb);
71 rv = drm_gem_handle_create(file, &fb->planes[0]->gem_obj, handle);
77 fb_dirty(struct drm_framebuffer *fb, struct drm_file *file_priv, argument
94 struct tegra_fb *fb; local
123 struct tegra_fb *fb; local
205 struct tegra_fb *fb; local
216 tegra_fb_get_plane(struct tegra_fb *fb, int idx) argument
229 struct tegra_fb *fb; local
277 struct tegra_fb *fb; local
324 struct tegra_fb *fb; local
[all...]
/freebsd-11-stable/sys/modules/splash/bmp/
H A DMakefile3 .PATH: ${SRCTOP}/sys/dev/fb
/freebsd-11-stable/sys/modules/splash/pcx/
H A DMakefile3 .PATH: ${SRCTOP}/sys/dev/fb
/freebsd-11-stable/sys/modules/splash/txt/
H A DMakefile2 .PATH: ${SRCTOP}/sys/dev/fb
/freebsd-11-stable/sys/arm/broadcom/bcm2835/
H A Dbcm2835_fbd.c50 #include <dev/fb/fbreg.h>
64 struct bcm2835_fb_config fb; member in struct:bcmsc_softc
69 {"broadcom,bcm2835-fb", 1},
70 {"brcm,bcm2708-fb", 1},
78 bcm_fb_init(struct bcmsc_softc *sc, struct bcm2835_fb_config *fb) argument
84 memset(fb, 0, sizeof(*fb));
85 if (bcm2835_mbox_fb_get_w_h(fb) != 0)
87 fb->bpp = FB_DEPTH;
89 fb
104 struct bcm2835_fb_config fb; local
167 struct bcm2835_fb_config fb; local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_client/
H A Drepos_diff.c319 get_file_from_ra(struct file_baton *fb, argument
327 SVN_ERR(svn_stream_open_unique(&fstream, &(fb->path_start_revision),
329 fb->pool, scratch_pool));
331 fstream = svn_stream_checksummed2(fstream, NULL, &fb->start_md5_checksum,
332 svn_checksum_md5, TRUE, fb->pool);
335 SVN_ERR(svn_ra_get_file(fb->edit_baton->ra_session,
336 fb->path,
337 fb->base_revision,
339 &(fb->pristine_props),
340 fb
487 struct file_baton *fb = make_file_baton(path, db, FALSE, scratch_pool); local
757 struct file_baton *fb; local
797 struct file_baton *fb; local
832 struct file_baton *fb = window_baton; local
853 struct file_baton *fb = baton; local
868 struct file_baton *fb = baton; local
885 struct file_baton *fb = file_baton; local
971 struct file_baton *fb = file_baton; local
1149 struct file_baton *fb = file_baton; local
[all...]
H A Dwc_editor.c389 struct file_baton_t *fb = apr_pcalloc(file_pool, sizeof(*fb)); local
391 fb->pool = file_pool;
392 fb->eb = eb;
393 SVN_ERR(get_path(&fb->local_abspath,
394 eb->anchor_abspath, path, fb->pool));
396 *file_baton = fb;
407 struct file_baton_t *fb; local
409 SVN_ERR(file_open_or_add(path, parent_baton, &fb, result_pool));
411 *file_baton = fb;
423 struct file_baton_t *fb; local
452 struct file_baton_t *fb = file_baton; local
478 struct file_baton_t *fb = file_baton; local
514 struct file_baton_t *fb = file_baton; local
[all...]
/freebsd-11-stable/sys/dev/drm/
H A Dsis_mm.c84 /* fb management via fb device */
94 drm_sis_mem_t *fb = data; local
98 req.size = fb->size;
102 fb->offset = req.offset;
103 fb->free = req.offset;
104 if (!add_alloc_set(fb->context, VIDEO_TYPE, fb->free)) {
110 fb->offset = 0;
111 fb
122 drm_sis_mem_t fb; local
152 drm_sis_fb_t *fb = data; local
175 drm_sis_mem_t *fb = data; local
206 drm_sis_mem_t *fb = data; local
[all...]
/freebsd-11-stable/bin/mv/tests/
H A Dlegacy_test.sh143 mv fa ${FS}fb
145 ckf fa ${FS}fb
151 mkf fb
153 mv fa fb ${FS}1/2/3
156 ckf fb ${FS}1/2/3/fb
158 cknt fb
164 mv 1/2/3/fa ${FS}fb
166 ckf fa ${FS}fb
173 :> ${FS}fb
[all...]
/freebsd-11-stable/crypto/heimdal/appl/telnet/libtelnet/
H A Denc_des.c78 struct fb { struct
89 static struct fb fb[2]; variable in typeref:struct:fb
119 void fb64_init (struct fb *);
120 static int fb64_start (struct fb *, int, int);
121 int fb64_is (unsigned char *, int, struct fb *);
122 int fb64_reply (unsigned char *, int, struct fb *);
123 static void fb64_session (Session_Key *, int, struct fb *);
125 int fb64_keyid (int, unsigned char *, int *, struct fb *);
131 fb64_init(&fb[CF
[all...]
/freebsd-11-stable/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c36 #include <dev/vt/hw/fb/vt_fb.h>
52 struct fb_info fb; member in struct:ofwfb_softc
287 sc->fb.fb_cmsize = 16;
289 if (sc->fb.fb_flags & FB_FLAG_NOWRITE)
297 switch (sc->fb.fb_bpp) {
299 vt_generate_cons_palette(sc->fb.fb_cmap, COLOR_FORMAT_RGB, 255,
304 (cell_t)((sc->fb.fb_cmap[i] >> 16) & 0xff),
305 (cell_t)((sc->fb.fb_cmap[i] >> 8) & 0xff),
306 (cell_t)((sc->fb.fb_cmap[i] >> 0) & 0xff),
324 oldpix = bus_space_read_4(sc->sc_memt, sc->fb
[all...]

Completed in 163 milliseconds

12345678