Searched refs:resinfo (Results 1 – 5 of 5) sorted by relevance
| /freebsd-9-stable/contrib/pnpinfo/ |
| D | pnpinfo.c | 81 int handle_small_res __P((u_char *resinfo, int item, int len)); 82 void handle_large_res __P((u_char *resinfo, int item, int len)); 298 handle_small_res(u_char *resinfo, int item, int len) in handle_small_res() argument 310 resinfo[0] >> 4, resinfo[0] & (0xf), resinfo[1]); in handle_small_res() 314 ((resinfo[0] & 0x7c) >> 2) + 64, in handle_small_res() 315 (((resinfo[0] & 0x03) << 3) | in handle_small_res() 316 ((resinfo[1] & 0xe0) >> 5)) + 64, in handle_small_res() 317 (resinfo[1] & 0x1f) + 64, in handle_small_res() 318 resinfo[2], resinfo[3], *(int *)(resinfo), in handle_small_res() 321 if (resinfo[4] & 0x1) in handle_small_res() [all …]
|
| /freebsd-9-stable/contrib/binutils/binutils/ |
| D | resrc.c | 646 define_accelerator (rc_res_id id, const rc_res_res_info *resinfo, in define_accelerator() argument 652 resinfo->language, 0); in define_accelerator() 655 r->res_info = *resinfo; in define_accelerator() 665 define_bitmap (rc_res_id id, const rc_res_res_info *resinfo, in define_bitmap() argument 692 resinfo->language, 0); in define_bitmap() 697 r->res_info = *resinfo; in define_bitmap() 707 define_cursor (rc_res_id id, const rc_res_res_info *resinfo, in define_cursor() argument 780 resinfo->language, 0); in define_cursor() 783 r->res_info = *resinfo; in define_cursor() 816 resinfo->language, 0); in define_cursor() [all …]
|
| D | resres.c | 173 rc_res_res_info resinfo; in read_resource_entry() local 196 resinfo.version = windres_get_32 (wrbfd, l.version, 4); in read_resource_entry() 197 resinfo.memflags = windres_get_16 (wrbfd, l.memflags, 2); in read_resource_entry() 198 resinfo.language = windres_get_16 (wrbfd, l.language, 2); in read_resource_entry() 200 resinfo.characteristics = windres_get_32 (wrbfd, l.characteristics, 4); in read_resource_entry() 210 r->res_info = resinfo; in read_resource_entry() 212 res_add_resource (r, &type, &name, resinfo.language, 0); in read_resource_entry() 379 const rc_res_res_info *resinfo) in write_res_bin() argument 387 off = write_res_header (wrbfd, off, datasize, type, name, resinfo); in write_res_bin() 406 const rc_res_res_info *resinfo) in write_res_header() argument [all …]
|
| /freebsd-9-stable/sys/boot/common/ |
| D | isapnp.c | 162 u_char tag, resinfo[8]; in isapnp_scan_resdata() local 175 if (isapnp_get_resource_info(resinfo, PNP_SRES_LEN(tag))) in isapnp_scan_resdata() 177 pnp_addident(pi, pnp_eisaformat(resinfo)); in isapnp_scan_resdata() 191 if (isapnp_get_resource_info(resinfo, 2)) in isapnp_scan_resdata() 194 large_len = resinfo[1]; in isapnp_scan_resdata() 195 large_len = (large_len << 8) + resinfo[0]; in isapnp_scan_resdata()
|
| /freebsd-9-stable/sys/isa/ |
| D | pnp.c | 419 u_char tag, *resp, *resinfo, *startres = 0; in pnp_create_devices() local 445 resinfo = resp; in pnp_create_devices() 461 bcopy(resinfo, buf, large_len); in pnp_create_devices() 481 resinfo = resp; in pnp_create_devices() 493 resinfo - startres - 1, ldn); in pnp_create_devices() 502 bcopy(resinfo, &logical_id, 4); in pnp_create_devices() 538 resinfo - startres - 1, ldn); in pnp_create_devices()
|