| /petsc/src/sys/classes/draw/impls/win32/ |
| H A D | win32draw.c | 100 WindowNode current; in PetscDrawGetMouseButton_Win32() local 107 current = WindowListHead; in PetscDrawGetMouseButton_Win32() 108 while (current) { in PetscDrawGetMouseButton_Win32() 109 if (current->hWnd == windraw->hWnd) { in PetscDrawGetMouseButton_Win32() 110 current->IsGetMouseOn = TRUE; in PetscDrawGetMouseButton_Win32() 112 } else current = current->wnext; in PetscDrawGetMouseButton_Win32() 115 node = current->MouseListHead; in PetscDrawGetMouseButton_Win32() 118 WaitForSingleObject(current->event, INFINITE); in PetscDrawGetMouseButton_Win32() 122 *button = current->MouseListHead->Button; in PetscDrawGetMouseButton_Win32() 123 *x_user = current->MouseListHead->user.x; in PetscDrawGetMouseButton_Win32() [all …]
|
| /petsc/src/sys/dll/ |
| H A D | reg.c | 214 PetscFunctionListDLAll current = dlallhead, prev = NULL; in PetscFunctionListDLAllPop_Private() local 217 while (current) { in PetscFunctionListDLAllPop_Private() 218 const PetscFunctionListDLAll next = current->next; in PetscFunctionListDLAllPop_Private() 220 if (current->data == fl) { in PetscFunctionListDLAllPop_Private() 228 PetscCall(PetscFree(current)); in PetscFunctionListDLAllPop_Private() 231 prev = current; in PetscFunctionListDLAllPop_Private() 232 current = next; in PetscFunctionListDLAllPop_Private() 387 PetscFunctionListDLAll current = dlallhead; in PetscFunctionListPrintAll() local 390 …if (current) PetscCall(PetscPrintf(PETSC_COMM_SELF, "[%d] Registered PetscFunctionLists\n", PetscG… in PetscFunctionListPrintAll() 391 while (current) { in PetscFunctionListPrintAll() [all …]
|
| /petsc/src/tao/linesearch/impls/armijo/ |
| H A D | armijo.c | 150 armP->current = 0; in TaoLineSearchApply_Armijo() 157 idx = armP->current; in TaoLineSearchApply_Armijo() 169 ref = PetscMax(ref, armP->memory[armP->current]); in TaoLineSearchApply_Armijo() 171 ref = PetscMin(ref, 0.5 * (armP->lastReference + armP->memory[armP->current])); in TaoLineSearchApply_Armijo() 243 armP->memory[armP->current++] = *f; in TaoLineSearchApply_Armijo() 244 if (armP->current >= armP->memorySize) armP->current = 0; in TaoLineSearchApply_Armijo() 246 armP->current = idx; in TaoLineSearchApply_Armijo()
|
| H A D | armijo.h | 74 PetscInt current; /* Current element for FIFO */ member
|
| /petsc/src/sys/yaml/src/ |
| H A D | api.c | 228 if (parser->input.string.current == parser->input.string.end) { in yaml_string_read_handler() 234 - parser->input.string.current)) { in yaml_string_read_handler() 235 size = parser->input.string.end - parser->input.string.current; in yaml_string_read_handler() 238 memcpy(buffer, parser->input.string.current, size); in yaml_string_read_handler() 239 parser->input.string.current += size; in yaml_string_read_handler() 274 parser->input.string.current = input; in yaml_parser_set_input_string()
|
| /petsc/src/vec/is/sf/tests/output/ |
| H A D | ex2_1_window.out | 2 current info with 2 keys. Ordered key-value pairs follow: 20 current info with 2 keys. Ordered key-value pairs follow:
|
| H A D | ex1_window_shared_nsize-1.out | 14 current flavor=CREATE synchronization=FENCE MultiSF sort=rank-order
|
| H A D | ex1_window_nsize-1.out | 14 current flavor=CREATE synchronization=FENCE MultiSF sort=rank-order
|
| H A D | ex1_window_shared_nsize-2.out | 16 current flavor=CREATE synchronization=FENCE MultiSF sort=rank-order
|
| H A D | ex1_window_nsize-2.out | 16 current flavor=CREATE synchronization=FENCE MultiSF sort=rank-order
|
| /petsc/src/tao/linesearch/impls/owarmijo/ |
| H A D | owarmijo.c | 179 armP->current = 0; in TaoLineSearchApply_OWArmijo() 199 ref = PetscMax(ref, armP->memory[armP->current]); in TaoLineSearchApply_OWArmijo() 201 ref = PetscMin(ref, 0.5 * (armP->lastReference + armP->memory[armP->current])); in TaoLineSearchApply_OWArmijo() 269 armP->memory[armP->current++] = *f; in TaoLineSearchApply_OWArmijo() 270 if (armP->current >= armP->memorySize) armP->current = 0; in TaoLineSearchApply_OWArmijo() 272 armP->current = idx; in TaoLineSearchApply_OWArmijo()
|
| H A D | owarmijo.h | 74 PetscInt current; /* Current element for FIFO */ member
|
| /petsc/src/vec/is/sf/tutorials/output/ |
| H A D | ex1_6.out | 41 current info=MPI_INFO_NULL 72 current info=MPI_INFO_NULL
|
| H A D | ex1_10.out | 41 current info=MPI_INFO_NULL 149 current info=MPI_INFO_NULL
|
| H A D | ex1_8.out | 35 current info=MPI_INFO_NULL
|
| H A D | ex1_3.out | 41 current info=MPI_INFO_NULL
|
| H A D | ex1_1.out | 41 current info=MPI_INFO_NULL
|
| H A D | ex1_2.out | 41 current info=MPI_INFO_NULL
|
| H A D | ex1_4.out | 41 current info=MPI_INFO_NULL
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | Const.pyx | 21 Do not change the current value that is set. 55 Add provided value/s to current value/s. 57 Insert the maximum of provided value/s and current value/s.
|
| H A D | Device.pyx | 521 """Return the current device context. 527 current, setCurrent, petsc.PetscDeviceContextGetCurrentContext 537 """Set the current device context. 544 The `DeviceContext` to set as current (or `None` to use 549 current, getCurrent, petsc.PetscDeviceContextSetCurrentContext 574 property current: 575 """The current global device context."""
|
| H A D | Log.pyx | 153 """Add floating point operations to the current event. 172 """Add floating point operations to the current event. 215 """Return the current time of day in seconds. 325 """Return the current stage name.""" 331 """The current stage name.""" 380 """Activate or deactivate the current stage. 598 """The current event name.""" 604 """The current event name."""
|
| /petsc/src/ts/impls/implicit/glle/ |
| H A D | glleadapt.c | 302 } best = {-1, 0, 0}, trial = {-1, 0, 0}, current = {-1, 0, 0}; in TSGLLEAdaptChoose_Both() local 313 if (i == cur) PetscCall(PetscArraycpy(¤t, &trial, 1)); in TSGLLEAdaptChoose_Both() 317 if (best.eff < 1.2 * current.eff || both->count_at_order < orders[cur] + 2) { in TSGLLEAdaptChoose_Both() 319 *next_sc = current.id; in TSGLLEAdaptChoose_Both() 321 both->desired_h = PetscMax(h * dec, PetscMin(h * inc, current.h)); in TSGLLEAdaptChoose_Both()
|
| /petsc/src/sys/utils/ |
| H A D | str.c | 348 char *current; member 384 *result = ptr = a->current; in PetscTokenFind() 399 a->current = ptr; in PetscTokenFind() 403 a->current = NULL; in PetscTokenFind() 439 (*t)->current = (*t)->array; in PetscTokenCreate()
|
| /petsc/doc/overview/ |
| H A D | features.md | 19 <doc_gpu_roadmap>` for more information on current support.
|