HomeSort by: relevance | last modified time | path
    Searched refs:devices (Results 1 - 25 of 133) sorted by relevancy

1 2 3 4 5 6

  /src/sys/arch/hp300/dev/
devlist2h.awk 67 devices[ndevices, 1] = $2 # nickname
68 devices[ndevices, 2] = $3 # dio primary id
69 devices[ndevices, 3] = "0" # dio secondary id
70 devices[ndevices, 4] = $4 # number of select codes
79 printf("\n#define\tDIO_DEVICE_ID_%s\t%s\n", devices[ndevices, 1], \
80 devices[ndevices, 2]) > hfile
83 printf("#define\tDIO_DEVICE_DESC_%s\t\"", devices[ndevices, 1]) \
101 devices[ndevices, 1] = $2 # nickname
102 devices[ndevices, 2] = fbid # dio primary id
103 devices[ndevices, 3] = $3 # dio secondary i
    [all...]
  /src/sys/dev/tc/
devlist2h.awk 65 devices[ndevices, 0] = $2; # devices id
66 devices[ndevices, 1] = $2; # C identifier for device
67 gsub("-", "_", devices[ndevices, 1]);
69 devices[ndevices, 2] = $3; # driver name
72 printf("#define\tTC_DEVICE_%s\t\"%s\"\n", devices[ndevices, 1],
73 devices[ndevices, 2]) > hfile
75 printf("#define\tTC_DESCRIPTION_%s\t\"", devices[ndevices, 1]) > hfile
99 devices[ndevices, i] = $f
100 printf("%s", devices[ndevices, i]) > hfil
    [all...]
  /src/external/gpl2/groff/
Makefile 5 SUBDIR= lib .WAIT bin doc font man tmac devices
  /src/external/gpl2/groff/dist/
test-groff.in 18 $builddir/devices/grops$SEP\
19 $builddir/devices/grodvi$SEP\
20 $builddir/devices/grotty$SEP\
21 $builddir/devices/grolj4$SEP\
22 $builddir/devices/grolbp$SEP\
23 $builddir/devices/grohtml$SEP\
24 $builddir/devices/xditview
26 XENVIRONMENT=$srcdir/src/devices/xditview/GXditview.ad
  /src/share/examples/refuse/dmesgfs/
dmesgfs.c 61 static devices_t devices; variable
203 for (i = 0 ; i < devices.c ; i++) {
204 if (strncmp(devices.v[i].dev, s, len) == 0 &&
205 devices.v[i].devlen == len) {
207 devices.v[i].dir = 1;
222 ALLOC(devicenode_t, devices.v, devices.size, devices.c, 10, 10, "add_dev", exit(EXIT_FAILURE));
223 devices.v[devices.c].dev = strnsave(dev, len)
    [all...]
  /src/etc/rc.d/
raidframe 19 # Configure non-auto-configured raid devices.
23 devices=$(sysctl -n hw.disknames)
43 case " ${devices} " in
48 devices="${devices} ${dev}"
  /src/external/gpl2/groff/devices/grodvi/
Makefile 3 # $FreeBSD: src/gnu/usr.bin/groff/src/devices/grodvi/Makefile,v 1.4 2003/05/01 13:22:18 ru Exp $
5 DIST_SUBDIR= src/devices/grodvi
  /src/external/gpl2/groff/devices/grolbp/
Makefile 3 # $FreeBSD: src/gnu/usr.bin/groff/src/devices/grolbp/Makefile,v 1.4 2003/05/01 13:22:18 ru Exp $
5 DIST_SUBDIR= src/devices/grolbp
  /src/external/gpl2/groff/devices/grotty/
Makefile 3 # $FreeBSD: src/gnu/usr.bin/groff/src/devices/grotty/Makefile,v 1.4 2003/05/01 13:22:19 ru Exp $
5 DIST_SUBDIR= src/devices/grotty
  /src/crypto/external/bsd/openssh/dist/
auth2-chall.c 69 KbdintDevice *devices[] = { variable
86 char *devices; member in struct:KbdintAuthctxt
100 for (i = 0; devices[i] != NULL; i++)
101 if (strcmp(devices[i]->name, xdevname) == 0) {
102 for (j = i; devices[j] != NULL; j++)
103 devices[j] = devices[j+1];
125 for (i = 0; devices[i]; i++) {
127 sshbuf_len(b) ? "," : "", devices[i]->name)) != 0)
130 if ((kbdintctxt->devices = sshbuf_dup_string(b)) == NULL
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/lib/
cl_util.c 159 cl_device_id *devices; local
184 /* Determine number of devices. */
186 printf ("\n number of OpenCL Devices available: %d\n", device_count);
187 /* Get devices. */
188 devices = (cl_device_id*) malloc (sizeof (cl_device_id) * device_count);
189 if (devices == NULL)
194 clGetDeviceIDs (platforms[i], CL_DEVICE_TYPE_ALL, device_count, devices,
197 /* Querying devices. */
214 clGetDeviceInfo (devices[j], PARM, 0, NULL, &len); \
216 clGetDeviceInfo (devices[j], PARM, len, s, NULL);
425 cl_device_id *devices; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/lib/
cl_util.c 159 cl_device_id *devices; local
184 /* Determine number of devices. */
186 printf ("\n number of OpenCL Devices available: %d\n", device_count);
187 /* Get devices. */
188 devices = (cl_device_id*) malloc (sizeof (cl_device_id) * device_count);
189 if (devices == NULL)
194 clGetDeviceIDs (platforms[i], CL_DEVICE_TYPE_ALL, device_count, devices,
197 /* Querying devices. */
214 clGetDeviceInfo (devices[j], PARM, 0, NULL, &len); \
216 clGetDeviceInfo (devices[j], PARM, len, s, NULL);
425 cl_device_id *devices; local
    [all...]
  /src/external/gpl2/lvm2/dist/lib/filters/
filter-persistent.c 31 struct dm_hash_table *devices; member in struct:pfilter
45 if (pf->devices)
46 dm_hash_destroy(pf->devices);
48 if (!(pf->devices = dm_hash_create(128)))
58 log_verbose("Wiping cache of LVM-capable devices");
59 dm_hash_wipe(pf->devices);
81 * devices as we go.
85 log_verbose("Devices array contains a value "
90 if (!dm_hash_insert(pf->devices, cv->v.str, data))
122 /* We don't gain anything by holding invalid devices */
    [all...]
  /src/external/bsd/pam-u2f/dist/
util.h 59 device_t *devices, unsigned *n_devs);
60 void free_devices(device_t *devices, const unsigned n_devs);
62 int do_authentication(const cfg_t *cfg, const device_t *devices,
64 int do_manual_authentication(const cfg_t *cfg, const device_t *devices,
  /src/external/gpl2/groff/devices/grolj4/
Makefile 3 # $FreeBSD: src/gnu/usr.bin/groff/src/devices/grolj4/Makefile,v 1.4 2003/05/01 13:22:18 ru Exp $
5 DIST_SUBDIR= src/devices/grolj4
  /src/external/gpl2/groff/devices/grops/
Makefile 3 # $FreeBSD: src/gnu/usr.bin/groff/src/devices/grops/Makefile,v 1.4 2003/05/01 13:22:19 ru Exp $
5 DIST_SUBDIR= src/devices/grops
  /src/external/gpl2/groff/devices/grohtml/
Makefile 3 # $FreeBSD: src/gnu/usr.bin/groff/src/devices/grohtml/Makefile,v 1.5 2003/05/01 13:22:18 ru Exp $
5 DIST_SUBDIR= src/devices/grohtml
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_encoders.c 4 * Copyright 2007-8 Advanced Micro Devices, Inc.
56 if (amdgpu_encoder->devices & amdgpu_connector->devices) {
58 if (amdgpu_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
79 amdgpu_encoder->active_device = amdgpu_encoder->devices & amdgpu_connector->devices;
81 amdgpu_encoder->active_device, amdgpu_encoder->devices,
82 amdgpu_connector->devices, encoder->encoder_type);
100 if (amdgpu_encoder->active_device & amdgpu_connector->devices) {
121 if (amdgpu_encoder->devices & amdgpu_connector->devices)
    [all...]
  /src/sys/arch/mvme68k/dev/
mainbus.c 162 struct mainbus_devices *devices; local
173 devices = mainbusdevs_147;
182 devices = mainbusdevs_1x7;
190 for (i = 0; devices[i].md_name != NULL; ++i) {
199 if (devices[i].md_offset == MAINBUS_VMETWO_OFFSET
210 ma.ma_name = devices[i].md_name;
213 ma.ma_offset = devices[i].md_offset + intiobase_phys;
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_encoders.c 4 * Copyright 2007-8 Advanced Micro Devices, Inc.
62 if (radeon_encoder->devices & ATOM_DEVICE_LCD_SUPPORT)
65 if (radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT)
75 if (radeon_clone->devices & (ATOM_DEVICE_LCD_SUPPORT))
77 if (radeon_clone->devices & ATOM_DEVICE_DFP2_SUPPORT)
177 if (!(radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)))
222 if (radeon_encoder->devices & radeon_connector->devices) {
224 if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
240 radeon_encoder->active_device = radeon_encoder->devices & radeon_connector->devices
    [all...]
  /src/external/gpl2/lvm2/dist/test/
t-mirror-names.sh 26 local devices=$*
32 (echo $devices | grep -q $d) || return 1
33 devices=$(echo $devices | sed "s/$d//")
36 [ "$(echo $devices | sed 's/ //g')" = "" ]
69 lvs -a -o+devices $vg
t-mirror-lvconvert-usage.sh 67 lvs -a -o+devices $vg
89 lvs -a -o+devices
92 lvs -a -o+devices
  /src/usr.sbin/envstat/
config_yacc.y 68 main : devices
72 devices : device label
73 | devices device
  /src/sys/arch/mips/alchemy/include/
auvar.h 85 struct au_dev *devices; member in struct:au_chipdep
  /src/share/examples/devpubd/hooks/
99-ugen-perms-minipro 15 devices=$@
41 # The XGecu-branded TL866II+ devices have:
140 for device in $devices; do

Completed in 99 milliseconds

1 2 3 4 5 6