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

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl2/lvm2/dist/lib/metadata/
merge.c 65 struct lv_segment *seg, *seg2; local
72 dm_list_iterate_items(seg, &lv->segments) {
74 if (seg->le != le) {
77 lv->name, seg_count, le, seg->le);
81 area_multiplier = segtype_is_striped(seg->segtype) ?
82 seg->area_count : 1;
84 if (seg->area_len * area_multiplier != seg->len) {
87 lv->name, seg_count, seg->area_len);
91 if (complete_vg && seg->log_lv)
349 struct lv_segment *seg; local
    [all...]
segtype.h 42 #define seg_is_mirrored(seg) ((seg)->segtype->flags & SEG_AREAS_MIRRORED ? 1 : 0)
43 #define seg_is_striped(seg) ((seg)->segtype->flags & SEG_AREAS_STRIPED ? 1 : 0)
44 #define seg_is_snapshot(seg) ((seg)->segtype->flags & SEG_SNAPSHOT ? 1 : 0)
45 #define seg_is_virtual(seg) ((seg)->segtype->flags & SEG_VIRTUAL ? 1 : 0)
46 #define seg_can_split(seg) ((seg)->segtype->flags & SEG_CAN_SPLIT ? 1 : 0
    [all...]
snapshot_manip.c 66 void init_snapshot_seg(struct lv_segment *seg, struct logical_volume *origin,
69 seg->chunk_size = chunk_size;
70 seg->origin = origin;
71 seg->cow = cow;
75 cow->snapshot = seg;
83 seg->lv->status |= (SNAPSHOT | VIRTUAL);
85 dm_list_add(&origin->snapshot_segs, &seg->origin_list);
93 struct lv_segment *seg; local
115 if (!(seg = alloc_snapshot_seg(snap, 0, 0)))
118 init_snapshot_seg(seg, origin, cow, chunk_size)
    [all...]
lv_manip.c 38 struct lv_segment *seg)
43 if (sl->seg == seg) {
50 seg->lv->name, seg->le, lv->name);
58 sl->seg = seg;
65 struct lv_segment *seg)
70 if (sl->seg != seg)
181 struct lv_segment *seg; local
220 struct lv_segment *seg; local
267 remove_seg_from_segs_using_this_lv(seg_lv(seg, s), seg); local
408 struct lv_segment *seg; local
653 struct lv_segment *seg; local
796 struct lv_segment *seg; local
1286 struct lv_segment *seg; local
1446 struct lv_segment *seg; local
1502 struct lv_segment *seg; local
1553 struct lv_segment *seg; local
1587 struct lv_segment *seg; local
1738 struct lv_segment *seg; local
2238 struct lv_segment *seg; local
2273 struct lv_segment *seg, *lseg; local
2379 struct lv_segment *seg; local
2635 struct lv_segment *seg; local
2699 struct lv_segment *seg; local
    [all...]
  /src/sys/dev/ieee1394/
fwdma.h 59 struct fwdma_seg seg[0]; member in struct:fwdma_alloc_multi
68 return (char *)am->seg[offset / ssize].v_addr + (offset % ssize);
77 return am->seg[offset / ssize].bus_addr + (offset % ssize);
83 struct fwdma_seg *seg, *eseg; local
88 seg = &am->seg[am->esize * start / am->ssize];
89 eseg = &am->seg[am->esize * end / am->ssize];
92 for (; seg < &am->seg[am->nseg]; seg++)
111 struct fwdma_seg *seg; local
    [all...]
  /src/external/gpl3/binutils.old/dist/bfd/
elf-nacl.c 28 segment_executable (struct elf_segment_map *seg)
30 if (seg->p_flags_valid)
31 return (seg->p_flags & PF_X) != 0;
37 for (i = 0; i < seg->count; ++i)
38 if (seg->sections[i]->flags & SEC_CODE)
49 segment_eligible_for_headers (struct elf_segment_map *seg,
53 if (seg->count == 0 || seg->sections[0]->lma % minpagesize < sizeof_headers)
55 for (i = 0; i < seg->count; ++i)
57 if ((seg->sections[i]->flags & (SEC_CODE|SEC_READONLY)) != SEC_READONLY
88 struct elf_segment_map *seg; local
96 struct elf_segment_map *seg = *m; local
189 struct elf_segment_map *seg; local
330 struct elf_segment_map *seg; local
    [all...]
  /src/external/gpl3/gdb.old/dist/bfd/
elf-nacl.c 28 segment_executable (struct elf_segment_map *seg)
30 if (seg->p_flags_valid)
31 return (seg->p_flags & PF_X) != 0;
37 for (i = 0; i < seg->count; ++i)
38 if (seg->sections[i]->flags & SEC_CODE)
49 segment_eligible_for_headers (struct elf_segment_map *seg,
53 if (seg->count == 0 || seg->sections[0]->lma % minpagesize < sizeof_headers)
55 for (i = 0; i < seg->count; ++i)
57 if ((seg->sections[i]->flags & (SEC_CODE|SEC_READONLY)) != SEC_READONLY
88 struct elf_segment_map *seg; local
96 struct elf_segment_map *seg = *m; local
189 struct elf_segment_map *seg; local
330 struct elf_segment_map *seg; local
    [all...]
  /src/external/gpl2/lvm2/dist/lib/mirror/
mirrored.c 50 static const char *_mirrored_name(const struct lv_segment *seg)
52 return seg->segtype->name;
55 static void _mirrored_display(const struct lv_segment *seg)
60 log_print(" Mirrors\t\t%u", seg->area_count);
61 log_print(" Mirror size\t\t%u", seg->area_len);
62 if (seg->log_lv)
63 log_print(" Mirror log volume\t%s", seg->log_lv->name);
65 if (seg->region_size) {
66 size = display_size(seg->lv->vg->cmd,
67 (uint64_t) seg->region_size)
    [all...]
  /src/external/gpl2/lvm2/dist/include/
segtype.h 42 #define seg_is_mirrored(seg) ((seg)->segtype->flags & SEG_AREAS_MIRRORED ? 1 : 0)
43 #define seg_is_striped(seg) ((seg)->segtype->flags & SEG_AREAS_STRIPED ? 1 : 0)
44 #define seg_is_snapshot(seg) ((seg)->segtype->flags & SEG_SNAPSHOT ? 1 : 0)
45 #define seg_is_virtual(seg) ((seg)->segtype->flags & SEG_VIRTUAL ? 1 : 0)
46 #define seg_can_split(seg) ((seg)->segtype->flags & SEG_CAN_SPLIT ? 1 : 0
    [all...]
text_import.h 24 int text_import_areas(struct lv_segment *seg, const struct config_node *sn,
targets.h 24 int compose_areas_line(struct dev_manager *dm, struct lv_segment *seg,
28 int add_areas_line(struct dev_manager *dm, struct lv_segment *seg,
  /src/sys/arch/playstation2/ee/
sif.c 101 iopdma_allocate_buffer(struct iopdma_segment *seg, size_t size)
108 seg->size = ROUND64(size);
110 seg->iop_paddr = iopmem_alloc(seg->size);
112 if (seg->iop_paddr == 0) {
119 seg->ee_vaddr = IOPPHYS_TO_EEKV(seg->iop_paddr);
124 DPRINTF("0x%08x+%#lx (total=%#x)\n", seg->iop_paddr, size,
127 KDASSERT((seg->ee_vaddr & 63) == 0);
133 iopdma_free_buffer(struct iopdma_segment *seg)
    [all...]
  /src/external/gpl3/binutils/dist/gas/config/
tc-ft32.h 48 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \
49 (! SEG_NORMAL (seg) || ft32_force_relocation (fix))
52 #define TC_LINKRELAX_FIXUP(seg) \
53 ((seg->flags & SEC_CODE) || (seg->flags & SEC_DEBUGGING))
58 #define TC_VALIDATE_FIX_SUB(fix, seg) ft32_validate_fix_sub (fix)
tc-wasm32.h 43 #define TC_FORCE_RELOCATION_SUB_SAME(fix,seg) wasm32_force_relocation (fix)
44 #define TC_FORCE_RELOCATION_SUB_ABS(fix,seg) wasm32_force_relocation (fix)
45 #define TC_FORCE_RELOCATION_SUB_LOCAL(fix,seg) wasm32_force_relocation (fix)
46 #define TC_VALIDATE_FIX_SUB(fix,seg) wasm32_force_relocation (fix)
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-ft32.h 48 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \
49 (! SEG_NORMAL (seg) || ft32_force_relocation (fix))
52 #define TC_LINKRELAX_FIXUP(seg) \
53 ((seg->flags & SEC_CODE) || (seg->flags & SEC_DEBUGGING))
58 #define TC_VALIDATE_FIX_SUB(fix, seg) ft32_validate_fix_sub (fix)
tc-wasm32.h 43 #define TC_FORCE_RELOCATION_SUB_SAME(fix,seg) wasm32_force_relocation (fix)
44 #define TC_FORCE_RELOCATION_SUB_ABS(fix,seg) wasm32_force_relocation (fix)
45 #define TC_FORCE_RELOCATION_SUB_LOCAL(fix,seg) wasm32_force_relocation (fix)
46 #define TC_VALIDATE_FIX_SUB(fix,seg) wasm32_force_relocation (fix)
  /src/external/gpl2/lvm2/dist/lib/striped/
striped.c 32 static const char *_striped_name(const struct lv_segment *seg)
34 return (seg->area_count == 1) ? "linear" : seg->segtype->name;
37 static void _striped_display(const struct lv_segment *seg)
41 if (seg->area_count == 1)
42 display_stripe(seg, 0, " ");
44 log_print(" Stripes\t\t%u", seg->area_count);
46 if (seg->lv->vg->cmd->si_unit_consistency)
48 display_size(seg->lv->vg->cmd,
49 (uint64_t) seg->stripe_size))
    [all...]
  /src/sys/external/bsd/drm2/include/drm/
bus_dma_hacks.h 139 #define MAX_STACK_SEGS 32 /* XXXMRG: 512 bytes on 16 byte seg platforms */
154 int nsegs, seg; local
183 for (seg = 0; seg < nsegs; seg++) {
184 page = &pgs[seg]->p_vmp;
188 segs[seg].ds_addr = baddr;
189 segs[seg].ds_len = PAGE_SIZE;
214 int seg; local
218 for (seg = 0; seg < nsegs; seg++)
    [all...]
  /src/external/gpl2/lvm2/dist/lib/format_text/
text_import.h 24 int text_import_areas(struct lv_segment *seg, const struct config_node *sn,
  /src/external/gpl2/lvm2/dist/lib/activate/
targets.h 24 int compose_areas_line(struct dev_manager *dm, struct lv_segment *seg,
28 int add_areas_line(struct dev_manager *dm, struct lv_segment *seg,
  /src/external/gpl2/lvm2/dist/lib/unknown/
unknown.c 31 static const char *_unknown_name(const struct lv_segment *seg)
34 return seg->segtype->name;
37 static int _unknown_text_import(struct lv_segment *seg, const struct config_node *sn,
47 new = clone_config_node(seg->lv->vg->vgmem, current, 0);
56 seg->segtype_private = head;
60 static int _unknown_text_export(const struct lv_segment *seg, struct formatter *f)
62 struct config_node *cn = seg->segtype_private;
71 struct lv_segment *seg __attribute((unused)),
  /src/sys/uvm/
uvm_physseg.c 471 struct uvm_physseg *seg; local
476 seg = HANDLE_TO_PHYSSEG_NODE(upm);
478 if (seg->free_list != freelist) {
496 if (seg->avail_start == seg->start &&
497 seg->avail_start < seg->avail_end) {
498 *paddrp = ctob(seg->avail_start);
499 return uvm_physseg_unplug(seg->avail_start, 1);
503 if (seg->avail_end == seg->end &
515 struct uvm_physseg *seg; local
663 struct uvm_physseg *seg; local
716 struct uvm_physseg *seg; local
1134 struct uvm_physseg *seg; local
1171 struct uvm_physseg *seg = HANDLE_TO_PHYSSEG_NODE(upm); local
1193 struct uvm_physseg *seg; local
1280 struct uvm_physseg *seg; local
    [all...]
  /src/external/gpl2/lvm2/dist/lib/snapshot/
snapshot.c 31 static const char *_snap_name(const struct lv_segment *seg)
33 return seg->segtype->name;
36 static int _snap_text_import(struct lv_segment *seg, const struct config_node *sn,
65 if (!(cow = find_lv(seg->lv->vg, cow_name))) {
71 if (!(org = find_lv(seg->lv->vg, org_name))) {
77 init_snapshot_seg(seg, org, cow, chunk_size);
82 static int _snap_text_export(const struct lv_segment *seg, struct formatter *f)
84 outf(f, "chunk_size = %u", seg->chunk_size);
85 outf(f, "origin = \"%s\"", seg->origin->name);
86 outf(f, "cow_store = \"%s\"", seg->cow->name)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
solib-dsbt.c 220 int version, seg, nsegs; local
252 for (seg = 0; seg < nsegs; seg++)
254 int_ldmbuf->segs[seg].addr
255 = extract_unsigned_integer (ext_ldmbuf->segs[seg].addr,
256 sizeof (ext_ldmbuf->segs[seg].addr),
258 int_ldmbuf->segs[seg].p_vaddr
259 = extract_unsigned_integer (ext_ldmbuf->segs[seg].p_vaddr,
260 sizeof (ext_ldmbuf->segs[seg].p_vaddr)
318 int version, seg, nsegs; local
412 int seg; local
813 int seg; local
882 int seg; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
solib-dsbt.c 239 int version, seg, nsegs; local
271 for (seg = 0; seg < nsegs; seg++)
273 int_ldmbuf->segs[seg].addr
274 = extract_unsigned_integer (ext_ldmbuf->segs[seg].addr,
275 sizeof (ext_ldmbuf->segs[seg].addr),
277 int_ldmbuf->segs[seg].p_vaddr
278 = extract_unsigned_integer (ext_ldmbuf->segs[seg].p_vaddr,
279 sizeof (ext_ldmbuf->segs[seg].p_vaddr)
337 int version, seg, nsegs; local
422 int seg; local
823 int seg; local
893 int seg; local
    [all...]

Completed in 138 milliseconds

1 2 3 4 5 6 7 8 91011>>