Lines Matching defs:h
32 #define Value(h, loc) ((h)->base[loc].value) argument
33 #define Id(h, loc) ((h)->base[loc].id) argument
35 static inline void Swap(PetscHeap h, PetscInt loc, PetscInt loc2) in Swap()
45 static inline PetscInt MinChild(PetscHeap h, PetscInt loc) in MinChild()
64 PetscHeap h; in PetscHeapCreate() local
79 PetscErrorCode PetscHeapAdd(PetscHeap h, PetscInt id, PetscInt val) in PetscHeapAdd()
98 PetscErrorCode PetscHeapPop(PetscHeap h, PetscInt *id, PetscInt *val) in PetscHeapPop()
127 PetscErrorCode PetscHeapPeek(PetscHeap h, PetscInt *id, PetscInt *val) in PetscHeapPeek()
141 PetscErrorCode PetscHeapStash(PetscHeap h, PetscInt id, PetscInt val) in PetscHeapStash()
152 PetscErrorCode PetscHeapUnstash(PetscHeap h) in PetscHeapUnstash()
171 PetscErrorCode PetscHeapView(PetscHeap h, PetscViewer viewer) in PetscHeapView()