Home
last modified time | relevance | path

Searched refs:iPtr1 (Results 1 – 13 of 13) sorted by relevance

/dports/devel/eastl/EASTL-3.13.06/include/EASTL/
H A Dintrusive_ptr.h334 bool operator==(intrusive_ptr<T> const& iPtr1, intrusive_ptr<U> const& iPtr2)
336 return (iPtr1.get() == iPtr2.get());
340 bool operator!=(intrusive_ptr<T> const& iPtr1, intrusive_ptr<U> const& iPtr2)
342 return (iPtr1.get() != iPtr2.get());
346 bool operator==(intrusive_ptr<T> const& iPtr1, T* p)
348 return (iPtr1.get() == p);
352 bool operator!=(intrusive_ptr<T> const& iPtr1, T* p)
354 return (iPtr1.get() != p);
370 bool operator<(intrusive_ptr<T> const& iPtr1, intrusive_ptr<U> const& iPtr2)
372 return ((uintptr_t)iPtr1.get() < (uintptr_t)iPtr2.get());
/dports/misc/adios2/ADIOS2-2.7.1/thirdparty/atl/atl/
H A DtclHash.c675 register int *iPtr1, *iPtr2; local
679 count > 0; count--, iPtr1++) {
680 index += *iPtr1;
690 for (iPtr1 = arrayPtr, iPtr2 = hPtr->key.words,
695 if (*iPtr1 != *iPtr2) {
734 register int *iPtr1, *iPtr2; local
738 count > 0; count--, iPtr1++) {
739 index += *iPtr1;
755 if (*iPtr1 != *iPtr2) {
773 count > 0; count--, iPtr1++, iPtr2++) {
[all …]
/dports/shells/ksh93-devel/ast-cc1bca27/src/lib/libtksh/tcl/
H A DtclHash.c665 register int *iPtr1, *iPtr2; local
669 count > 0; count--, iPtr1++) {
670 index += *iPtr1;
680 for (iPtr1 = arrayPtr, iPtr2 = hPtr->key.words,
685 if (*iPtr1 != *iPtr2) {
724 register int *iPtr1, *iPtr2; local
728 count > 0; count--, iPtr1++) {
729 index += *iPtr1;
745 if (*iPtr1 != *iPtr2) {
763 count > 0; count--, iPtr1++, iPtr2++) {
[all …]
/dports/shells/ksh93/ast-93u/src/lib/libtksh/tcl/
H A DtclHash.c665 register int *iPtr1, *iPtr2; local
669 count > 0; count--, iPtr1++) {
670 index += *iPtr1;
680 for (iPtr1 = arrayPtr, iPtr2 = hPtr->key.words,
685 if (*iPtr1 != *iPtr2) {
724 register int *iPtr1, *iPtr2; local
728 count > 0; count--, iPtr1++) {
729 index += *iPtr1;
745 if (*iPtr1 != *iPtr2) {
763 count > 0; count--, iPtr1++, iPtr2++) {
[all …]
/dports/shells/ast-ksh/ast-ksh93v/src/lib/libtksh/tcl/
H A DtclHash.c665 register int *iPtr1, *iPtr2; local
669 count > 0; count--, iPtr1++) {
670 index += *iPtr1;
680 for (iPtr1 = arrayPtr, iPtr2 = hPtr->key.words,
685 if (*iPtr1 != *iPtr2) {
724 register int *iPtr1, *iPtr2; local
728 count > 0; count--, iPtr1++) {
729 index += *iPtr1;
745 if (*iPtr1 != *iPtr2) {
763 count > 0; count--, iPtr1++, iPtr2++) {
[all …]
/dports/math/libpgmath/flang-d07daf3/test/f90_correct/src/
H A Dpp22.f9029 integer, pointer :: iPtr1 => NULL() variable
143 if (associated(iPtr1) ) then
163 iPtr1=>i1
164 if (associated(iPtr1) ) then
170 iPtr1=>NULL()
171 if (associated(iPtr1) ) then
/dports/x11-toolkits/blt/blt2.5/generic/
H A DbltHash.c719 register unsigned int *iPtr1, *iPtr2; in ArrayFind() local
722 for (iPtr1 = (uint32_t *)key, iPtr2 = (uint32_t *)hPtr->key.words, in ArrayFind()
723 count = tablePtr->keyType; ; count--, iPtr1++, iPtr2++) { in ArrayFind()
727 if (*iPtr1 != *iPtr2) { in ArrayFind()
768 register uint32_t *iPtr1, *iPtr2; in ArrayCreate() local
780 for (iPtr1 = (uint32_t *)key, iPtr2 = (uint32_t *)hPtr->key.words, in ArrayCreate()
781 count = tablePtr->keyType; ; count--, iPtr1++, iPtr2++) { in ArrayCreate()
786 if (*iPtr1 != *iPtr2) { in ArrayCreate()
810 for (iPtr1 = (uint32_t *)key, iPtr2 = (uint32_t *)hPtr->key.words; in ArrayCreate()
811 count > 0; count--, iPtr1++, iPtr2++) { in ArrayCreate()
[all …]
/dports/lang/tcl87/tcl8.7a5/generic/
H A DtclHash.c689 int *iPtr1, *iPtr2; in AllocArrayEntry() local
702 for (iPtr1 = array, iPtr2 = hPtr->key.words; in AllocArrayEntry()
703 count > 0; count--, iPtr1++, iPtr2++) { in AllocArrayEntry()
704 *iPtr2 = *iPtr1; in AllocArrayEntry()
733 const int *iPtr1 = (const int *) keyPtr; in CompareArrayKeys() local
738 for (count = tablePtr->keyType; ; count--, iPtr1++, iPtr2++) { in CompareArrayKeys()
742 if (*iPtr1 != *iPtr2) { in CompareArrayKeys()
/dports/lang/tcl86/tcl8.6.12/generic/
H A DtclHash.c718 int *iPtr1, *iPtr2; in AllocArrayEntry() local
731 for (iPtr1 = array, iPtr2 = hPtr->key.words; in AllocArrayEntry()
732 count > 0; count--, iPtr1++, iPtr2++) { in AllocArrayEntry()
733 *iPtr2 = *iPtr1; in AllocArrayEntry()
762 const int *iPtr1 = (const int *) keyPtr; in CompareArrayKeys() local
767 for (count = tablePtr->keyType; ; count--, iPtr1++, iPtr2++) { in CompareArrayKeys()
771 if (*iPtr1 != *iPtr2) { in CompareArrayKeys()
/dports/lang/tcl85/tcl8.5.19/generic/
H A DtclHash.c729 register int *iPtr1, *iPtr2; in AllocArrayEntry() local
742 for (iPtr1 = array, iPtr2 = hPtr->key.words; in AllocArrayEntry()
743 count > 0; count--, iPtr1++, iPtr2++) { in AllocArrayEntry()
744 *iPtr2 = *iPtr1; in AllocArrayEntry()
773 register const int *iPtr1 = (const int *) keyPtr; in CompareArrayKeys() local
778 for (count = tablePtr->keyType; ; count--, iPtr1++, iPtr2++) { in CompareArrayKeys()
782 if (*iPtr1 != *iPtr2) { in CompareArrayKeys()
/dports/x11-toolkits/p5-Tk/Tk-804.035/pTk/mTk/tclGeneric/
H A DtclHash.c814 register int *iPtr1, *iPtr2; local
826 for (iPtr1 = array, iPtr2 = hPtr->key.words;
827 count > 0; count--, iPtr1++, iPtr2++) {
828 *iPtr2 = *iPtr1;
856 register CONST int *iPtr1 = (CONST int *) keyPtr; local
861 for (count = tablePtr->keyType; ; count--, iPtr1++, iPtr2++) {
865 if (*iPtr1 != *iPtr2) {
/dports/science/py-pymol/pymol-open-source-2.4.0/layer0/
H A DMap.cpp260 int *iPtr1 = (I->Head + ((a - 1) * I->D1D2) + ((b - 1) * dim2) + c); in MapSetupExpressXY() local
267 int *iPtr2 = iPtr1; in MapSetupExpressXY()
288 iPtr1 += I->D1D2; in MapSetupExpressXY()
/dports/science/py-pymol/pymol-open-source-2.4.0/layer1/
H A DBasis.cpp3390 int *iPtr1 = in BasisMakeMap() local
3393 int *iPtr2 = iPtr1; in BasisMakeMap()
3453 iPtr1 += map->D1D2; in BasisMakeMap()
3459 int *iPtr1 = in BasisMakeMap() local
3464 int *iPtr2 = iPtr1; in BasisMakeMap()
3520 iPtr1 += map->D1D2; in BasisMakeMap()