HomeSort by: relevance | last modified time | path
    Searched defs:type (Results 1 - 25 of 1027) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/distrib/amiga/floppies/inst-common/
mtree.conf 3 /set type=dir uname=root gname=wheel mode=0755 key
  /src/distrib/evbsh3/rom/ramdiskcommon/
mtree.conf 3 /set type=dir uname=root gname=wheel mode=0755 key
  /src/distrib/sun2/ramdisk/
mtree.conf 5 /set type=dir uname=root gname=wheel mode=0755 key
  /src/distrib/sun3/ramdisk/
mtree.conf 5 /set type=dir uname=root gname=wheel mode=0755 key
  /src/distrib/vax/inst-common/
mtree.conf 3 /set type=dir uname=root gname=wheel mode=0755 key
  /src/distrib/sun2/miniroot/
mtree.conf 4 /set type=dir uname=root gname=wheel mode=0755 key
  /src/distrib/sun3/miniroot/
mtree.conf 4 /set type=dir uname=root gname=wheel mode=0755 key
  /src/sys/dev/ir/
ir.c 47 const char *type = ""; local in function:ir_print
52 type = "irframe";
55 type = "cir";
58 aprint_normal("%s at %s", type, pnp);
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gemfs.c 21 struct file_system_type *type; local in function:i915_gemfs_init
24 type = get_fs_type("tmpfs");
25 if (!type)
37 gemfs = kern_mount(type);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/
nouveau_nvkm_subdev_fb_ramnv10.c 37 enum nvkm_ram_type type; local in function:nv10_ram_new
40 type = NVKM_RAM_TYPE_DDR1;
42 type = NVKM_RAM_TYPE_SDRAM;
44 return nvkm_ram_new_(&nv04_ram_func, fb, type, size, pram);
nouveau_nvkm_subdev_fb_ramnv44.c 37 enum nvkm_ram_type type = NVKM_RAM_TYPE_UNKNOWN; local in function:nv44_ram_new
40 type = NVKM_RAM_TYPE_GDDR3;
42 type = NVKM_RAM_TYPE_DDR2;
44 type = NVKM_RAM_TYPE_DDR1;
46 return nv40_ram_new_(fb, type, size, pram);
nouveau_nvkm_subdev_fb_ramnv04.c 42 enum nvkm_ram_type type; local in function:nv04_ram_new
65 type = NVKM_RAM_TYPE_SGRAM;
67 type = NVKM_RAM_TYPE_SDRAM;
69 return nvkm_ram_new_(&nv04_ram_func, fb, type, size, pram);
nouveau_nvkm_subdev_fb_ramnv20.c 37 enum nvkm_ram_type type = NVKM_RAM_TYPE_UNKNOWN; local in function:nv20_ram_new
41 case 0x00000000: type = NVKM_RAM_TYPE_SDRAM; break;
42 case 0x00000100: type = NVKM_RAM_TYPE_DDR1 ; break;
43 case 0x00000200: type = NVKM_RAM_TYPE_GDDR3; break;
44 case 0x00000300: type = NVKM_RAM_TYPE_GDDR2; break;
47 ret = nvkm_ram_new_(&nv04_ram_func, fb, type, size, pram);
nouveau_nvkm_subdev_fb_ramnv41.c 37 enum nvkm_ram_type type = NVKM_RAM_TYPE_UNKNOWN; local in function:nv41_ram_new
41 type = NVKM_RAM_TYPE_GDDR3;
43 type = NVKM_RAM_TYPE_DDR2;
45 type = NVKM_RAM_TYPE_DDR1;
47 ret = nv40_ram_new_(fb, type, size, pram);
nouveau_nvkm_subdev_fb_ramnv49.c 37 enum nvkm_ram_type type = NVKM_RAM_TYPE_UNKNOWN; local in function:nv49_ram_new
41 case 0x00000000: type = NVKM_RAM_TYPE_DDR1 ; break;
42 case 0x00000001: type = NVKM_RAM_TYPE_DDR2 ; break;
43 case 0x00000002: type = NVKM_RAM_TYPE_GDDR3; break;
47 ret = nv40_ram_new_(fb, type, size, pram);
  /src/sys/arch/shark/ofw/
com_ofisa_machdep.c 57 char type[8]; local in function:com_ofisa_md_match
63 /* match type and name properties */
64 /* At a minimum, must match type and name properties. */
66 type, sizeof(type)) > 0 &&
67 strcmp(type, "serial") == 0 &&
lpt_ofisa_machdep.c 59 char type[9]; local in function:lpt_ofisa_md_match
65 /* match type and name properties */
67 type, sizeof(type)) > 0 &&
68 strcmp(type, "parallel") == 0 &&
ofisa_machdep.c 80 char type[8]; local in function:ofisa_md_match
86 /* match type and name properties */
87 if (OF_getprop(oba->oba_phandle, "device_type", type,
88 sizeof(type)) > 0 &&
89 strcmp(type, "isa") == 0 &&
ofisascr.c 67 char type[64]; local in function:ofisascrprobe
70 /* At a minimum, must match type and name properties. */
71 if ( OF_getprop(oba->oba_phandle, "device_type", type,
72 sizeof(type)) < 0 || strcmp(type, "ISO7816") != 0 ||
wdc_ofisa_machdep.c 57 char type[8]; local in function:wdc_ofisa_md_match
63 /* match type and name properties */
65 type, sizeof(type)) > 0 &&
66 strcmp(type, "ide") == 0 &&
  /src/sys/compat/freebsd/
freebsd_file.c 61 convert_from_freebsd_mount_type(int type)
86 if (type < 0 || type >= ARRAY_LENGTH(netbsd_mount_type))
88 return (netbsd_mount_type[type]);
95 syscallarg(int) type;
100 const char *type; local in function:freebsd_sys_mount
103 if ((type = convert_from_freebsd_mount_type(SCARG(uap, type))) == NULL)
106 return do_sys_mount(l, type, UIO_SYSSPACE, SCARG(uap, path),
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
mem.h 9 u8 type; member in struct:nvif_mem
15 int nvif_mem_init_type(struct nvif_mmu *mmu, s32 oclass, int type, u8 page,
17 int nvif_mem_init(struct nvif_mmu *mmu, s32 oclass, u8 type, u8 page,
21 int nvif_mem_init_map(struct nvif_mmu *, u8 type, u64 size, struct nvif_mem *);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
M0205.h 17 u8 type; member in struct:nvbios_M0205E
image.h 9 u8 type; member in struct:nvbios_image
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/
nouveau_nvkm_subdev_mmu_vmmtu102.c 36 u32 type = depth << 24; /*XXX: not confirmed */ local in function:tu102_vmm_flush
38 type = 0x00000001; /* PAGE_ALL */
40 type |= 0x00000004; /* HUB_ONLY */
47 nvkm_wr32(device, 0xb830b0, 0x80000000 | type);

Completed in 65 milliseconds

1 2 3 4 5 6 7 8 91011>>