Searched refs:pmap (Results 1 - 11 of 11) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/hardware/eicon/
H A Ddiva_dma.c42 diva_dma_map_entry_t* pmap = diva_os_malloc(0, sizeof(*pmap)*(nentries+1)); local
43 if (pmap)
44 memset (pmap, 0, sizeof(*pmap)*(nentries+1));
45 return pmap;
50 void diva_free_dma_mapping (struct _diva_dma_map_entry* pmap) { argument
51 if (pmap) {
52 diva_os_free (0, pmap);
58 void diva_init_dma_map_entry (struct _diva_dma_map_entry* pmap, argument
68 diva_alloc_dma_map_entry(struct _diva_dma_map_entry* pmap) argument
81 diva_free_dma_map_entry(struct _diva_dma_map_entry* pmap, int nr) argument
87 diva_get_dma_map_entry(struct _diva_dma_map_entry* pmap, int nr, void** pvirt, dword* pphys) argument
92 diva_get_entry_handle(struct _diva_dma_map_entry* pmap, int nr) argument
[all...]
H A Ddiva_dma.h30 void diva_init_dma_map_entry (struct _diva_dma_map_entry* pmap,
33 int diva_alloc_dma_map_entry (struct _diva_dma_map_entry* pmap);
34 void diva_free_dma_map_entry (struct _diva_dma_map_entry* pmap, int entry);
35 void diva_get_dma_map_entry (struct _diva_dma_map_entry* pmap, int nr,
37 void diva_free_dma_mapping (struct _diva_dma_map_entry* pmap);
46 struct _diva_dma_map_entry* pmap);
47 void* diva_get_entry_handle (struct _diva_dma_map_entry* pmap, int nr);
H A Ddivasmain.c354 struct _diva_dma_map_entry *pmap = local
357 if (pmap) {
371 diva_init_dma_map_entry(pmap, i, cpu_addr,
380 *ppmap = pmap;
387 void diva_free_dma_map(void *hdev, struct _diva_dma_map_entry *pmap) argument
396 for (i = 0; (pmap != 0); i++) {
397 diva_get_dma_map_entry(pmap, i, &cpu_addr, &phys_addr);
401 addr_handle = diva_get_entry_handle(pmap, i);
410 diva_free_dma_mapping(pmap);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509v3/
H A Dv3_pmaps.c99 POLICY_MAPPING *pmap;
104 pmap = sk_POLICY_MAPPING_value(pmaps, i);
105 i2t_ASN1_OBJECT(obj_tmp1, 80, pmap->issuerDomainPolicy);
106 i2t_ASN1_OBJECT(obj_tmp2, 80, pmap->subjectDomainPolicy);
116 POLICY_MAPPING *pmap;
142 pmap = POLICY_MAPPING_new();
143 if (!pmap) {
148 pmap->issuerDomainPolicy = obj1;
149 pmap->subjectDomainPolicy = obj2;
150 sk_POLICY_MAPPING_push(pmaps, pmap);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/util-linux/
H A Dmount.c676 static struct pmap *
683 struct pmaplist *pmap; local
684 static struct pmap p = {0, 0, 0, 0};
689 pmap = pmap_getmaps(server_addr);
700 while (pmap) {
701 if (pmap->pml_map.pm_prog != prog)
703 if (!version && p.pm_vers > pmap->pml_map.pm_vers)
705 if (version > 2 && pmap->pml_map.pm_vers != version)
707 if (version && version <= 2 && pmap->pml_map.pm_vers > 2)
709 if (pmap
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jfs/
H A Djfs_imap.h88 __le32 pmap[EXTSPERIAG]; /* 512: persistent allocation map */ member in struct:iag
H A Djfs_dmap.h167 __le32 pmap[LPERDMAP]; /* 1024: bits of the persistent map */ member in struct:dmap
H A Djfs_dmap.c498 dp->pmap[word] &=
501 dp->pmap[word] |=
517 memset(&dp->pmap[word], 0,
520 memset(&dp->pmap[word], (int) ONES,
3666 memset(&dp->pmap[0], 0, LPERDMAP * 4);
3694 dp->pmap[w] &= cpu_to_le32(~(ONES << (DBWORD - nb)
3703 memset(&dp->pmap[w], 0, nw * 4);
3726 dp->wmap[w] = dp->pmap[w] = cpu_to_le32(ONES >> b);
3732 dp->pmap[i] = dp->wmap[i] = cpu_to_le32(ONES);
H A Djfs_imap.c1212 if (iagp->pmap[extno] != 0) {
1213 jfs_error(ip->i_sb, "diFree: the pmap does not show inode free");
2089 if (((le32_to_cpu(iagp->pmap[extno]) & mask) != 0) ||
2378 iagp->pmap[extno] = 0;
2810 if (!(le32_to_cpu(iagp->pmap[extno]) & mask)) {
2813 "allocated in pmap!", inum);
2816 iagp->pmap[extno] &= cpu_to_le32(~mask);
2832 if ((le32_to_cpu(iagp->pmap[extno]) & mask) != 0) {
2840 iagp->pmap[extno] |= cpu_to_le32(mask);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/qla2xxx/
H A Dqla_mbx.c1966 char *pmap; local
1969 pmap = dma_pool_alloc(ha->s_dma_pool, GFP_ATOMIC, &pmap_dma);
1970 if (pmap == NULL) {
1975 memset(pmap, 0, FCAL_MAP_SIZE);
1992 mcp->mb[1], (unsigned)pmap[0]));
1993 DEBUG11(qla2x00_dump_buffer(pmap, pmap[0] + 1));
1996 memcpy(pos_map, pmap, FCAL_MAP_SIZE);
1998 dma_pool_free(ha->s_dma_pool, pmap, pmap_dma);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/
H A Dppp_generic.c2972 static int cardmap_set(struct cardmap **pmap, unsigned int nr, void *ptr) argument
2977 p = *pmap;
2992 *pmap = p;
3044 static void cardmap_destroy(struct cardmap **pmap) argument
3049 for (p = *pmap; p != NULL; p = np) {
3063 *pmap = NULL;

Completed in 200 milliseconds