Searched refs:dn (Results 51 - 75 of 257) sorted by relevance

1234567891011

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/sysdev/
H A Ddart_iommu.c301 struct device_node *dn; local
308 dn = pci_bus_to_OF_node(bus);
310 if (dn)
311 PCI_DN(dn)->iommu_table = &iommu_table_dart;
316 struct device_node *dn; local
319 dn = of_find_compatible_node(NULL, "dart", "u3-dart");
320 if (dn == NULL) {
321 dn = of_find_compatible_node(NULL, "dart", "u4-dart");
322 if (dn == NULL)
333 if (dart_init(dn)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Dpci_32.c131 struct device_node *dn; local
147 struct device_node* node = hose->dn;
153 dn = of_find_node_by_path("/");
154 map_prop = of_find_property(dn, "pci-OF-bus-map", NULL);
159 of_node_put(dn);
239 return of_node_get(hose->dn);
300 if (!hose || !hose->dn)
302 if (!scan_OF_pci_childs(hose->dn,
338 struct device_node *dn; local
343 dn
[all...]
H A Dibmebus.c143 struct device_node *dn = to_platform_device(dev)->dev.of_node; local
144 return (dn->full_name &&
145 (strcasecmp((char *)data, dn->full_name) == 0));
153 static int ibmebus_create_device(struct device_node *dn) argument
158 dev = of_device_alloc(dn, NULL, &ibmebus_bus_device);
257 struct device_node *dn = NULL; local
273 if ((dn = of_find_node_by_path(path))) {
274 rc = ibmebus_create_device(dn);
275 of_node_put(dn);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/cell/
H A Dinterrupt.c364 struct device_node *dn; local
370 for (dn = NULL;
371 (dn = of_find_node_by_name(dn,"interrupt-controller")) != NULL;) {
372 if (!of_device_is_compatible(dn,
375 np = of_get_property(dn, "ibm,interrupt-server-ranges", NULL);
378 of_node_put(dn);
381 if (of_address_to_resource(dn, 0, &r0) ||
382 of_address_to_resource(dn, 1, &r1)) {
384 of_node_put(dn);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/LDAP/smbldap-tools-0.9.2/
H A Dsmbldap-groupdel55 my $dn = get_dn_from_line($dn_line);
57 group_del($dn);
H A Dsmbldap-groupadd100 my $dn= $entry->dn;
101 chomp($dn);
102 warn "$dn\n";
H A Dsmbldap-populate171 my $entries="dn: $config{suffix}
175 dn: $config{usersdn} label
180 dn: $config{groupsdn} label
185 dn: $config{computersdn} label
244 dn: uid=$guestName,$config{usersdn} label
285 dn: cn=Domain Admins,$config{groupsdn} label
297 dn: cn=Domain Users,$config{groupsdn} label
308 dn: cn=Domain Guests,$config{groupsdn} label
319 dn: cn=Domain Computers,$config{groupsdn} label
330 dn label
375 dn: cn=Account Operators,$config{groupsdn} label
397 dn: cn=Print Operators,$config{groupsdn} label
408 dn: cn=Backup Operators,$config{groupsdn} label
419 dn: cn=Replicators,$config{groupsdn} label
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/caif/
H A Dcfutill.c88 caif_assert(layr->dn != NULL);
89 caif_assert(layr->dn->transmit != NULL);
103 ret = layr->dn->transmit(layr->dn, pkt);
H A Dcfveil.c85 caif_assert(layr->dn != NULL);
86 caif_assert(layr->dn->transmit != NULL);
98 ret = layr->dn->transmit(layr->dn, pkt);
H A Dcfdbgl.c39 return layr->dn->transmit(layr->dn, pkt);
H A Dcffrml.c55 void cffrml_set_dnlayer(struct cflayer *this, struct cflayer *dn) argument
57 this->dn = dn;
135 ret = layr->dn->transmit(layr->dn, pkt);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Dsmbldap_util.c40 pstring dn; local
52 pstr_sprintf(dn, "%s=%s,%s",
79 rc = smbldap_modify(ldap_state, dn, mods);
84 DEBUG(1,("add_new_domain_account_policies: failed to add account policies to dn= %s with: %s\n\t%s\n",
85 dn, ldap_err2string(rc),
110 pstring filter, dn; local
158 pstr_sprintf(dn, "%s=%s,%s",
208 rc = smbldap_add(ldap_state, dn, mods);
214 DEBUG(1,("add_new_domain_info: failed to add domain dn= %s with: %s\n\t%s\n",
215 dn, ldap_err2strin
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/include/asm/
H A Dpci-bridge.h74 struct device_node *dn; member in struct:pci_controller
214 #define PCI_DN(dn) ((struct pci_dn *) (dn)->data)
217 extern void * update_dn_pci_info(struct device_node *dn, void *data);
228 struct device_node *dn = dev->sysdata; local
229 struct pci_dn *pdn = dn->data;
232 return dn; /* fast path. sysdata is good */
255 extern struct pci_bus *pcibios_find_pci_bus(struct device_node *dn);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/pseries/
H A Deeh_cache.c180 struct device_node *dn; local
184 dn = pci_device_to_OF_node(dev);
185 if (!dn) {
186 printk(KERN_WARNING "PCI: no pci dn found for dev=%s\n", pci_name(dev));
191 pdn = PCI_DN(dn);
286 struct device_node *dn; local
294 dn = pci_device_to_OF_node(dev);
295 if (!dn)
298 PCI_DN(dn)->pcidev = dev;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ide/
H A Datiixp.c55 int timing_shift = (drive->dn ^ 1) * 8;
63 pio_mode_data &= ~(0x07 << (drive->dn * 4));
64 pio_mode_data |= (pio << (drive->dn * 4));
89 int timing_shift = (drive->dn ^ 1) * 8;
101 tmp16 &= ~(0x07 << (drive->dn * 4));
102 tmp16 |= ((speed & 0x07) << (drive->dn * 4));
105 udma_ctl |= (1 << drive->dn);
115 udma_ctl &= ~(1 << drive->dn);
H A Daec62xx.c96 /* 0x40|(2*drive->dn): Active, 0x41|(2*drive->dn): Recovery */
97 pci_read_config_word(dev, 0x40|(2*drive->dn), &d_conf);
100 pci_write_config_word(dev, 0x40|(2*drive->dn), d_conf);
105 tmp1 = ((0x00 << (2*drive->dn)) | (ultra & ~(3 << (2*drive->dn))));
107 tmp2 = ((ultra_conf << (2*drive->dn)) | (tmp1 & ~(3 << (2*drive->dn))));
117 u8 unit = drive->dn & 1;
125 pci_read_config_byte(dev, 0x40|drive->dn,
[all...]
H A Dcs5520.c63 int controller = drive->dn > 1 ? 1 : 0;
74 pci_write_config_byte(pdev, 0x64 + 4*controller + (drive->dn&1),
78 pci_write_config_byte(pdev, 0x66 + 4*controller + (drive->dn&1),
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/caif/
H A Dcaif_layer.h120 * @dn: Pointer down to the layer below.
150 * layer->dn->transmit(layer->dn, info, packet);
154 struct cflayer *dn; member in struct:cflayer
186 * layer using dn->transmit().
189 * to thecaller. The caller of "dn->transmit()" must
245 #define layer_set_dn(layr, below) ((layr)->dn = (struct cflayer *)(below))
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/modutils/
H A Dlsmod.c81 char *module_names, *mn, *deps, *dn; local
126 for (j = 0, dn = deps; j < count; dn += strlen(dn) + 1, j++) {
127 printf("%s%s", dn, (j==count-1)? "":" ");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/utils/
H A Dnet_idmap.c205 const char *dn; local
242 dn = lp_parm_const_string(-1, opt, "ldap_user_dn", NULL);
243 if ( ! dn) {
249 ret = idmap_store_secret("ldap", false, domain, dn, secret);
251 dn = lp_parm_const_string(-1, "idmap alloc config", "ldap_user_dn", NULL);
252 if ( ! dn) {
258 ret = idmap_store_secret("ldap", true, NULL, dn, secret);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/arm/
H A Drgb2yuv_neon_common.S239 CO_RY .dn d0.s16[0]
240 CO_RU .dn d0.s16[1]
241 CO_RV .dn d0.s16[2]
244 CO_GY .dn d1.s16[0]
245 CO_GU .dn d1.s16[1]
246 CO_GV .dn d1.s16[2]
249 CO_BY .dn d2.s16[0]
250 CO_BU .dn d2.s16[1]
251 CO_BV .dn d2.s16[2]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ata/
H A Dpata_artop.c118 int dn = adev->devno + 2 * ap->port_no; local
125 pci_write_config_word(pdev, 0x40 + 2 * dn, timing[clock][pio]);
145 int dn = adev->devno + 2 * ap->port_no; local
152 ultra &= ~(3 << (2 * dn));
172 int dn = adev->devno + 2 * ap->port_no; local
179 pci_write_config_byte(pdev, 0x40 + dn, timing[clock][pio]);
224 int dn = adev->devno + 2 * ap->port_no; local
236 ultra &= ~(3 << (2 * dn));
243 ultra |= (mode << (2 * dn));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/openvpn/
H A Dpkcs11_openssl.c130 char *dn = NULL; local
138 dn = x509_get_subject (x509, gc);
147 return dn;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/serial/
H A Dnwpserial.c343 struct device_node *dn; local
347 dn = port->dev->of_node;
348 if (dn == NULL)
352 dcr_base = dcr_resource_start(dn, 0);
399 dcr_len = dcr_resource_len(dn, 0);
401 up->dcr_host = dcr_map(dn, dcr_base, dcr_len);
435 struct device_node *dn; local
455 dn = of_find_node_by_path(name);
456 if (!dn)
464 dcr_base = dcr_resource_start(dn,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/vfp/
H A Dvfpdouble.c851 vfp_double_multiply_accumulate(int dd, int dn, int dm, u32 fpscr, u32 negate, char *func) argument
856 vfp_double_unpack(&vdn, vfp_get_double(dn));
884 static u32 vfp_double_fmac(int dd, int dn, int dm, u32 fpscr) argument
886 return vfp_double_multiply_accumulate(dd, dn, dm, fpscr, 0, "fmac");
892 static u32 vfp_double_fnmac(int dd, int dn, int dm, u32 fpscr) argument
894 return vfp_double_multiply_accumulate(dd, dn, dm, fpscr, NEG_MULTIPLY, "fnmac");
900 static u32 vfp_double_fmsc(int dd, int dn, int dm, u32 fpscr) argument
902 return vfp_double_multiply_accumulate(dd, dn, dm, fpscr, NEG_SUBTRACT, "fmsc");
908 static u32 vfp_double_fnmsc(int dd, int dn, int dm, u32 fpscr) argument
910 return vfp_double_multiply_accumulate(dd, dn, d
916 vfp_double_fmul(int dd, int dn, int dm, u32 fpscr) argument
936 vfp_double_fnmul(int dd, int dn, int dm, u32 fpscr) argument
958 vfp_double_fadd(int dd, int dn, int dm, u32 fpscr) argument
979 vfp_double_fsub(int dd, int dn, int dm, u32 fpscr) argument
1005 vfp_double_fdiv(int dd, int dn, int dm, u32 fpscr) argument
1130 unsigned int dn = vfp_get_dn(inst); local
[all...]

Completed in 209 milliseconds

1234567891011