Home
last modified time | relevance | path

Searched refs:mem (Results 1 – 25 of 227) sorted by relevance

12345678910

/titanic_41/usr/src/cmd/picl/plugins/sun4u/daktari/frutree/
H A Dpiclfrutree.info35 name:/frutree/chassis/system-board/cpu-mem-slot?Label=A/mem-slot?Label=J2900
36 REFNODE mem-module fru WITH /platform/pci@9,700000/ebus@1/i2c@1,2e/fru@0,a0
37 name:/frutree/chassis/system-board/cpu-mem-slot?Label=A/mem-slot?Label=J3100
38 REFNODE mem-module fru WITH /platform/pci@9,700000/ebus@1/i2c@1,2e/fru@0,a2
39 name:/frutree/chassis/system-board/cpu-mem-slot?Label=A/mem-slot?Label=J2901
40 REFNODE mem-module fru WITH /platform/pci@9,700000/ebus@1/i2c@1,2e/fru@0,a4
41 name:/frutree/chassis/system-board/cpu-mem-slot?Label=A/mem-slot?Label=J3101
42 REFNODE mem-module fru WITH /platform/pci@9,700000/ebus@1/i2c@1,2e/fru@0,a6
43 name:/frutree/chassis/system-board/cpu-mem-slot?Label=A/mem-slot?Label=J3000
44 REFNODE mem-module fru WITH /platform/pci@9,700000/ebus@1/i2c@1,2e/fru@0,a8
[all …]
/titanic_41/usr/src/uts/common/io/i40e/
H A Di40e_osdep.c26 i40e_allocate_virt_mem(struct i40e_hw *hw, struct i40e_virt_mem *mem, u32 size) in i40e_allocate_virt_mem() argument
28 mem->va = kmem_zalloc(size, KM_SLEEP); in i40e_allocate_virt_mem()
29 mem->size = size; in i40e_allocate_virt_mem()
35 i40e_free_virt_mem(struct i40e_hw *hw, struct i40e_virt_mem *mem) in i40e_free_virt_mem() argument
37 if (mem->va != NULL) in i40e_free_virt_mem()
38 kmem_free(mem->va, mem->size); in i40e_free_virt_mem()
44 i40e_allocate_dma_mem(struct i40e_hw *hw, struct i40e_dma_mem *mem, in i40e_allocate_dma_mem() argument
62 mem->idm_alignment = alignment; in i40e_allocate_dma_mem()
64 DDI_DMA_DONTWAIT, NULL, &mem->idm_dma_handle); in i40e_allocate_dma_mem()
66 mem->idm_dma_handle = NULL; in i40e_allocate_dma_mem()
[all …]
/titanic_41/usr/src/cmd/picl/plugins/sun4u/cherrystone/frutree/
H A Dpiclfrutree.info35 name:/frutree/chassis/system-board/cpu-mem-slot?Label=A/mem-slot?Label=J2900
36 REFNODE mem-module fru WITH /platform/pci@9,700000/ebus@1/i2c@1,2e/fru@0,a0
37 name:/frutree/chassis/system-board/cpu-mem-slot?Label=A/mem-slot?Label=J3100
38 REFNODE mem-module fru WITH /platform/pci@9,700000/ebus@1/i2c@1,2e/fru@0,a2
39 name:/frutree/chassis/system-board/cpu-mem-slot?Label=A/mem-slot?Label=J2901
40 REFNODE mem-module fru WITH /platform/pci@9,700000/ebus@1/i2c@1,2e/fru@0,a4
41 name:/frutree/chassis/system-board/cpu-mem-slot?Label=A/mem-slot?Label=J3101
42 REFNODE mem-module fru WITH /platform/pci@9,700000/ebus@1/i2c@1,2e/fru@0,a6
43 name:/frutree/chassis/system-board/cpu-mem-slot?Label=A/mem-slot?Label=J3000
44 REFNODE mem-module fru WITH /platform/pci@9,700000/ebus@1/i2c@1,2e/fru@0,a8
[all …]
/titanic_41/usr/src/tools/ndrgen/
H A Dndr_gen.c105 ndr_member_t *mem; in generate_struct() local
117 mem = &ti->member[i]; in generate_struct()
118 if (mem->type->type_op != BASIC_TYPE) in generate_struct()
121 generate_member(ti, mem); in generate_struct()
127 mem = &ti->member[i]; in generate_struct()
128 if (mem->type->type_op == BASIC_TYPE) in generate_struct()
131 if (mem->type->has_pointers) in generate_struct()
134 generate_member(ti, mem); in generate_struct()
140 mem = &ti->member[i]; in generate_struct()
141 if (mem->type->type_op == BASIC_TYPE) in generate_struct()
[all …]
H A Dndr_anal.c79 ndr_member_t *mem; in show_typeinfo_list() local
121 mem = &ti->member[i]; in show_typeinfo_list()
122 show_advice(&mem->advice, 2); in show_typeinfo_list()
123 type_extern_suffix(mem->type, fname_type, NDLBUFSZ); in show_typeinfo_list()
125 mem->name, fname_type); in show_typeinfo_list()
127 tdti = mem->type; in show_typeinfo_list()
132 mem->pdu_offset); in show_typeinfo_list()
341 ndr_member_t *mem; in analyze_typeinfo_typedef() local
361 mem = &ti->member[i]; in analyze_typeinfo_typedef()
365 analyze_member(mem_np, mem, in analyze_typeinfo_typedef()
[all …]
/titanic_41/usr/src/tools/ctf/stabs/common/
H A Dfth_struct.c150 fth_free_str_mem(fth_str_mem_t *mem) in fth_free_str_mem() argument
152 free(mem->fsm_memname); in fth_free_str_mem()
153 if (mem->fsm_format) in fth_free_str_mem()
154 free(mem->fsm_format); in fth_free_str_mem()
155 free(mem); in fth_free_str_mem()
305 fth_str_mem_t mem; in fth_print_array() local
318 mem.fsm_memname = memname; in fth_print_array()
319 mem.fsm_format = format; in fth_print_array()
320 mem.fsm_tid = ar.ctr_contents; in fth_print_array()
321 mem.fsm_off = off; in fth_print_array()
[all …]
/titanic_41/usr/src/lib/libtecla/common/
H A Dhash.c83 HashMemory *mem; /* HashTable free-list */ member
115 HashMemory *mem; in _new_HashMemory() local
119 mem = (HashMemory *) malloc(sizeof(HashMemory)); in _new_HashMemory()
120 if(!mem) { in _new_HashMemory()
128 mem->hash_memory = NULL; in _new_HashMemory()
129 mem->node_memory = NULL; in _new_HashMemory()
130 mem->string_memory = NULL; in _new_HashMemory()
134 mem->hash_memory = _new_FreeList(sizeof(HashTable), hash_count); in _new_HashMemory()
135 if(!mem->hash_memory) in _new_HashMemory()
136 return _del_HashMemory(mem, 1); in _new_HashMemory()
[all …]
/titanic_41/usr/src/uts/common/avs/ns/nsctl/
H A Dnsc_mem.c450 nsc_kmem_alloc(size_t size, int flag, nsc_mem_t *mem) in nsc_kmem_alloc() argument
454 if (!mem) in nsc_kmem_alloc()
455 mem = _nsc_anon_mem; in nsc_kmem_alloc()
457 if ((vp = _nsc_mem_alloc(&size, flag, mem)) == NULL) in nsc_kmem_alloc()
462 mem->nalloc++; in nsc_kmem_alloc()
463 mem->used += size; in nsc_kmem_alloc()
464 mem->pages += btopr(size); in nsc_kmem_alloc()
466 if (mem->used > mem->hwm) in nsc_kmem_alloc()
467 mem->hwm = mem->used; in nsc_kmem_alloc()
468 if (mem->pages > mem->pagehwm) in nsc_kmem_alloc()
[all …]
/titanic_41/usr/src/cmd/picl/plugins/sun4u/excalibur/frutree/
H A Dsystem-board.info61 NODE mem-slot location
65 NODE mem-slot location
69 NODE mem-slot location
73 NODE mem-slot location
77 NODE mem-slot location
81 NODE mem-slot location
85 NODE mem-slot location
89 NODE mem-slot location
143 name:/frutree/chassis/system-board/mem-slot?Label=J0100
144 REFNODE mem-module fru WITH /platform/pci/ebus/i2c?UnitAddress=1,2e/dimm-fru?UnitAddress=1,a0
[all …]
/titanic_41/usr/src/cmd/picl/plugins/sun4u/grover/frutree/
H A Dsystem-board.info46 NODE mem-slot location
50 NODE mem-slot location
54 NODE mem-slot location
58 NODE mem-slot location
81 name:/frutree/chassis/system-board/mem-slot?Label=DIMM0
82 REFNODE mem-module fru WITH /platform/pci/pmu/i2c/dimm?UnitAddress=0,a0
83 REFNODE mem-module fru WITH /platform/pci/pmu/i2c/dimm-spd?UnitAddress=0,a0
85 name:/frutree/chassis/system-board/mem-slot?Label=DIMM1
86 REFNODE mem-module fru WITH /platform/pci/pmu/i2c/dimm?UnitAddress=0,a2
87 REFNODE mem-module fru WITH /platform/pci/pmu/i2c/dimm-spd?UnitAddress=0,a2
[all …]
/titanic_41/usr/src/tools/ctf/common/
H A Dmemory.c49 void *mem; in xmalloc() local
51 if ((mem = malloc(size)) == NULL) in xmalloc()
54 return (mem); in xmalloc()
60 void *mem; in xcalloc() local
62 mem = xmalloc(size); in xcalloc()
63 bzero(mem, size); in xcalloc()
65 return (mem); in xcalloc()
96 void *mem; in xrealloc() local
98 if ((mem = realloc(ptr, size)) == NULL) in xrealloc()
101 return (mem); in xrealloc()
/titanic_41/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DPosixDaemon.c325 unsigned long *mem = malloc(size+8); in mallocL() local
326 if (!mem) in mallocL()
333 LogMalloc("malloc( %s : %lu ) = %p", msg, size, &mem[2]); in mallocL()
334 mem[0] = 0xDEAD1234; in mallocL()
335 mem[1] = size; in mallocL()
337 memset(&mem[2], 0xFF, size); in mallocL()
339 return(&mem[2]); in mallocL()
349 unsigned long *mem = ((unsigned long *)x) - 2; in freeL() local
350 if (mem[0] != 0xDEAD1234) in freeL()
351 { LogMsg("free( %s @ %p ) !!!! NOT ALLOCATED !!!!", msg, &mem[2]); return; } in freeL()
[all …]
/titanic_41/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-module fru WITH name:/platform/pci@8,700000/ebus/i2c@1,2e/dimm-fru@1,ae
[all …]
/titanic_41/usr/src/lib/libsqlite/tool/
H A Dmemleak.awk9 mem[$6] = $0
12 mem[$8] = "";
13 mem[$10] = $0
16 if (mem[$6]=="") {
19 mem[$6] = "";
28 for(addr in mem){
29 if( mem[addr]=="" ) continue
30 print mem[addr], str[addr]
/titanic_41/usr/src/cmd/picl/plugins/sun4u/littleneck/frutree/
H A Dpiclfrutree.info35 name:/frutree/chassis/system-board/mem-slot?Label=J0100
36 REFNODE mem-module fru WITH /platform/pci/ebus/i2c?UnitAddress=1,2e/dimm-fru?UnitAddress=1,a0
38 name:/frutree/chassis/system-board/mem-slot?Label=J0101
39 REFNODE mem-module fru WITH /platform/pci/ebus/i2c?UnitAddress=1,2e/dimm-fru?UnitAddress=1,a2
41 name:/frutree/chassis/system-board/mem-slot?Label=J0202
42 REFNODE mem-module fru WITH /platform/pci/ebus/i2c?UnitAddress=1,2e/dimm-fru?UnitAddress=1,a4
44 name:/frutree/chassis/system-board/mem-slot?Label=J0203
45 REFNODE mem-module fru WITH /platform/pci/ebus/i2c?UnitAddress=1,2e/dimm-fru?UnitAddress=1,a6
47 name:/frutree/chassis/system-board/mem-slot?Label=J0304
48 REFNODE mem-module fru WITH /platform/pci/ebus/i2c?UnitAddress=1,2e/dimm-fru?UnitAddress=1,a8
[all …]
/titanic_41/usr/src/lib/fm/topo/modules/sun4v/platform-mem/
H A Dmem_mdesc.c50 md_mem_info_t *mem) in mdesc_init_n1() argument
86 dm->dm_next = mem->mem_dm; in mdesc_init_n1()
87 mem->mem_dm = dm; in mdesc_init_n1()
98 for (d = mem->mem_dm; d != NULL; d = d->dm_next) { in mdesc_init_n1()
140 seg->sm_next = mem->mem_seg; in mdesc_init_n1()
141 mem->mem_seg = seg; in mdesc_init_n1()
147 mem->mem_group = mg; in mdesc_init_n1()
162 bm->bm_next = mem->mem_bank; in mdesc_init_n1()
163 mem->mem_bank = bm; in mdesc_init_n1()
166 for (d = mem->mem_dm; d != NULL; d = d->dm_next) { in mdesc_init_n1()
[all …]
/titanic_41/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-module fru WITH /platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b6
[all …]
/titanic_41/usr/src/uts/common/io/
H A Davintr.c158 struct autovec *mem; in add_nmintr() local
167 mem = kmem_zalloc(sizeof (struct autovec), KM_SLEEP); in add_nmintr()
168 mem->av_vector = nmintr; in add_nmintr()
169 mem->av_intarg1 = arg; in add_nmintr()
170 mem->av_intarg2 = NULL; in add_nmintr()
171 mem->av_intr_id = NULL; in add_nmintr()
172 mem->av_prilevel = lvl; in add_nmintr()
173 mem->av_dip = NULL; in add_nmintr()
174 mem->av_link = NULL; in add_nmintr()
179 nmivect = mem; in add_nmintr()
[all …]
/titanic_41/usr/src/cmd/picl/plugins/sun4u/schumacher/frutree/
H A Dsystem-board.info45 NODE mem-slot location
51 NODE mem-slot location
57 NODE mem-slot location
63 NODE mem-slot location
98 name:/frutree/chassis/MB/SUNW,Netra-CP3010/mem-slot?Label=DIMM0
99 REFNODE mem-module fru WITH /platform/pci@1e,600000/isa@7/ipmc@0,2e8/i2c@81/dimm-spd@81,a0
101 name:/frutree/chassis/MB/SUNW,Netra-CP3010/mem-slot?Label=DIMM1
102 REFNODE mem-module fru WITH /platform/pci@1e,600000/isa@7/ipmc@0,2e8/i2c@81/dimm-spd@81,a2
104 name:/frutree/chassis/MB/SUNW,Netra-CP3010/mem-slot?Label=DIMM2
105 REFNODE mem-module fru WITH /platform/pci@1e,600000/isa@7/ipmc@0,2e8/i2c@81/dimm-spd@81,a4
[all …]
/titanic_41/usr/src/cmd/getent/
H A Ddogetgr.c37 char **mem; in putgrent() local
50 mem = grp ->gr_mem; in putgrent()
52 if (mem != NULL) { in putgrent()
53 if (*mem != NULL) in putgrent()
54 if (fputs(*mem++, fp) == EOF) in putgrent()
57 while (*mem != NULL) in putgrent()
58 if (fprintf(fp, ",%s", *mem++) == EOF) in putgrent()
/titanic_41/usr/src/cmd/fm/fminject/common/
H A Dinj_util.c57 inj_mem2item(inj_memtype_t mem) in inj_mem2item() argument
59 switch (mem) { in inj_mem2item()
74 inj_mem2str(inj_memtype_t mem) in inj_mem2str() argument
84 return (mem >= 0 && in inj_mem2str()
85 mem < sizeof (names) / sizeof (char *) ? names[mem] : "???"); in inj_mem2str()
/titanic_41/usr/src/tools/mbh_patch/
H A Dmbh_patch.c59 int ndx, mem; in patch64() local
90 for (mem = 0; mem < 8192 - sizeof (multiboot_header_t); mem += 4) { in patch64()
91 mbh = ELFSEEK(mem); in patch64()
96 if (mem >= 8192 - sizeof (multiboot_header_t)) { in patch64()
126 if ((mem < phdr->p_offset) || in patch64()
127 (mem >= (phdr->p_offset + phdr->p_filesz))) { in patch64()
144 mbh->header_addr = mbh->load_addr + mem; in patch64()
/titanic_41/usr/src/cmd/sgs/libelf/common/
H A Dar.c274 register char *mem; in _elf_arinit() local
289 mem = (char *)a + sizeof (struct ar_hdr); in _elf_arinit()
291 if ((end - mem < n) || (a->ar_name[0] != '/') || in _elf_arinit()
296 hdr = mem + sz; in _elf_arinit()
298 elf->ed_arsym = mem; in _elf_arinit()
305 if (_elf_vm(elf, (size_t)(mem - elf->ed_ident), in _elf_arinit()
314 (void) memcpy(nmem, mem, sz); in _elf_arinit()
316 mem = nmem; in _elf_arinit()
319 elf->ed_arstr = mem; in _elf_arinit()
323 if (*mem == '/') in _elf_arinit()
[all …]
/titanic_41/usr/src/cmd/picl/plugins/sun4u/blade/frutree/
H A Dsystem-board.info43 NODE mem-slot location
48 NODE mem-slot location
73 name:/frutree/chassis/system-board/mem-slot?Label=DIMM0
74 REFNODE mem-module fru WITH name:/platform/pci/pmu/i2c/dimm-fru-prom?UnitAddress=0,a8
76 name:/frutree/chassis/system-board/mem-slot?Label=DIMM1
77 REFNODE mem-module fru WITH name:/platform/pci/pmu/i2c/dimm-fru-prom?UnitAddress=0,aa
84 REFPROP _fru_parent name:/frutree/chassis/system-board/mem-slot?Label=DIMM0/mem-module
87 REFPROP _fru_parent name:/frutree/chassis/system-board/mem-slot?Label=DIMM1/mem-module
112 REFPROP _fru_parent name:/frutree/chassis/system-board/mem-slot?Label=DIMM0/mem-module
115 REFPROP _fru_parent name:/frutree/chassis/system-board/mem-slot?Label=DIMM1/mem-module
/titanic_41/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-module fru WITH /platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,a4
[all …]

12345678910