Home
last modified time | relevance | path

Searched refs:lastPtr (Results 1 – 25 of 290) sorted by relevance

12345678910>>...12

/dports/misc/rump/buildrump.sh-b914579/src/usr.bin/make/lst.lib/
H A DlstConcat.c102 list2->lastPtr->nextPtr = NULL; in Lst_Concat()
111 list2->firstPtr->prevPtr = list1->lastPtr; in Lst_Concat()
112 if (list1->lastPtr != NULL) { in Lst_Concat()
113 list1->lastPtr->nextPtr = list2->firstPtr; in Lst_Concat()
117 list1->lastPtr = list2->lastPtr; in Lst_Concat()
125 list1->firstPtr->prevPtr = list1->lastPtr; in Lst_Concat()
126 list1->lastPtr->nextPtr = list1->firstPtr; in Lst_Concat()
142 list2->lastPtr->nextPtr = NULL; in Lst_Concat()
163 list1->lastPtr = last; in Lst_Concat()
172 list1->lastPtr->nextPtr = list1->firstPtr; in Lst_Concat()
[all …]
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/mpeg_encode/
H A Dbitio.cpp218 lastPtr = bbPtr->lastPtr; in Bitio_Write()
220 delta = nbits - lastPtr->bitsleft; in Bitio_Write()
233 bbPtr->lastPtr = newPtr; in Bitio_Write()
237 lastPtr->bitsleft = 0; in Bitio_Write()
238 lastPtr->bitsleftcur = 0; in Bitio_Write()
256 lastPtr->bitsleftcur -= nbits; in Bitio_Write()
257 lastPtr->bitsleft -= nbits; in Bitio_Write()
264 lastPtr->bits[lastPtr->currword] |= (bits >> delta); in Bitio_Write()
265 lastPtr->currword++; in Bitio_Write()
266 lastPtr->bits[lastPtr->currword] = (bits & lower_mask[delta]) << (32 - delta); in Bitio_Write()
[all …]
/dports/multimedia/mpeg_encode/mpeg_encode/
H A Dbitio.c221 lastPtr = bbPtr->lastPtr;
223 delta = nbits - lastPtr->bitsleft;
236 bbPtr->lastPtr = newPtr;
240 lastPtr->bitsleft = 0;
241 lastPtr->bitsleftcur = 0;
259 lastPtr->bitsleftcur -= nbits;
260 lastPtr->bitsleft -= nbits;
267 lastPtr->bits[lastPtr->currword] |= (bits >> delta);
268 lastPtr->currword++;
269 lastPtr->bits[lastPtr->currword] = (bits & lower_mask[delta]) << (32 - delta);
[all …]
/dports/science/afni/afni-AFNI_21.3.16/src/mpeg_encodedir/
H A Dbitio.c233 lastPtr = bbPtr->lastPtr;
235 delta = nbits - lastPtr->bitsleft;
248 bbPtr->lastPtr = newPtr;
252 lastPtr->bitsleft = 0;
253 lastPtr->bitsleftcur = 0;
271 lastPtr->bitsleftcur -= nbits;
272 lastPtr->bitsleft -= nbits;
279 lastPtr->bits[lastPtr->currword] |= (bits >> delta);
280 lastPtr->currword++;
281 lastPtr->bits[lastPtr->currword] = (bits & lower_mask[delta]) << (32 - delta);
[all …]
/dports/graphics/netpbm/netpbm-10.91.01/converter/ppm/ppmtompeg/
H A Dbitio.c256 lastPtr = bbPtr->lastPtr; in Bitio_Write()
258 delta = nbits - lastPtr->bitsleft; in Bitio_Write()
272 bbPtr->lastPtr = newPtr; in Bitio_Write()
276 lastPtr->bitsleft = 0; in Bitio_Write()
277 lastPtr->bitsleftcur = 0; in Bitio_Write()
295 lastPtr->bitsleftcur -= nbits; in Bitio_Write()
296 lastPtr->bitsleft -= nbits; in Bitio_Write()
303 lastPtr->bits[lastPtr->currword] |= (bits >> delta); in Bitio_Write()
304 lastPtr->currword++; in Bitio_Write()
305 lastPtr->bits[lastPtr->currword] = in Bitio_Write()
[all …]
/dports/devel/fmake/fmake-r250982/
H A Dlst.c71 list->firstPtr = list->lastPtr = nLNode; in Lst_Append()
81 if (ln == list->lastPtr) { in Lst_Append()
82 list->lastPtr = nLNode; in Lst_Append()
123 list2->firstPtr->prevPtr = list1->lastPtr; in Lst_Concat()
124 if (list1->lastPtr != NULL) in Lst_Concat()
125 list1->lastPtr->nextPtr = list2->firstPtr; in Lst_Concat()
128 list1->lastPtr = list2->lastPtr; in Lst_Concat()
161 list1->lastPtr = last; in Lst_Concat()
222 list->lastPtr = NULL; in Lst_Destroy()
274 list->firstPtr = list->lastPtr = nLNode; in Lst_Insert()
[all …]
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/branches/branche-0.0/src/
H A Dcompress.cpp96 int32_t lastPtr = 0; in compressBand() local
109 if (ptrArray[i] < lastPtr) in compressBand()
110 lastPtr = ptrArray[i]; in compressBand()
114 lastPtr = ~lastPtr; in compressBand()
115 if (lastPtr > 0x80) in compressBand()
116 lastPtr = 0x80; in compressBand()
117 *(uint32_t *)(bandArray->prev + 4) = lastPtr; in compressBand()
118 for (i=0; i < lastPtr; i++) { in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/branches/branche-1.0/src/
H A Dcompress.cpp100 int32_t lastPtr = 0, si; in compressBand() local
113 if (_ptrArray[i] < lastPtr) in compressBand()
114 lastPtr = _ptrArray[i]; in compressBand()
118 lastPtr = ~lastPtr; in compressBand()
119 if (lastPtr > 0x80) in compressBand()
120 lastPtr = 0x80; in compressBand()
121 *(uint32_t *)(bandArray->prev + 4) = lastPtr; in compressBand()
122 for (si=0; si < lastPtr; si++) { in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-1.0.2/src/
H A Dcompress.cpp96 int32_t lastPtr = 0, si; in compressBand() local
109 if (ptrArray[i] < lastPtr) in compressBand()
110 lastPtr = ptrArray[i]; in compressBand()
114 lastPtr = ~lastPtr; in compressBand()
115 if (lastPtr > 0x80) in compressBand()
116 lastPtr = 0x80; in compressBand()
117 *(uint32_t *)(bandArray->prev + 4) = lastPtr; in compressBand()
118 for (si=0; si < lastPtr; si++) { in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-1.1.0/src/
H A Dcompress.cpp100 int32_t lastPtr = 0, si; in compressBand() local
113 if (_ptrArray[i] < lastPtr) in compressBand()
114 lastPtr = _ptrArray[i]; in compressBand()
118 lastPtr = ~lastPtr; in compressBand()
119 if (lastPtr > 0x80) in compressBand()
120 lastPtr = 0x80; in compressBand()
121 *(uint32_t *)(bandArray->prev + 4) = lastPtr; in compressBand()
122 for (si=0; si < lastPtr; si++) { in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-1.0.1/src/
H A Dcompress.cpp96 int32_t lastPtr = 0, si; in compressBand() local
109 if (ptrArray[i] < lastPtr) in compressBand()
110 lastPtr = ptrArray[i]; in compressBand()
114 lastPtr = ~lastPtr; in compressBand()
115 if (lastPtr > 0x80) in compressBand()
116 lastPtr = 0x80; in compressBand()
117 *(uint32_t *)(bandArray->prev + 4) = lastPtr; in compressBand()
118 for (si=0; si < lastPtr; si++) { in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-1.0.1-1/src/
H A Dcompress.cpp96 int32_t lastPtr = 0, si; in compressBand() local
109 if (ptrArray[i] < lastPtr) in compressBand()
110 lastPtr = ptrArray[i]; in compressBand()
114 lastPtr = ~lastPtr; in compressBand()
115 if (lastPtr > 0x80) in compressBand()
116 lastPtr = 0x80; in compressBand()
117 *(uint32_t *)(bandArray->prev + 4) = lastPtr; in compressBand()
118 for (si=0; si < lastPtr; si++) { in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-0.0.2/src/
H A Dcompress.cpp96 int32_t lastPtr = 0; in compressBand() local
109 if (ptrArray[i] < lastPtr) in compressBand()
110 lastPtr = ptrArray[i]; in compressBand()
114 lastPtr = ~lastPtr; in compressBand()
115 if (lastPtr > 0x80) in compressBand()
116 lastPtr = 0x80; in compressBand()
117 *(uint32_t *)(bandArray->prev + 4) = lastPtr; in compressBand()
118 for (i=0; i < lastPtr; i++) { in compressBand()
/dports/print/splix/splix-6752e71281f1289a3b76357d84b65b0d893615b3/tags/splix-1.1.1/src/
H A Dcompress.cpp100 int32_t lastPtr = 0, si; in compressBand() local
113 if (_ptrArray[i] < lastPtr) in compressBand()
114 lastPtr = _ptrArray[i]; in compressBand()
118 lastPtr = ~lastPtr; in compressBand()
119 if (lastPtr > 0x80) in compressBand()
120 lastPtr = 0x80; in compressBand()
121 *(uint32_t *)(bandArray->prev + 4) = lastPtr; in compressBand()
122 for (si=0; si < lastPtr; si++) { in compressBand()
/dports/graphics/libvisual04-plugins/libvisual-plugins-0.4.0/plugins/actor/G-Force/Common/GeneralTools/
H A DArgList.cpp307 const char* lastPtr; in SetArgs() local
327 lastPtr = curPtr; in SetArgs()
338 while ( *lastPtr != '=' && *lastPtr != '-' && curPtr > lastPtr ) { in SetArgs()
339 ID = (ID << 8) | ((unsigned long) *lastPtr); in SetArgs()
340 lastPtr++; in SetArgs()
342 lastPtr++; // Skip the '=' in SetArgs()
343 isStr = *lastPtr == '\"'; // This arg is a string if we see a " in SetArgs()
344 if ( curPtr > lastPtr ) { in SetArgs()
347 s.AppendFromMeta( lastPtr, curPtr - lastPtr ); in SetArgs()
350 s.Assign( lastPtr, curPtr - lastPtr ); in SetArgs()
/dports/math/cvc3/cvc3-2.4.1/src/context/
H A Dcdflags.cpp48 ContextObjChain** lastPtr = &d_restore; in update() local
55 pastFlags = (CDFlags*)((*lastPtr)->d_data); in update()
72 lastPtr = &((*lastPtr)->d_restore); in update()
73 DebugAssert(*lastPtr != NULL, "Should always be object at scope 0"); in update()
88 ContextObjChain(data, this, (*lastPtr)->d_restore); in update()
89 (*lastPtr)->d_restore = obj; in update()
/dports/lang/tcl87/tcl8.7a5/generic/
H A DtclThreadAlloc.c624 cachePtr->lastPtr = objPtr; in TclThreadFreeObj()
732 toPtr->lastPtr = objPtr; in MoveObjs()
767 lastPtr = firstPtr; in PutObjs()
782 sharedPtr->lastPtr = fromPtr->lastPtr; in PutObjs()
787 fromPtr->lastPtr = lastPtr; in PutObjs()
908 Block *lastPtr = NULL, *firstPtr; in PutBlocks() local
916 lastPtr = firstPtr; in PutBlocks()
919 lastPtr->nextBlock = NULL; in PutBlocks()
932 sharedPtr->buckets[bucket].lastPtr in PutBlocks()
938 cachePtr->buckets[bucket].lastPtr = lastPtr; in PutBlocks()
[all …]
/dports/lang/tcl86/tcl8.6.12/generic/
H A DtclThreadAlloc.c634 cachePtr->lastPtr = objPtr; in TclThreadFreeObj()
742 toPtr->lastPtr = objPtr; in MoveObjs()
777 lastPtr = firstPtr; in PutObjs()
792 sharedPtr->lastPtr = fromPtr->lastPtr; in PutObjs()
797 fromPtr->lastPtr = lastPtr; in PutObjs()
918 Block *lastPtr = NULL, *firstPtr; in PutBlocks() local
926 lastPtr = firstPtr; in PutBlocks()
929 lastPtr->nextBlock = NULL; in PutBlocks()
942 sharedPtr->buckets[bucket].lastPtr in PutBlocks()
948 cachePtr->buckets[bucket].lastPtr = lastPtr; in PutBlocks()
[all …]
/dports/lang/clips/clips_core_source_630/core/
H A Drouter.c453 lastPtr = NULL; in EnvAddRouterWithContext()
457 lastPtr = currentPtr; in EnvAddRouterWithContext()
461 if (lastPtr == NULL) in EnvAddRouterWithContext()
469 lastPtr->next = newPtr; in EnvAddRouterWithContext()
485 lastPtr = NULL; in EnvDeleteRouter()
492 if (lastPtr == NULL) in EnvDeleteRouter()
502 lastPtr = currentPtr; in EnvDeleteRouter()
740 lastPtr = NULL; in AddRouter()
744 lastPtr = currentPtr; in AddRouter()
748 if (lastPtr == NULL) in AddRouter()
[all …]
H A Dutility.c778 lastPtr = currentPtr; in AddFunctionToCallListWithContext()
782 if (lastPtr == NULL) in AddFunctionToCallListWithContext()
790 lastPtr->next = newPtr; in AddFunctionToCallListWithContext()
810 lastPtr = NULL; in RemoveFunctionFromCallList()
818 if (lastPtr == NULL) in RemoveFunctionFromCallList()
827 lastPtr = currentPtr; in RemoveFunctionFromCallList()
903 lastPtr = currentPtr; in AddFunctionToCallListWithArgWithContext()
907 if (lastPtr == NULL) in AddFunctionToCallListWithArgWithContext()
915 lastPtr->next = newPtr; in AddFunctionToCallListWithArgWithContext()
935 lastPtr = NULL; in RemoveFunctionFromCallListWithArg()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/js/src/util/
H A DPrintf.cpp35 JSSmprintfPointer lastPtr(last.release()); in JS_sprintf_append() local
37 std::move(lastPtr), fmt, ap); in JS_sprintf_append()
49 JSSmprintfPointer lastPtr(last.release()); in JS_vsprintf_append() local
51 std::move(lastPtr), fmt, ap) in JS_vsprintf_append()
/dports/www/firefox/firefox-99.0/js/src/util/
H A DPrintf.cpp35 JSSmprintfPointer lastPtr(last.release()); in JS_sprintf_append() local
37 std::move(lastPtr), fmt, ap); in JS_sprintf_append()
49 JSSmprintfPointer lastPtr(last.release()); in JS_vsprintf_append() local
51 std::move(lastPtr), fmt, ap) in JS_vsprintf_append()
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/util/
H A DPrintf.cpp35 JSSmprintfPointer lastPtr(last.release()); in JS_sprintf_append() local
37 mozilla::VsmprintfAppend<js::SystemAllocPolicy>(Move(lastPtr), fmt, ap); in JS_sprintf_append()
49 JSSmprintfPointer lastPtr(last.release()); in JS_vsprintf_append() local
51 mozilla::VsmprintfAppend<js::SystemAllocPolicy>(Move(lastPtr), fmt, ap) in JS_vsprintf_append()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/util/
H A DPrintf.cpp35 JSSmprintfPointer lastPtr(last.release()); in JS_sprintf_append() local
37 std::move(lastPtr), fmt, ap); in JS_sprintf_append()
49 JSSmprintfPointer lastPtr(last.release()); in JS_vsprintf_append() local
51 std::move(lastPtr), fmt, ap) in JS_vsprintf_append()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/util/
H A DPrintf.cpp35 JSSmprintfPointer lastPtr(last.release()); in JS_sprintf_append() local
37 std::move(lastPtr), fmt, ap); in JS_sprintf_append()
49 JSSmprintfPointer lastPtr(last.release()); in JS_vsprintf_append() local
51 std::move(lastPtr), fmt, ap) in JS_vsprintf_append()

12345678910>>...12