| /petsc/src/sys/utils/ |
| H A D | segbuffer.c | 4 struct _PetscSegBufferLink *tail; member 35 newlink->tail = s; in PetscSegBufferAlloc_Private() 122 struct _PetscSegBufferLink *tail = s->tail; in PetscSegBufferDestroy() local 124 s = tail; in PetscSegBufferDestroy() 155 for (t = s->tail; t;) { in PetscSegBufferExtractTo() 156 struct _PetscSegBufferLink *tail = t->tail; in PetscSegBufferExtractTo() local 160 t = tail; in PetscSegBufferExtractTo() 165 s->tail = NULL; in PetscSegBufferExtractTo() 223 if (PetscUnlikely(head->tail)) { in PetscSegBufferExtractInPlace()
|
| /petsc/config/ |
| H A D | configure.py | 108 head, tail = name.split('=', 1) 109 if tail=='0': 119 head, tail = name.split('=', 1) 120 if tail == '0': 131 head, tail = name.split('=', 1) 132 name = head.replace('enable-','with-',1)+'='+tail 137 head, tail = name.split('=', 1) 138 if tail == '1': tail = '0' 139 name = head.replace('disable-','with-',1)+'='+tail 144 head, tail = name.split('=', 1) [all …]
|
| /petsc/src/sys/yaml/src/ |
| H A D | api.c | 120 yaml_queue_extend(void **start, void **head, void **tail, void **end) in yaml_queue_extend() argument 124 if (*start == *head && *tail == *end) { in yaml_queue_extend() 131 *tail = (char *)new_start + ((char *)*tail - (char *)*start); in yaml_queue_extend() 138 if (*tail == *end) { in yaml_queue_extend() 139 if (*head != *tail) memmove(*start, *head, (char *)*tail - (char *)*head); in yaml_queue_extend() 140 *tail = (char *)*tail - (char *)*head + (char *)*start; in yaml_queue_extend()
|
| H A D | yaml_private.h | 421 yaml_queue_extend(void **start, void **head, void **tail, void **end); 458 ((queue).head = (queue).tail = (queue).start, \ 466 (queue).start = (queue).head = (queue).tail = (queue).end = NULL) 469 ((queue).head == (queue).tail) 472 (((queue).tail != (queue).end \ 474 (void **)&(queue).tail, (void **)&(queue).end)) ? \ 475 (*((queue).tail++) = value, \ 484 (((queue).tail != (queue).end \ 486 (void **)&(queue).tail, (void **)&(queue).end)) ? \ 488 ((queue).tail-(queue).head-(index))*sizeof(*(queue).start)), \ [all …]
|
| H A D | scanner.c | 811 if (parser->tokens.head == parser->tokens.tail) in yaml_parser_fetch_more_tokens() 1115 parser->tokens_parsed + (parser->tokens.tail - parser->tokens.head); in yaml_parser_save_simple_key()
|
| /petsc/src/sys/dll/ |
| H A D | dl.c | 485 PetscDLLibrary prev, tail; in PetscDLLibraryClose() local 492 prev = tail = list; in PetscDLLibraryClose() 493 while (tail->next) { in PetscDLLibraryClose() 494 prev = tail; in PetscDLLibraryClose() 495 tail = tail->next; in PetscDLLibraryClose() 499 PetscCall(PetscInfo(NULL, "Closing dynamic library %s\n", tail->libname)); in PetscDLLibraryClose() 500 PetscCall(PetscDLClose(&tail->handle)); in PetscDLLibraryClose() 501 PetscCall(PetscFree(tail)); in PetscDLLibraryClose()
|
| /petsc/src/sys/classes/viewer/impls/vtk/ |
| H A D | vtkv.c | 170 PetscViewerVTKObjectLink link, tail = vtk->link; in PetscViewerVTKAddField_VTK() local 186 if (tail) { in PetscViewerVTKAddField_VTK() 187 while (tail->next) tail = tail->next; in PetscViewerVTKAddField_VTK() 188 tail->next = link; in PetscViewerVTKAddField_VTK()
|
| /petsc/src/mat/impls/composite/ |
| H A D | mcomposite.c | 14 Mat_CompositeLink head, tail; member 104 Mat_CompositeLink tail; in MatMultTranspose_Composite_Multiplicative() local 109 tail = shell->tail; in MatMultTranspose_Composite_Multiplicative() 110 …PetscCheck(tail, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Must provide at least one matrix with… in MatMultTranspose_Composite_Multiplicative() 111 while (tail->prev) { in MatMultTranspose_Composite_Multiplicative() 112 if (!tail->prev->work) { /* should reuse previous work if the same size */ in MatMultTranspose_Composite_Multiplicative() 113 PetscCall(MatCreateVecs(tail->mat, NULL, &tail->prev->work)); in MatMultTranspose_Composite_Multiplicative() 115 out = tail->prev->work; in MatMultTranspose_Composite_Multiplicative() 116 PetscCall(MatMultTranspose(tail->mat, x, out)); in MatMultTranspose_Composite_Multiplicative() 118 tail = tail->prev; in MatMultTranspose_Composite_Multiplicative() [all …]
|
| /petsc/systems/Apple/OSX/bin/ |
| H A D | makedmg | 26 let size=`du -c tempsource | tail -1 | cut -f1`
|
| /petsc/systems/Apple/iOS/bin/ |
| H A D | makedmg | 31 let size=`du -c tempsource | tail -1 | cut -f1`
|
| /petsc/src/ts/impls/bdf/ |
| H A D | bdf.c | 115 Vec tail = bdf->work[n - 1], tvtail = bdf->tvwork[n - 1]; in TSBDF_Advance() local 125 bdf->work[1] = tail; in TSBDF_Advance() 127 PetscCall(VecCopy(X, tail)); in TSBDF_Advance() 128 PetscCall(TSComputeTransientVariable(ts, tail, tvtail)); in TSBDF_Advance()
|
| /petsc/src/benchmarks/ |
| H A D | ssget | 78 | tail -1)
|
| /petsc/src/sys/yaml/include/ |
| H A D | yaml.h | 895 yaml_token_t *tail; member
|
| /petsc/src/binding/petsc4py/conf/ |
| H A D | confpetsc.py | 781 head, tail = os.path.split(filename) 783 outfile = os.path.join(self.build_lib, head, arch, tail)
|
| /petsc/ |
| H A D | gmakefile | 306 -@grep "#define " ${PETSCCONF_H} | tail -n +2
|
| /petsc/src/sys/objects/ |
| H A D | options.c | 415 char fname[PETSC_MAX_PATH_LEN + 8], path[PETSC_MAX_PATH_LEN + 8], *tail; in PetscOptionsFilename() local 423 PetscCall(PetscStrrchr(path, ':', &tail)); in PetscOptionsFilename() 424 tail[-1] = 0; /* remove ":yaml" suffix from path */ in PetscOptionsFilename()
|
| /petsc/share/petsc/datafiles/meshes/ |
| H A D | testcase3D.cas | 2419 (dpm/splash-pdf-tail-limiting? #t) 2421 (dpm/orourke-splash-fraction-tail 0.75) 8839 … . #t) ("disabled" . #f)))) (dpm/splash-pdf-tail-limiting? #f boolean #f #f #t ("Splash PDF distri…
|