Home
last modified time | relevance | path

Searched defs:value (Results 1 – 25 of 204) sorted by relevance

123456789

/petsc/src/vec/pf/impls/constant/
H A Dconst.c3 static PetscErrorCode PFApply_Constant(void *value, PetscInt n, const PetscScalar *x, PetscScalar *… in PFApply_Constant()
14 static PetscErrorCode PFApplyVec_Constant(void *value, Vec x, Vec y) in PFApplyVec_Constant()
21 static PetscErrorCode PFView_Constant(void *value, PetscViewer viewer) in PFView_Constant()
37 static PetscErrorCode PFDestroy_Constant(void *value) in PFDestroy_Constant()
46 PetscScalar *value = (PetscScalar *)pf->data; in PFSetFromOptions_Constant() local
55 PETSC_INTERN PetscErrorCode PFCreate_Constant(PF pf, void *value) in PFCreate_Constant()
79 static PetscErrorCode PFApply_Identity(void *value, PetscInt n, const PetscScalar *x, PetscScalar *… in PFApply_Identity()
89 static PetscErrorCode PFApplyVec_Identity(void *value, Vec x, Vec y) in PFApplyVec_Identity()
97 static PetscErrorCode PFView_Identity(void *value, PetscViewer viewer) in PFView_Identity()
108 static PetscErrorCode PFDestroy_Identity(void *value) in PFDestroy_Identity()
[all …]
/petsc/config/BuildSystem/
H A Dnargs.py15 def __init__(self, key, value = None, help = '', isTemporary = False, deprecated = False): argument
151 def setValue(self, value): argument
159 def __init__(self, key, value = None, help = '', isTemporary = 0, deprecated = False): argument
163 def setValue(self, value): argument
181 def __init__(self, key, value = None, help = '', isTemporary = 0, deprecated = False): argument
185 def valueName(self, value): argument
201 def setValue(self, value): argument
223 …def __init__(self, key, value = None, help = '', min = -2147483647, max = 2147483648, isTemporary … argument
229 def setValue(self, value): argument
243 …def __init__(self, key, value = None, help = '', min = -1.7976931348623157e308, max = 1.7976931348… argument
[all …]
/petsc/src/vec/pf/impls/matlab/
H A Dcmatlab.c13 static PetscErrorCode PFView_Matlab(void *value, PetscViewer viewer) in PFView_Matlab()
24 static PetscErrorCode PFDestroy_Matlab(void *value) in PFDestroy_Matlab()
35 static PetscErrorCode PFApply_Matlab(void *value, PetscInt n, const PetscScalar *in, PetscScalar *o… in PFApply_Matlab()
50 char value[256]; in PFSetFromOptions_Matlab() local
61 PETSC_INTERN PetscErrorCode PFCreate_Matlab(PF pf, void *value) in PFCreate_Matlab()
/petsc/src/vec/pf/impls/string/
H A Dcstring.c8 static PetscErrorCode PFView_String(void *value, PetscViewer viewer) in PFView_String()
18 static PetscErrorCode PFDestroy_String(void *value) in PFDestroy_String()
28 char value[PETSC_MAX_PATH_LEN]; in PFSetFromOptions_String() local
100 PETSC_INTERN PetscErrorCode PFCreate_String(PF pf, void *value) in PFCreate_String()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DPETSc.pyx146 cdef inline object toBool(PetscBool value):
148 cdef inline PetscBool asBool(object value) except? <PetscBool>0:
151 cdef inline object toInt(PetscInt value):
153 cdef inline PetscInt asInt(object value) except? -1:
156 cdef inline object toReal(PetscReal value):
158 cdef inline PetscReal asReal(object value) except? -1:
161 cdef inline object toScalar(PetscScalar value):
163 cdef inline PetscScalar asScalar(object value) except? <PetscScalar>-1.0:
H A DLog.pyx335 def __set__(self, value): argument
398 def __set__(self, value): argument
441 def __set__(self, value): argument
487 def __set__(self, value): argument
518 def __set__(self, value): argument
608 def __set__(self, value): argument
668 def __set__(self, value): argument
700 def __set__(self, value): argument
H A DKSP.pyx2261 def __set__(self, value): argument
2271 def __set__(self, value): argument
2305 def __set__(self, value): argument
2313 def __set__(self, value): argument
2328 def __set__(self, value): argument
2336 def __set__(self, value): argument
2346 def __set__(self, value): argument
2354 def __set__(self, value): argument
2362 def __set__(self, value): argument
2370 def __set__(self, value): argument
[all …]
H A DSNES.pyx2441 def __set__(self, value): argument
2451 def __set__(self, value): argument
2461 def __set__(self, value): argument
2488 def __set__(self, value): argument
2496 def __set__(self, value): argument
2504 def __set__(self, value): argument
2514 def __set__(self, value): argument
2522 def __set__(self, value): argument
2530 def __set__(self, value): argument
2538 def __set__(self, value): argument
[all …]
/petsc/include/
H A Dpetscoptions.h444 …#define PetscOptionsEnum(opt, text, man, list, currentvalue, value, set) PetscOptionsEnum… argument
489 …#define PetscOptionsInt(opt, text, man, currentvalue, value, set) PetscOptionsInt_… argument
534 …#define PetscOptionsMPIInt(opt, text, man, currentvalue, value, set) PetscOptionsMPII… argument
583 …#define PetscOptionsBoundedInt(opt, text, man, currentvalue, value, set, lb) PetscOptionsInt_… argument
633 …#define PetscOptionsRangeInt(opt, text, man, currentvalue, value, set, lb, ub) PetscOptionsInt_… argument
678 …#define PetscOptionsReal(opt, text, man, currentvalue, value, set) PetscOptionsReal… argument
727 …#define PetscOptionsBoundedReal(opt, text, man, currentvalue, value, set, lb) PetscOptionsReal… argument
777 …#define PetscOptionsRangeReal(opt, text, man, currentvalue, value, set, lb, ub) PetscOptionsReal… argument
822 …#define PetscOptionsScalar(opt, text, man, currentvalue, value, set) PetscOptionsScal… argument
897 …#define PetscOptionsString(opt, text, man, currentvalue, value, len, set) PetscOptionsStri… argument
[all …]
/petsc/src/sys/classes/bag/
H A Dbag.c588 char *value = ((char *)bag) + nitem->offset; in PetscBagSetFromOptions() local
591 PetscReal *value = (PetscReal *)(((char *)bag) + nitem->offset); in PetscBagSetFromOptions() local
599 PetscScalar *value = (PetscScalar *)(((char *)bag) + nitem->offset); in PetscBagSetFromOptions() local
602 PetscInt *value = (PetscInt *)(((char *)bag) + nitem->offset); in PetscBagSetFromOptions() local
610 PetscEnum *value = (PetscEnum *)(((char *)bag) + nitem->offset); in PetscBagSetFromOptions() local
615 PetscBool *value = (PetscBool *)(((char *)bag) + nitem->offset); in PetscBagSetFromOptions() local
666 char *value = ((char *)bag) + nitem->offset; in PetscBagView() local
672 PetscReal *value = (PetscReal *)(((char *)bag) + nitem->offset); in PetscBagView() local
678 PetscScalar value = *(PetscScalar *)(((char *)bag) + nitem->offset); in PetscBagView() local
689 PetscInt i, *value = (PetscInt *)(((char *)bag) + nitem->offset); in PetscBagView() local
[all …]
/petsc/src/sys/objects/
H A Daoptions.c351 const char *value; in PetscOptionsGetFromTextInput() local
411 const char *value; in PetscOptionsGetFromTextInput() local
533 char option[256], value[1024], tmp[32]; in PetscOptionsEnd_Private() local
641 … const char man[], const char *const *list, PetscEnum currentvalue, PetscEnum *value, PetscBool *s… in PetscOptionsEnum_Private()
660 …pt[], const char text[], const char man[], const char *const *list, PetscEnum value[], PetscInt *n… in PetscOptionsEnumArray_Private()
688 …r opt[], const char text[], const char man[], PetscInt currentvalue, PetscInt *value, PetscBool *s… in PetscOptionsInt_Private()
720 …[], const char text[], const char man[], PetscMPIInt currentvalue, PetscMPIInt *value, PetscBool *… in PetscOptionsMPIInt_Private()
750 …pt[], const char text[], const char man[], const char currentvalue[], char value[], size_t len, Pe… in PetscOptionsString_Private()
772 …opt[], const char text[], const char man[], PetscReal currentvalue, PetscReal *value, PetscBool *s… in PetscOptionsReal_Private()
804 …[], const char text[], const char man[], PetscScalar currentvalue, PetscScalar *value, PetscBool *… in PetscOptionsScalar_Private()
[all …]
H A Doptions.c124 …rCode PetscOptionsMonitor(PetscOptions options, const char name[], const char value[], PetscOption… in PetscOptionsMonitor()
1268 PetscErrorCode PetscOptionsSetValue(PetscOptions options, const char name[], const char value[]) in PetscOptionsSetValue()
1275 …scOptionsSetValue_Private(PetscOptions options, const char name[], const char value[], int *pos, P… in PetscOptionsSetValue_Private()
1491 …indPair(PetscOptions options, const char pre[], const char name[], const char *value[], PetscBool … in PetscOptionsFindPair()
1592 …ptions, const char pre[], const char name[], const char *option[], const char *value[], PetscBool … in PetscOptionsFindPairPrefix_Private()
1766 const char *value; in PetscOptionsHasName() local
2063 PetscErrorCode PetscOptionsMonitorDefault(const char name[], const char value[], PetscOptionSource … in PetscOptionsMonitorDefault()
2128 …etscOptionsMonitorSet(PetscErrorCode (*monitor)(const char name[], const char value[], PetscOption… in PetscOptionsMonitorSet()
2145 PetscErrorCode PetscOptionsStringToBool(const char value[], PetscBool *a) in PetscOptionsStringToBool()
2406 const char *value; in PetscOptionsGetBool() local
[all …]
/petsc/src/sys/classes/viewer/impls/hdf5/ftn-custom/
H A Dzhdf5f.c25 …uteint_(PetscViewer *viewer, const char parent[], const char name[], PetscInt *value, int *ierr, P… in petscviewerhdf5writeattributeint_()
37 …alar_(PetscViewer *viewer, const char parent[], const char name[], PetscScalar *value, int *ierr, … in petscviewerhdf5writeattributescalar_()
49 …ereal_(PetscViewer *viewer, const char parent[], const char name[], PetscReal *value, int *ierr, P… in petscviewerhdf5writeattributereal_()
/petsc/src/dm/label/
H A Ddmlabel.c194 PetscErrorCode DMLabelLookupStratum(DMLabel label, PetscInt value, PetscInt *index) in DMLabelLookupStratum()
227 static inline PetscErrorCode DMLabelNewStratum(DMLabel label, PetscInt value, PetscInt *index) in DMLabelNewStratum()
285 static inline PetscErrorCode DMLabelLookupAddStratum(DMLabel label, PetscInt value, PetscInt *index) in DMLabelLookupAddStratum()
317 PetscErrorCode DMLabelAddStratum(DMLabel label, PetscInt value) in DMLabelAddStratum()
433 const PetscInt value = label->stratumValues[v]; in DMLabelView_Concrete_Ascii() local
892 PetscErrorCode DMLabelHasValue(DMLabel label, PetscInt value, PetscBool *contains) in DMLabelHasValue()
954 PetscErrorCode DMLabelStratumHasPoint(DMLabel label, PetscInt value, PetscInt point, PetscBool *con… in DMLabelStratumHasPoint()
1056 PetscErrorCode DMLabelGetValue(DMLabel label, PetscInt point, PetscInt *value) in DMLabelGetValue()
1104 PetscErrorCode DMLabelSetValue(DMLabel label, PetscInt point, PetscInt value) in DMLabelSetValue()
1134 PetscErrorCode DMLabelClearValue(DMLabel label, PetscInt point, PetscInt value) in DMLabelClearValue()
[all …]
/petsc/src/sys/yaml/src/
H A Dreader.c27 size_t offset, int value) in yaml_parser_set_reader_error()
190 unsigned int value = 0, value2 = 0; in yaml_parser_update_buffer() local
/petsc/src/ts/tutorials/
H A Dex31.c89 PetscScalar value = -1.0; in RHSJacobian_Hull1972A1() local
120 PetscScalar value = a - 1.0; in IJacobian_Hull1972A1() local
151 PetscScalar value; in RHSJacobian_Hull1972A2() local
183 PetscScalar value; in IJacobian_Hull1972A2() local
215 PetscScalar value = PetscCosReal(t); in RHSJacobian_Hull1972A3() local
246 PetscScalar value = a - PetscCosReal(t); in IJacobian_Hull1972A3() local
277 PetscScalar value; in RHSJacobian_Hull1972A4() local
309 PetscScalar value; in IJacobian_Hull1972A4() local
341 PetscScalar value; in RHSJacobian_Hull1972A5() local
373 PetscScalar value; in IJacobian_Hull1972A5() local
[all …]
/petsc/src/dm/tests/
H A Dex43.c40 PetscErrorCode VecSetOwned(DM da, Vec v, PetscScalar value) in VecSetOwned()
59 PetscScalar value = 0.0; in main() local
/petsc/src/mat/tests/
H A Dex225.c37 PetscScalar value[] = {100}; in main() local
83 PetscScalar value[] = {100}; in main() local
H A Dex227.c11 PetscScalar value = 0; in main() local
/petsc/src/benchmarks/
H A DIndex.c20 double value; in test1() local
113 double value; in test2() local
/petsc/src/vec/vec/tests/
H A Dex21.c9 PetscReal value, value2; in main() local
/petsc/src/dm/impls/stag/tests/
H A Dex41.c12 PetscScalar value; in main() local
/petsc/src/mat/impls/aij/seq/
H A Dseqhashmatsetvalues.h21 PetscScalar value; in PetscConcat() local
/petsc/src/ksp/pc/tests/
H A Dex4.c12 PetscScalar value[3]; in main() local
/petsc/src/sys/tests/
H A Dex12.c10 PetscReal value; in main() local

123456789