| /src/external/gpl2/lvm2/dist/tools/ |
| pvchange.c | 39 int allocatable = 0; local 49 allocatable = !strcmp(arg_str_value(cmd, allocatable_ARG, "n"), 116 if (allocatable && (pv_status(pv) & ALLOCATABLE_PV)) { 118 "allocatable", pv_name); 123 if (!allocatable && !(pv_status(pv) & ALLOCATABLE_PV)) { 130 if (allocatable) { 132 "allocatable", pv_name); 136 "allocatable", pv_name);
|
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| primary.cc | 2640 int dimension, codimension, pointer, allocatable, target, optional; local 2659 allocatable = CLASS_DATA (sym)->attr.allocatable; 2666 allocatable = attr.allocatable; 2709 allocatable = pointer = 0; 2717 allocatable = pointer = optional = false; 2747 allocatable = CLASS_DATA (comp)->attr.allocatable; 2756 allocatable = comp->attr.allocatable 2843 int dimension, codimension, pointer, allocatable, target, coarray_comp; local [all...] |
| parse.cc | 193 match ("allocatable", gfc_match_allocatable, ST_ATTR_DECL); 443 match ("allocatable", gfc_match_allocatable, ST_ATTR_DECL); 3224 bool coarray, lock_type, event_type, allocatable, pointer; local 3225 coarray = lock_type = event_type = allocatable = pointer = false; 3231 /* Look for allocatable components. */ 3232 if (c->attr.allocatable 3234 && CLASS_DATA (c)->attr.allocatable) 3238 allocatable = true; 3284 && !allocatable && !pointer)) 3301 && !allocatable && !pointer) [all...] |
| symbol.cc | 382 proc->attr.allocatable = proc->result->attr.allocatable; 417 *allocatable = "ALLOCATABLE", *elemental = "ELEMENTAL", local 457 if (attr->in_namelist && (attr->allocatable || attr->pointer)) 460 a2 = attr->allocatable ? allocatable : pointer; 472 if (attr->allocatable) 473 a1 = allocatable; 544 conf (allocatable, elemental) [all...] |
| trans-openmp.cc | 55 allocatable or pointer attribute. */ 193 /* Array POINTER/ALLOCATABLE have aggregate types, all user variables 326 /* Return true if TYPE has any allocatable components. */ 398 /* Return true if the DECL is for an allocatable array or scalar. */ 487 /* Handle allocatable components in OpenMP clauses. */ 717 /* Allocatable arrays and scalars in PRIVATE clauses need to be set to 764 /* Reduction clause requires allocated ALLOCATABLE. */ 909 /* Allocatable arrays in FIRSTPRIVATE clauses need to be allocated 1003 /* First dealloc any allocatable components in DEST. */ 1010 /* Finally allocate any allocatable components and copy. * 3055 bool allocatable = false, pointer = false; local [all...] |
| resolve.cc | 217 sym->attr.allocatable = ifc->result->attr.allocatable; 227 sym->attr.allocatable = ifc->attr.allocatable; 281 || sym->attr.pointer || sym->attr.allocatable 345 shape until we know if it has the pointer or allocatable attributes. 349 && !(sym->attr.pointer || sym->attr.allocatable)) 352 || CLASS_DATA (sym)->attr.allocatable))) 362 || sym->attr.pointer || sym->attr.allocatable || sym->attr.target 365 || CLASS_DATA (sym)->attr.allocatable 7584 int allocatable, pointer; local 7816 int i, pointer, allocatable, dimension, is_abstract; local 12906 bool pointer, allocatable, dimension; local [all...] |
| trans-array.cc | 1046 /* Generate an initializer for a static pointer or allocatable array. */ 4732 /* Catch allocatable lhs in f2003. */ 5346 /* Avoid using an allocatable lhs in an assignment, since 6090 bool allocatable, coarray, dimension, alloc_w_e3_arr_spec = false, local 6099 /* Take the allocatable and coarray properties solely from the expr-ref's 6103 allocatable = expr->symtree->n.sym->attr.allocatable; 6109 allocatable = prev_ref->u.c.component->attr.allocatable; 6119 /* For allocatable/pointer arrays in derived types, one of the refs has to b [all...] |
| gfortran.h | 856 unsigned allocatable:1, dimension:1, codimension:1, external:1, intrinsic:1, member in struct:__anon16051 966 /* The symbol is a derived type with allocatable components, pointer 1183 /* When allocatable/pointer and in a coarray the associated token. */ 1890 /* Set if an allocatable array variable has been allocated in the current
|
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| metaslab.c | 473 * space will be the amount of allocatable space that is currently not 580 * Update the allocatable flag and the metaslab group's capacity. 581 * The allocatable flag is set to true if the capacity is below 584 * transitions from allocatable to non-allocatable or vice versa then the 626 * A metaslab group is considered allocatable if it has plenty 644 * When a group transitions from allocatable to non-allocatable or 975 * If all metaslab groups are no longer considered allocatable 999 * the only allocatable metasable group, then attemp 3070 boolean_t allocatable; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| parse.cc | 201 match ("allocatable", gfc_match_allocatable, ST_ATTR_DECL); 496 match ("allocatable", gfc_match_allocatable, ST_ATTR_DECL); 836 /* Procedure pointers are not allocatable; hence, we do not regard them as 840 alloc_ptr = (CLASS_DATA (n->sym)->attr.allocatable 843 alloc_ptr = n->sym->attr.allocatable || n->sym->attr.pointer; 846 && (n->sym->ns->proc_name->attr.allocatable 857 "note the variables in the list all have the allocatable or " 3455 bool coarray, lock_type, event_type, allocatable, pointer; local 3456 coarray = lock_type = event_type = allocatable = pointer = false; 3462 /* Look for allocatable components. * [all...] |
| primary.cc | 2762 int dimension, codimension, pointer, allocatable, target, optional; local 2784 allocatable = CLASS_DATA (sym)->attr.allocatable; 2791 allocatable = attr.allocatable; 2799 "The associating entity does not have the ALLOCATABLE or POINTER 2855 allocatable = pointer = 0; 2863 allocatable = pointer = optional = false; 2892 allocatable = CLASS_DATA (comp)->attr.allocatable; 2988 int dimension, codimension, pointer, allocatable, target, coarray_comp; local [all...] |
| symbol.cc | 395 proc->attr.allocatable = proc->result->attr.allocatable; 448 *allocatable = "ALLOCATABLE", *elemental = "ELEMENTAL", local 482 conf_std (in_namelist, allocatable, GFC_STD_F2003); 492 if (attr->allocatable) 493 a1 = allocatable; 564 conf (allocatable, elemental); 588 conf (allocatable, pointer); 589 conf_std (allocatable, dummy, GFC_STD_F2003) [all...] |
| trans-openmp.cc | 56 allocatable or pointer attribute. */ 183 bool allocatable = (GFC_TYPE_ARRAY_AKIND (type) == GFC_ARRAY_ALLOCATABLE local 196 if (!allocatable) 236 /* Array POINTER/ALLOCATABLE have aggregate types, all user variables 378 /* Return true if TYPE has any allocatable components. */ 450 /* Return true if the DECL is for an allocatable array or scalar. */ 539 /* Handle allocatable components in OpenMP clauses. */ 769 /* Allocatable arrays and scalars in PRIVATE clauses need to be set to 816 /* Reduction clause requires allocated ALLOCATABLE. */ 961 /* Allocatable arrays in FIRSTPRIVATE clauses need to be allocate 3252 bool allocatable = false, pointer = false; local [all...] |
| resolve.cc | 208 sym->attr.allocatable = ifc->result->attr.allocatable; 218 sym->attr.allocatable = ifc->attr.allocatable; 272 || sym->attr.pointer || sym->attr.allocatable 338 shape until we know if it has the pointer or allocatable attributes. 342 && !(sym->attr.pointer || sym->attr.allocatable)) 345 || CLASS_DATA (sym)->attr.allocatable))) 355 || sym->attr.pointer || sym->attr.allocatable || sym->attr.target 358 || CLASS_DATA (sym)->attr.allocatable 7913 int allocatable, pointer; local 8145 int i, pointer, allocatable, dimension, is_abstract; local 13630 bool pointer, allocatable, dimension; local [all...] |
| trans-array.cc | 1055 /* Generate an initializer for a static pointer or allocatable array. */ 2359 attr.pointer = attr.allocatable = 0; 4937 /* Catch allocatable lhs in f2003. */ 5555 /* Avoid using an allocatable lhs in an assignment, since 6304 bool allocatable, coarray, dimension, alloc_w_e3_arr_spec = false, local 6314 /* Take the allocatable and coarray properties solely from the expr-ref's 6318 allocatable = expr->symtree->n.sym->attr.allocatable; 6324 allocatable = prev_ref->u.c.component->attr.allocatable; [all...] |
| trans-expr.cc | 95 else if (attr.allocatable) 135 if ((attr.pointer || attr.allocatable) && attr.intent != INTENT_IN) 144 Returns a NULL_TREE, when the ref object is not allocatable or pointer. */ 157 && (ref->u.c.component->attr.allocatable 487 rank must not have the ALLOCATABLE attribute. If attempts 491 && CLASS_DATA (ref->u.c.component)->attr.allocatable) 707 optional_alloc_ptr is false when the dummy is neither allocatable 710 expression for deallocation of allocatable components. Assumed rank 1027 && !class_ts.u.derived->components->attr.allocatable 1156 optional_alloc_ptr is false when the dummy is neither allocatable 8220 bool allocatable = attr.allocatable && !attr.dimension; local [all...] |
| gfortran.h | 864 unsigned allocatable:1, dimension:1, codimension:1, external:1, intrinsic:1, member in struct:__anon13616 974 /* The symbol is a derived type with allocatable components, pointer 1193 /* When allocatable/pointer and in a coarray the associated token. */ 1949 /* Set if an allocatable array variable has been allocated in the current
|