| /NextBSD/contrib/subversion/subversion/libsvn_client/ |
| HD | repos_diff.c | 318 get_file_from_ra(struct file_baton *fb, in get_file_from_ra() argument 326 SVN_ERR(svn_stream_open_unique(&fstream, &(fb->path_start_revision), in get_file_from_ra() 328 fb->pool, scratch_pool)); in get_file_from_ra() 330 fstream = svn_stream_checksummed2(fstream, NULL, &fb->start_md5_checksum, in get_file_from_ra() 331 svn_checksum_md5, TRUE, fb->pool); in get_file_from_ra() 334 SVN_ERR(svn_ra_get_file(fb->edit_baton->ra_session, in get_file_from_ra() 335 fb->path, in get_file_from_ra() 336 fb->base_revision, in get_file_from_ra() 338 &(fb->pristine_props), in get_file_from_ra() 339 fb->pool)); in get_file_from_ra() [all …]
|
| HD | copy_foreign.c | 268 struct file_baton_t *fb = apr_pcalloc(file_pool, sizeof(*fb)); in file_add() local 273 fb->pool = file_pool; in file_add() 274 fb->eb = eb; in file_add() 275 fb->pb = pb; in file_add() 277 SVN_ERR(svn_dirent_is_under_root(&under_root, &fb->local_abspath, in file_add() 278 eb->anchor_abspath, path, fb->pool)); in file_add() 284 svn_dirent_local_style(path, fb->pool)); in file_add() 287 *file_baton = fb; in file_add() 297 struct file_baton_t *fb = file_baton; in file_change_prop() local 311 if (! fb->properties) in file_change_prop() [all …]
|
| HD | export.c | 658 struct file_baton *fb = apr_pcalloc(pool, sizeof(*fb)); in add_file() local 667 fb->edit_baton = eb; in add_file() 668 fb->path = full_path; in add_file() 669 fb->url = full_url; in add_file() 670 fb->repos_root_url = eb->repos_root_url; in add_file() 671 fb->pool = pool; in add_file() 673 *baton = fb; in add_file() 706 struct file_baton *fb = file_baton; in apply_textdelta() local 711 SVN_ERR(svn_stream_open_unique(&fb->tmp_stream, &fb->tmppath, in apply_textdelta() 712 svn_dirent_dirname(fb->path, pool), in apply_textdelta() [all …]
|
| /NextBSD/sys/arm/broadcom/bcm2835/ |
| HD | bcm2835_fbd.c | 64 struct bcm2835_fb_config fb; member 72 bcm_fb_init(struct bcmsc_softc *sc, struct bcm2835_fb_config *fb) in bcm_fb_init() argument 78 memset(fb, 0, sizeof(*fb)); in bcm_fb_init() 79 if (bcm2835_mbox_fb_get_w_h(fb) != 0) in bcm_fb_init() 81 fb->bpp = FB_DEPTH; in bcm_fb_init() 83 if ((err = bcm2835_mbox_fb_init(fb)) != 0) { in bcm_fb_init() 94 struct bcm2835_fb_config fb; in bcm_fb_setup_fbd() local 98 err = bcm_fb_init(sc, &fb); in bcm_fb_setup_fbd() 105 sc->info.fb_vbase = (intptr_t)pmap_mapdev(fb.base, fb.size); in bcm_fb_setup_fbd() 106 sc->info.fb_pbase = fb.base; in bcm_fb_setup_fbd() [all …]
|
| HD | bcm2835_fb.c | 138 struct bcm2835_fb_config fb; in bcm_fb_attach() local 148 memset(&fb, 0, sizeof(fb)); in bcm_fb_attach() 149 if (bcm2835_mbox_fb_get_w_h(dev, &fb) != 0) in bcm_fb_attach() 151 fb.bpp = FB_DEPTH; in bcm_fb_attach() 152 if (bcm2835_mbox_fb_init(dev, &fb) != 0) in bcm_fb_attach() 155 sc->fb_addr = (intptr_t)pmap_mapdev(fb.base, fb.size); in bcm_fb_attach() 156 sc->fb_paddr = fb.base; in bcm_fb_attach() 157 sc->fb_size = fb.size; in bcm_fb_attach() 158 sc->depth = fb.bpp; in bcm_fb_attach() 159 sc->stride = fb.pitch; in bcm_fb_attach() [all …]
|
| HD | bcm2835_mbox.c | 468 bcm2835_mbox_fb_get_w_h(struct bcm2835_fb_config *fb) in bcm2835_mbox_fb_get_w_h() argument 486 fb->xres = msg.physical_w_h.body.resp.width; in bcm2835_mbox_fb_get_w_h() 487 fb->yres = msg.physical_w_h.body.resp.height; in bcm2835_mbox_fb_get_w_h() 488 fb->vxres = msg.virtual_w_h.body.resp.width; in bcm2835_mbox_fb_get_w_h() 489 fb->vyres = msg.virtual_w_h.body.resp.height; in bcm2835_mbox_fb_get_w_h() 490 fb->xoffset = msg.offset.body.resp.x; in bcm2835_mbox_fb_get_w_h() 491 fb->yoffset = msg.offset.body.resp.y; in bcm2835_mbox_fb_get_w_h() 498 bcm2835_mbox_fb_init(struct bcm2835_fb_config *fb) in bcm2835_mbox_fb_init() argument 507 msg.physical_w_h.body.req.width = fb->xres; in bcm2835_mbox_fb_init() 508 msg.physical_w_h.body.req.height = fb->yres; in bcm2835_mbox_fb_init() [all …]
|
| /NextBSD/sys/dev/drm/ |
| HD | sis_mm.c | 94 drm_sis_mem_t *fb = data; in sis_fb_alloc() local 98 req.size = fb->size; in sis_fb_alloc() 102 fb->offset = req.offset; in sis_fb_alloc() 103 fb->free = req.offset; in sis_fb_alloc() 104 if (!add_alloc_set(fb->context, VIDEO_TYPE, fb->free)) { in sis_fb_alloc() 110 fb->offset = 0; in sis_fb_alloc() 111 fb->size = 0; in sis_fb_alloc() 112 fb->free = 0; in sis_fb_alloc() 115 DRM_DEBUG("alloc fb, size = %d, offset = %ld\n", fb->size, req.offset); in sis_fb_alloc() 122 drm_sis_mem_t fb; in sis_fb_free() local [all …]
|
| /NextBSD/contrib/subversion/subversion/libsvn_wc/ |
| HD | update_editor.c | 402 struct file_baton *fb; member 931 mark_file_edited(struct file_baton *fb, apr_pool_t *scratch_pool) in mark_file_edited() argument 933 if (fb->edited) in mark_file_edited() 936 SVN_ERR(mark_directory_edited(fb->dir_baton, scratch_pool)); in mark_file_edited() 938 fb->edited = TRUE; in mark_file_edited() 940 if (fb->edit_conflict) in mark_file_edited() 944 SVN_ERR(complete_conflict(fb->edit_conflict, fb->edit_baton, in mark_file_edited() 945 fb->local_abspath, fb->old_repos_relpath, in mark_file_edited() 946 fb->old_revision, fb->new_repos_relpath, in mark_file_edited() 949 fb->pool, scratch_pool)); in mark_file_edited() [all …]
|
| HD | diff_editor.c | 331 struct file_baton_t *fb = apr_pcalloc(file_pool, sizeof(*fb)); in make_file_baton() local 334 fb->eb = eb; in make_file_baton() 335 fb->parent_baton = parent_baton; in make_file_baton() 336 fb->parent_baton->users++; in make_file_baton() 339 fb->local_abspath = svn_dirent_join(eb->anchor_abspath, path, file_pool); in make_file_baton() 340 fb->relpath = svn_dirent_skip_ancestor(eb->anchor_abspath, fb->local_abspath); in make_file_baton() 341 fb->name = svn_dirent_basename(fb->relpath, NULL); in make_file_baton() 343 fb->added = added; in make_file_baton() 344 fb->pool = file_pool; in make_file_baton() 345 fb->propchanges = apr_array_make(file_pool, 8, sizeof(svn_prop_t)); in make_file_baton() [all …]
|
| /NextBSD/bin/mv/tests/ |
| HD | legacy_test.sh | 143 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 174 mv 1/2/3/fa ${FS}fb [all …]
|
| /NextBSD/contrib/telnet/libtelnet/ |
| HD | enc_des.c | 67 struct fb { struct 86 static struct fb fb[2]; argument 116 void fb64_init(struct fb *); 117 static int fb64_start(struct fb *, int, int); 118 int fb64_is(unsigned char *, int, struct fb *); 119 int fb64_reply(unsigned char *, int, struct fb *); 120 static void fb64_session(Session_Key *, int, struct fb *); 122 int fb64_keyid(int, unsigned char *, int *, struct fb *); 127 fb64_init(&fb[CFB]); in cfb64_init() 128 fb[CFB].fb_feed[4] = ENCTYPE_DES_CFB64; in cfb64_init() [all …]
|
| /NextBSD/sys/dev/vt/hw/ofwfb/ |
| HD | ofwfb.c | 52 struct fb_info fb; member 287 sc->fb.fb_cmsize = 16; in ofwfb_initialize() 289 if (sc->fb.fb_flags & FB_FLAG_NOWRITE) in ofwfb_initialize() 297 switch (sc->fb.fb_bpp) { in ofwfb_initialize() 299 vt_generate_cons_palette(sc->fb.fb_cmap, COLOR_FORMAT_RGB, 255, in ofwfb_initialize() 304 (cell_t)((sc->fb.fb_cmap[i] >> 16) & 0xff), in ofwfb_initialize() 305 (cell_t)((sc->fb.fb_cmap[i] >> 8) & 0xff), in ofwfb_initialize() 306 (cell_t)((sc->fb.fb_cmap[i] >> 0) & 0xff), in ofwfb_initialize() 324 oldpix = bus_space_read_4(sc->sc_memt, sc->fb.fb_vbase, 0); in ofwfb_initialize() 325 bus_space_write_4(sc->sc_memt, sc->fb.fb_vbase, 0, 0xff000000); in ofwfb_initialize() [all …]
|
| /NextBSD/crypto/heimdal/appl/telnet/libtelnet/ |
| HD | enc_des.c | 78 struct fb { struct 89 static struct fb fb[2]; argument 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[CFB]); in cfb64_init() 132 fb[CFB].fb_feed[4] = ENCTYPE_DES_CFB64; in cfb64_init() [all …]
|
| /NextBSD/contrib/subversion/subversion/svnrdump/ |
| HD | dump_editor.c | 305 struct file_baton *fb, in dump_node() argument 318 assert(! (db && fb)); in dump_node() 330 if (fb) in dump_node() 366 if (fb) in dump_node() 367 fb->dump_props = TRUE; in dump_node() 419 if (fb) in dump_node() 420 fb->dump_props = TRUE; in dump_node() 736 struct file_baton *fb; in add_file() local 742 fb = make_file_baton(path, pb, pool); in add_file() 750 fb->copyfrom_path = svn_relpath_canonicalize(copyfrom_path, fb->pool); in add_file() [all …]
|
| /NextBSD/contrib/subversion/subversion/libsvn_delta/ |
| HD | cancel.c | 163 struct file_baton *fb = apr_palloc(pool, sizeof(*fb)); in add_file() local 172 &fb->wrapped_file_baton)); in add_file() 174 fb->edit_baton = eb; in add_file() 175 *file_baton = fb; in add_file() 189 struct file_baton *fb = apr_palloc(pool, sizeof(*fb)); in open_file() local 197 &fb->wrapped_file_baton)); in open_file() 199 fb->edit_baton = eb; in open_file() 200 *file_baton = fb; in open_file() 212 struct file_baton *fb = file_baton; in apply_textdelta() local 213 struct edit_baton *eb = fb->edit_baton; in apply_textdelta() [all …]
|
| HD | debug_editor.c | 193 struct file_baton *fb = apr_palloc(pool, sizeof(*fb)); in add_file() local 207 &fb->wrapped_file_baton)); in add_file() 209 fb->edit_baton = eb; in add_file() 210 *file_baton = fb; in add_file() 224 struct file_baton *fb = apr_palloc(pool, sizeof(*fb)); in open_file() local 236 &fb->wrapped_file_baton)); in open_file() 238 fb->edit_baton = eb; in open_file() 239 *file_baton = fb; in open_file() 251 struct file_baton *fb = file_baton; in apply_textdelta() local 252 struct edit_baton *eb = fb->edit_baton; in apply_textdelta() [all …]
|
| /NextBSD/sys/dev/fb/ |
| HD | creator_vt.c | 64 struct fb_info fb; member 143 sc->fb.fb_height = height; in creatorfb_init() 144 sc->fb.fb_width = width; in creatorfb_init() 145 sc->fb.fb_bpp = sc->fb.fb_depth = 32; in creatorfb_init() 146 sc->fb.fb_stride = 8192; /* Fixed */ in creatorfb_init() 147 sc->fb.fb_size = sc->fb.fb_height * sc->fb.fb_stride; in creatorfb_init() 152 sc->fb.fb_pbase = phys; in creatorfb_init() 156 vt_generate_cons_palette(sc->fb.fb_cmap, COLOR_FORMAT_RGB, in creatorfb_init() 158 sc->fb.fb_cmsize = 16; in creatorfb_init() 173 c = sc->fb.fb_cmap[color]; in creatorfb_blank() [all …]
|
| /NextBSD/contrib/subversion/subversion/libsvn_ra_serf/ |
| HD | get_file.c | 285 struct file_prop_baton_t *fb = baton; in get_file_prop_cb() local 293 fb->kind = svn_node_dir; in get_file_prop_cb() 295 fb->kind = svn_node_file; in get_file_prop_cb() 302 fb->sha1_checksum = apr_pstrdup(fb->result_pool, value->data); in get_file_prop_cb() 305 if (!fb->props) in get_file_prop_cb() 308 svn_name = svn_ra_serf__svnname_from_wirename(ns, name, fb->result_pool); in get_file_prop_cb() 311 svn_hash_sets(fb->props, svn_name, in get_file_prop_cb() 312 svn_string_dup(value, fb->result_pool)); in get_file_prop_cb() 330 struct file_prop_baton_t fb; in svn_ra_serf__get_file() local 359 fb.result_pool = pool; in svn_ra_serf__get_file() [all …]
|
| /NextBSD/contrib/subversion/subversion/libsvn_diff/ |
| HD | diff_tree.c | 601 struct filter_tree_baton_t *fb = processor->baton; in filter_dir_opened() local 603 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath); in filter_dir_opened() 612 SVN_ERR(fb->processor->dir_opened(new_dir_baton, skip, skip_children, in filter_dir_opened() 617 fb->processor, in filter_dir_opened() 632 struct filter_tree_baton_t *fb = processor->baton; in filter_dir_added() local 634 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath); in filter_dir_added() 637 SVN_ERR(fb->processor->dir_added(relpath, in filter_dir_added() 643 fb->processor, in filter_dir_added() 657 struct filter_tree_baton_t *fb = processor->baton; in filter_dir_deleted() local 659 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath); in filter_dir_deleted() [all …]
|
| /NextBSD/sys/dev/drm2/ |
| HD | drm_crtc_helper.c | 305 crtc->fb = NULL; in drm_helper_disable_unused_functions() 581 set->fb = NULL; in drm_crtc_helper_set_config() 583 if (set->fb) { in drm_crtc_helper_set_config() 585 set->crtc->base.id, set->fb->base.id, in drm_crtc_helper_set_config() 639 save_set.fb = set->crtc->fb; in drm_crtc_helper_set_config() 643 if (set->crtc->fb != set->fb) { in drm_crtc_helper_set_config() 645 if (set->crtc->fb == NULL) { in drm_crtc_helper_set_config() 648 } else if (set->fb == NULL) { in drm_crtc_helper_set_config() 650 } else if (set->fb->depth != set->crtc->fb->depth) { in drm_crtc_helper_set_config() 652 } else if (set->fb->bits_per_pixel != in drm_crtc_helper_set_config() [all …]
|
| HD | drm_crtc.c | 281 int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb, in drm_framebuffer_init() argument 286 refcount_init(&fb->refcount, 1); in drm_framebuffer_init() 288 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB); in drm_framebuffer_init() 292 fb->dev = dev; in drm_framebuffer_init() 293 fb->funcs = funcs; in drm_framebuffer_init() 295 list_add(&fb->head, &dev->mode_config.fb_list); in drm_framebuffer_init() 301 static void drm_framebuffer_free(struct drm_framebuffer *fb) in drm_framebuffer_free() argument 303 fb->funcs->destroy(fb); in drm_framebuffer_free() 312 void drm_framebuffer_unreference(struct drm_framebuffer *fb) in drm_framebuffer_unreference() argument 314 struct drm_device *dev = fb->dev; in drm_framebuffer_unreference() [all …]
|
| /NextBSD/contrib/subversion/subversion/svnsync/ |
| HD | sync.c | 365 node_baton_t *fb = apr_palloc(pool, sizeof(*fb)); in add_file() local 374 pool, &fb->wrapped_node_baton)); in add_file() 376 fb->edit_baton = eb; in add_file() 377 *file_baton = fb; in add_file() 391 node_baton_t *fb = apr_palloc(pool, sizeof(*fb)); in open_file() local 395 &fb->wrapped_node_baton)); in open_file() 397 fb->edit_baton = eb; in open_file() 398 *file_baton = fb; in open_file() 410 node_baton_t *fb = file_baton; in apply_textdelta() local 411 edit_baton_t *eb = fb->edit_baton; in apply_textdelta() [all …]
|
| /NextBSD/sys/netinet/ |
| HD | sctp_ss_functions.c | 534 strq->ss_params.fb.rounds = -1; in sctp_ss_fb_clear() 536 …TAILQ_REMOVE(&asoc->ss_data.out_wheel, TAILQ_FIRST(&asoc->ss_data.out_wheel), ss_params.fb.next_sp… in sctp_ss_fb_clear() 537 strq->ss_params.fb.next_spoke.tqe_next = NULL; in sctp_ss_fb_clear() 538 strq->ss_params.fb.next_spoke.tqe_prev = NULL; in sctp_ss_fb_clear() 550 strq->ss_params.fb.next_spoke.tqe_next = NULL; in sctp_ss_fb_init_stream() 551 strq->ss_params.fb.next_spoke.tqe_prev = NULL; in sctp_ss_fb_init_stream() 553 strq->ss_params.fb.rounds = with_strq->ss_params.fb.rounds; in sctp_ss_fb_init_stream() 555 strq->ss_params.fb.rounds = -1; in sctp_ss_fb_init_stream() 569 (strq->ss_params.fb.next_spoke.tqe_next == NULL) && in sctp_ss_fb_add() 570 (strq->ss_params.fb.next_spoke.tqe_prev == NULL)) { in sctp_ss_fb_add() [all …]
|
| /NextBSD/contrib/compiler-rt/lib/builtins/ |
| HD | fixunsxfdi.c | 36 long_double_bits fb; in __fixunsxfdi() local 37 fb.f = a; in __fixunsxfdi() 38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; in __fixunsxfdi() 39 if (e < 0 || (fb.u.high.s.low & 0x00008000)) in __fixunsxfdi() 43 return fb.u.low.all >> (63 - e); in __fixunsxfdi()
|
| HD | fixunsxfsi.c | 35 long_double_bits fb; in __fixunsxfsi() local 36 fb.f = a; in __fixunsxfsi() 37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; in __fixunsxfsi() 38 if (e < 0 || (fb.u.high.s.low & 0x00008000)) in __fixunsxfsi() 42 return fb.u.low.s.high >> (31 - e); in __fixunsxfsi()
|