Searched refs:mem (Results 26 - 50 of 204) sorted by relevance

123456789

/illumos-gate/usr/src/cmd/picl/plugins/sun4u/lw2plus/frutree/
H A Dsystem-board.info66 NODE mem-slot location
71 NODE mem-slot location
76 NODE mem-slot location
81 NODE mem-slot location
86 NODE mem-slot location
91 NODE mem-slot location
96 NODE mem-slot location
101 NODE mem-slot location
172 name:/frutree/chassis/system-board/mem-slot?Label=J0407
173 REFNODE mem
[all...]
/illumos-gate/usr/src/cmd/lvm/rpc.metamedd/
H A Dmed_mem.c51 void *mem; local
53 if ((mem = malloc(s)) == NULL) {
57 return (mem);
/illumos-gate/usr/src/cmd/lvm/rpc.metamhd/
H A Dmhd_mem.c45 void *mem; local
47 if ((mem = malloc(s)) == NULL) {
51 return (mem);
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dmeta_mem.c71 void *mem; local
73 mem = debug_malloc(file, line, s);
74 if (mem == NULL) {
78 return (mem);
88 void *mem; local
90 if ((mem = malloc(s)) == NULL) {
94 return (mem);
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/enchilada/frutree/
H A Dsystem-board.info70 NODE mem-slot location
75 NODE mem-slot location
80 NODE mem-slot location
85 NODE mem-slot location
90 NODE mem-slot location
95 NODE mem-slot location
100 NODE mem-slot location
105 NODE mem-slot location
131 name:/frutree/chassis/MB/system-board/mem-slot?Label=DIMM0
132 REFNODE mem
[all...]
/illumos-gate/usr/src/tools/mbh_patch/
H A Dmbh_patch.c59 int ndx, mem; local
90 for (mem = 0; mem < 8192 - sizeof (multiboot_header_t); mem += 4) {
91 mbh = ELFSEEK(mem);
96 if (mem >= 8192 - sizeof (multiboot_header_t)) {
126 if ((mem < phdr->p_offset) ||
127 (mem >= (phdr->p_offset + phdr->p_filesz))) {
144 mbh->header_addr = mbh->load_addr + mem;
/illumos-gate/usr/src/cmd/sgs/libelf/common/
H A Dar.c274 register char *mem; local
289 mem = (char *)a + sizeof (struct ar_hdr);
291 if ((end - mem < n) || (a->ar_name[0] != '/') ||
296 hdr = mem + sz;
298 elf->ed_arsym = mem;
305 if (_elf_vm(elf, (size_t)(mem - elf->ed_ident),
314 (void) memcpy(nmem, mem, sz);
316 mem = nmem;
319 elf->ed_arstr = mem;
323 if (*mem
[all...]
/illumos-gate/usr/src/cmd/getdevpolicy/
H A Dgetdevpolicy.c80 char *mem = NULL; local
85 if (modctl(MODGETDEVPOLICY, &nitems, sz, mem) == 0 || errno != ENOMEM)
88 mem = malloc(nitems * sz);
89 if (mem == NULL)
92 if (modctl(MODGETDEVPOLICY, &nitems, sz, mem) != 0)
97 ds = (devplcysys_t *)(mem + i * sz);
/illumos-gate/usr/src/lib/fm/topo/modules/sun4v/platform-mem/
H A Dmem_mdesc.c50 md_mem_info_t *mem)
86 dm->dm_next = mem->mem_dm;
87 mem->mem_dm = dm;
98 for (d = mem->mem_dm; d != NULL; d = d->dm_next) {
140 seg->sm_next = mem->mem_seg;
141 mem->mem_seg = seg;
147 mem->mem_group = mg;
162 bm->bm_next = mem->mem_bank;
163 mem->mem_bank = bm;
166 for (d = mem
49 mdesc_init_n1(topo_mod_t *mod, md_t *mdp, mde_cookie_t *listp, md_mem_info_t *mem) argument
190 mem_get_dimm_by_sn(char *sn, md_mem_info_t *mem) argument
202 find_grp(mde_cookie_t *listp, size_t n, mde_cookie_t *bclist, mem_bank_map_t **banklist, size_t mem_bank_count, md_mem_info_t *mem) argument
233 create_grp(topo_mod_t *mod, mde_cookie_t *listp, size_t n, mde_cookie_t *bclist, mem_bank_map_t **banklist, size_t mem_bank_count, md_mem_info_t *mem) argument
256 mdesc_init_n2(topo_mod_t *mod, md_t *mdp, mde_cookie_t *listp, md_mem_info_t *mem, int num_comps) argument
421 mem_mdesc_init(topo_mod_t *mod, md_mem_info_t *mem) argument
479 mem_mdesc_fini(topo_mod_t *mod, md_mem_info_t *mem) argument
[all...]
H A Dmem.c38 * This enumerator creates mem-schemed nodes for each dimm found in the
45 #define PLATFORM_MEM_NAME "platform-mem"
47 #define MEM_NODE_NAME "mem"
88 md_mem_info_t *mem; local
95 if ((mem = topo_mod_zalloc(mod, sizeof (md_mem_info_t))) == NULL)
98 if (mem_mdesc_init(mod, mem) != 0) {
100 topo_mod_free(mod, mem, sizeof (md_mem_info_t));
104 topo_mod_setspecific(mod, (void *)mem);
109 mem_mdesc_fini(mod, mem);
110 topo_mod_free(mod, mem, sizeo
122 md_mem_info_t *mem; local
143 md_mem_info_t *mem = (md_mem_info_t *)topo_mod_getspecific(mod); local
182 md_mem_info_t *mem = (md_mem_info_t *)topo_mod_getspecific(mod); local
303 md_mem_info_t *mem = (md_mem_info_t *)topo_mod_getspecific(mod); local
635 mem_create(topo_mod_t *mod, tnode_t *rnode, const char *name, md_mem_info_t *mem) argument
[all...]
/illumos-gate/usr/src/cmd/devfsadm/
H A Ddevpolicy.c154 char *mem = NULL; local
175 mem = realloc(mem, nalloc * devplcysys_sz);
176 if (mem == NULL) {
185 dflt = (devplcysys_t *)mem;
193 dp = (devplcysys_t *)(mem + devplcysys_sz * cnt);
263 qsort(mem, cnt, devplcysys_sz, qcmp);
265 if ((res = modctl(MODSETDEVPOLICY, cnt, devplcysys_sz, mem)) != 0)
/illumos-gate/usr/src/uts/common/io/
H A Davintr.c158 struct autovec *mem; local
167 mem = kmem_zalloc(sizeof (struct autovec), KM_SLEEP);
168 mem->av_vector = nmintr;
169 mem->av_intarg1 = arg;
170 mem->av_intarg2 = NULL;
171 mem->av_intr_id = NULL;
172 mem->av_prilevel = lvl;
173 mem->av_dip = NULL;
174 mem->av_link = NULL;
179 nmivect = mem;
352 struct autovec *p, *prep, *mem; local
[all...]
/illumos-gate/usr/src/uts/sun4/sys/
H A Dtrapstat.h184 #define TSTAT_CPU0_DATA_OFFS(tcpu, mem) \
186 offsetof(tstat_ndata_t, mem))
188 #define TSTAT_CPU0_TLBDATA_OFFS(tcpu, mem) \
190 offsetof(tstat_tdata_t, mem))
230 #define TSTAT_DATA_OFFS(tcpu, mem) \
231 ((uintptr_t)(tcpu)->tcpu_dbase + offsetof(tstat_data_t, mem))
235 #define TSTAT_INSTR_OFFS(tcpu, mem) \
236 ((uintptr_t)(tcpu)->tcpu_ibase + offsetof(tstat_instr_t, mem))
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/ents/frutree/
H A Dsystem-board.info154 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b6
156 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b8
158 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ba
160 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,bc
162 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c6
164 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c8
166 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ca
168 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,cc
173 name:/frutree/chassis/MB/system-board/DIMM0/mem-module
176 name:/frutree/chassis/MB/system-board/DIMM1/mem
[all...]
/illumos-gate/usr/src/boot/sys/boot/i386/loader/
H A Dchain.c47 vm_offset_t mem = 0x100000; local
87 if (archsw.arch_readin(fd, mem, size) != size) {
95 *((uint16_t *)PTOV(mem + DOSMAGICOFFSET)) != DOSMAGIC) {
100 uintptr[0] = mem;
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dt-memstat.c84 char *mem; local
102 mem = malloc(sz);
103 if (NULL == mem)
/illumos-gate/usr/src/uts/sun4v/sys/
H A Ddrctl.h86 drctl_rsrc_mem_t mem; member in union:drctl_rsrc::__anon10328
92 #define res_mem_size un.mem.size
93 #define res_mem_addr un.mem.addr
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dpathdup.c51 char mem[MEMSIZ]; member in struct:dup
124 pt = &tail->mem[MEMSIZ-size];
150 pt = &tail->mem[MEMSIZ-size];
/illumos-gate/usr/src/tools/ndrgen/
H A Dndr_anal.c79 ndr_member_t *mem; local
121 mem = &ti->member[i];
122 show_advice(&mem->advice, 2);
123 type_extern_suffix(mem->type, fname_type, NDLBUFSZ);
125 mem->name, fname_type);
127 tdti = mem->type;
132 mem->pdu_offset);
341 ndr_member_t *mem; local
361 mem = &ti->member[i];
365 analyze_member(mem_np, mem,
384 ndr_member_t *mem; local
438 ndr_member_t *mem; local
485 ndr_member_t *mem; local
502 analyze_member(ndr_node_t *mem_np, ndr_member_t *mem, unsigned long *offsetp, int allow) argument
[all...]
/illumos-gate/usr/src/lib/scsi/libsmp/common/
H A Dsmp_subr.c149 void *mem; local
156 if ((mem = malloc(size)) == NULL)
159 return (mem);
165 void *mem; local
167 if ((mem = smp_alloc(size)) == NULL)
170 bzero(mem, size);
172 return (mem);
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/taco/frutree/
H A Dsystem-board.info57 NODE mem-slot location
62 NODE mem-slot location
67 NODE mem-slot location
72 NODE mem-slot location
95 name:/frutree/chassis/MB/system-board/mem-slot?Label=DIMM0
96 REFNODE mem-module fru WITH /platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,a0
98 name:/frutree/chassis/MB/system-board/mem-slot?Label=DIMM1
99 REFNODE mem-module fru WITH /platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,a2
101 name:/frutree/chassis/MB/system-board/mem-slot?Label=DIMM2
102 REFNODE mem
[all...]
/illumos-gate/usr/src/lib/fm/topo/modules/sun4v/dimm/
H A Ddimm_sun4v.c72 md_mem_info_t *mem; local
76 topo_mod_dprintf(mod, "initializing mem enumerator\n");
78 if ((mem = topo_mod_zalloc(mod, sizeof (md_mem_info_t))) == NULL)
81 if (mem_mdesc_init(mod, mem) != 0) {
83 topo_mod_free(mod, mem, sizeof (md_mem_info_t));
87 topo_mod_setspecific(mod, (void *)mem);
92 mem_mdesc_fini(mod, mem);
93 topo_mod_free(mod, mem, sizeof (md_mem_info_t));
97 topo_mod_dprintf(mod, "mem enumerator inited\n");
105 md_mem_info_t *mem; local
409 md_mem_info_t *mem = (md_mem_info_t *)arg; local
[all...]
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/mpxu/frutree/
H A Dsystem-board.info184 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b6
186 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b8
188 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ba
190 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,bc
192 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c6
194 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c8
196 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ca
198 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,cc
203 name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D0/mem-module
206 name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D1/mem
[all...]
/illumos-gate/usr/src/lib/libtecla/common/
H A Dhash.h110 HashMemory *_del_HashMemory(HashMemory *mem, int force);
128 HashTable *_new_HashTable(HashMemory *mem, int size, HashCase hcase,
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/chalupa/frutree/
H A Dsystem-board.info331 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b6
333 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b8
335 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ba
337 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,bc
342 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c6
344 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c8
346 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ca
348 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,cc
353 REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,d6
355 REFNODE mem
[all...]

Completed in 81 milliseconds

123456789