Home
last modified time | relevance | path

Searched refs:startpos (Results 51 – 75 of 4474) sorted by last modified time

12345678910>>...179

/dports/lang/python311/Python-3.11.0a3/Lib/idlelib/
H A Dpyparse.py515 startpos = i
519 endpos = code.find('\n', startpos) + 1
553 i = startpos
/dports/lang/python311/Python-3.11.0a3/Lib/
H A Dheapq.py205 def _siftdown(heap, startpos, pos): argument
209 while pos > startpos:
260 startpos = pos
276 _siftdown(heap, startpos, pos)
278 def _siftdown_max(heap, startpos, pos): argument
283 while pos > startpos:
296 startpos = pos
312 _siftdown_max(heap, startpos, pos)
H A Ddoctest.py285 startpos, endpos = 0, len(got)
289 startpos = len(w)
301 if startpos > endpos:
313 startpos = got.find(w, startpos, endpos)
314 if startpos < 0:
316 startpos += len(w)
/dports/lang/python39/Python-3.9.9/Lib/
H A Ddoctest.py284 startpos, endpos = 0, len(got)
288 startpos = len(w)
300 if startpos > endpos:
312 startpos = got.find(w, startpos, endpos)
313 if startpos < 0:
315 startpos += len(w)
/dports/lang/spidermonkey17/js/src/
H A Djsopcode.c2514 uintN pos, blockpos, startpos; in Decompile() local
2530 startpos = pos; in Decompile()
2545 ss->offsets[startpos] = todo; in Decompile()
/dports/japanese/gawk/gawk-3.0.6/
H A Dregex.c3899 int startpos;
3911 if (startpos < 0 || startpos > total_size)
3918 range = 0 - startpos;
3926 if (startpos > 0)
3964 if (startpos < size1 && startpos + range >= size1)
3967 d = (startpos >= size1 ? string2 - size1 : string1) + startpos;
4024 return startpos;
4035 + startpos);
4040 startpos += n;
4059 startpos--;
[all …]
/dports/irc/scrollz/ScrollZ-ScrollZ-2.3/source/
H A Dscreen.c738 output_line(str, startpos) in output_line() argument
740 int startpos;
/dports/irc/irssi-scripts/irssi-scripts/scripts/
H A Dhistory_search.pl112 my $startpos = index(lc($result), lc($typed));
114 Irssi::gui_input_set_pos($startpos + length($typed));
118 $prev_startpos = $startpos;
134 my $startpos = index(lc($history_line), $typed);
135 if ($startpos != -1) {
/dports/games/scorched3d/scorched/src/client/GLW/
H A DGLWToolTip.cpp131 size_t pos, startpos = 0; in calculateTip() local
134 while ((pos = tipText.find(LANG_STRING("\n"), startpos)) != LangString::npos) in calculateTip()
136 LangString part = LangString(tipText, startpos, pos - startpos); in calculateTip()
140 startpos = pos + 1; in calculateTip()
/dports/games/species/species/
H A Dwarrior.cpp154 const int startpos = len() + kingdom()->minsep(), /* closest enemy can be */ in fight() local
155 …rangepos = kingdom()->coresize() - startpos - kingdom()->minsep() - enemy.len(), // range for rand… in fight()
190 pos = (startpos + CRand::irand(rangepos)); in fight()
248 const int startpos = len() + kingdom()->minsep(), /* closest enemy can be */ in fight() local
249 …rangepos = kingdom()->coresize() - startpos - kingdom()->minsep() - bench.len(); // range for rand… in fight()
265 pos = (startpos + CRand::irand(rangepos)); in fight()
/dports/games/spring/spring_98.0/rts/Sim/Units/CommandAI/
H A DTransportCAI.cpp446 bool CTransportCAI::FindEmptyDropSpots(float3 startpos, float3 endpos, std::list<float3>& dropSpots) in FindEmptyDropSpots() argument
449 const float3 dir = (endpos - startpos).Normalize(); in FindEmptyDropSpots()
451 float3 nextPos = startpos; in FindEmptyDropSpots()
468 while (ti != transportees.end() && startpos.SqDistance(nextPos) < startpos.SqDistance(endpos)) { in FindEmptyDropSpots()
485 bool CTransportCAI::FindEmptyFloodSpots(float3 startpos, float3 endpos, std::list<float3>& dropSpot… in FindEmptyFloodSpots() argument
H A DTransportCAI.h36 bool FindEmptyDropSpots(float3 startpos, float3 endpos, std::list<float3>& dropSpots);
37 …bool FindEmptyFloodSpots(float3 startpos, float3 endpos, std::list<float3>& dropSpots, std::vector…
/dports/games/quake2-rogue/quake2-rogue-3.20/
H A Dg_local.h1044 void SpawnGrow_Spawn (vec3_t startpos, int size);
1045 void Widowlegs_Spawn (vec3_t startpos, vec3_t angles);
/dports/games/doomsday/doomsday-2.3.1/doomsday/sdk/liblegacy/include/de/
H A Dconcurrency.h90 DENG_PUBLIC thread_t Sys_StartThread(systhreadfunc_t startpos, void *parm,
113 DENG_PUBLIC thread_t Sys_StartThread(int (*startpos)(void *), void *parm,
/dports/ftp/php80-ftp/php-8.0.15/ext/ftp/
H A Dftp.c961 … const char *path, const size_t path_len, php_stream *instream, ftptype_t type, zend_long startpos) in ftp_put() argument
980 if (startpos > 0) { in ftp_put()
981 int arg_len = snprintf(arg, sizeof(arg), ZEND_LONG_FMT, startpos); in ftp_put()
2179 … const char *path, const size_t path_len, php_stream *instream, ftptype_t type, zend_long startpos) in ftp_nb_put() argument
2193 if (startpos > 0) { in ftp_nb_put()
2194 int arg_len = snprintf(arg, sizeof(arg), ZEND_LONG_FMT, startpos); in ftp_nb_put()
H A Dftp.h187 …const char *path, const size_t path_len, php_stream *instream, ftptype_t type, zend_long startpos);
217 …const char *path, const size_t path_len, php_stream *instream, ftptype_t type, zend_long startpos);
H A Dphp_ftp.c900 startpos = 0; in PHP_FUNCTION()
908 startpos = 0; in PHP_FUNCTION()
911 if (startpos) { in PHP_FUNCTION()
951 startpos = 0; in PHP_FUNCTION()
959 startpos = 0; in PHP_FUNCTION()
962 if (startpos) { in PHP_FUNCTION()
1009 startpos = 0; in PHP_FUNCTION()
1017 startpos = 0; in PHP_FUNCTION()
1020 if (startpos) { in PHP_FUNCTION()
1101 startpos = 0; in PHP_FUNCTION()
[all …]
/dports/ftp/php73-ftp/php-7.3.33/ext/ftp/
H A Dftp.h189 …const char *path, const size_t path_len, php_stream *instream, ftptype_t type, zend_long startpos);
219 …const char *path, const size_t path_len, php_stream *instream, ftptype_t type, zend_long startpos);
H A Dftp.c984 … const char *path, const size_t path_len, php_stream *instream, ftptype_t type, zend_long startpos) in ftp_put() argument
1003 if (startpos > 0) { in ftp_put()
1004 int arg_len = snprintf(arg, sizeof(arg), ZEND_LONG_FMT, startpos); in ftp_put()
2214 … const char *path, const size_t path_len, php_stream *instream, ftptype_t type, zend_long startpos) in ftp_nb_put() argument
2228 if (startpos > 0) { in ftp_nb_put()
2229 int arg_len = snprintf(arg, sizeof(arg), ZEND_LONG_FMT, startpos); in ftp_nb_put()
H A Dphp_ftp.c1147 startpos = 0; in PHP_FUNCTION()
1155 startpos = 0; in PHP_FUNCTION()
1158 if (startpos) { in PHP_FUNCTION()
1197 startpos = 0; in PHP_FUNCTION()
1205 startpos = 0; in PHP_FUNCTION()
1208 if (startpos) { in PHP_FUNCTION()
1254 startpos = 0; in PHP_FUNCTION()
1262 startpos = 0; in PHP_FUNCTION()
1265 if (startpos) { in PHP_FUNCTION()
1344 startpos = 0; in PHP_FUNCTION()
[all …]
/dports/ftp/php74-ftp/php-7.4.27/ext/ftp/
H A Dftp.c989 … const char *path, const size_t path_len, php_stream *instream, ftptype_t type, zend_long startpos) in ftp_put() argument
1008 if (startpos > 0) { in ftp_put()
1009 int arg_len = snprintf(arg, sizeof(arg), ZEND_LONG_FMT, startpos); in ftp_put()
2229 … const char *path, const size_t path_len, php_stream *instream, ftptype_t type, zend_long startpos) in ftp_nb_put() argument
2243 if (startpos > 0) { in ftp_nb_put()
2244 int arg_len = snprintf(arg, sizeof(arg), ZEND_LONG_FMT, startpos); in ftp_nb_put()
H A Dftp.h189 …const char *path, const size_t path_len, php_stream *instream, ftptype_t type, zend_long startpos);
219 …const char *path, const size_t path_len, php_stream *instream, ftptype_t type, zend_long startpos);
H A Dphp_ftp.c1175 startpos = 0; in PHP_FUNCTION()
1183 startpos = 0; in PHP_FUNCTION()
1186 if (startpos) { in PHP_FUNCTION()
1227 startpos = 0; in PHP_FUNCTION()
1235 startpos = 0; in PHP_FUNCTION()
1238 if (startpos) { in PHP_FUNCTION()
1286 startpos = 0; in PHP_FUNCTION()
1294 startpos = 0; in PHP_FUNCTION()
1297 if (startpos) { in PHP_FUNCTION()
1380 startpos = 0; in PHP_FUNCTION()
[all …]
/dports/finance/electrum/Electrum-4.1.5/packages/
H A Dbitstring.py2685 startpos = pos = found[0]
2692 yield self._slice(startpos, end)
2695 yield self._slice(startpos, found[0])
2696 startpos = pos = found[0]
/dports/emulators/pcsxr/pcsxr-codeplex-final/pcsxr/win32/zlib/
H A Dgzio.c56 long startpos; /* start of compressed data in file (header skipped) */ member
170 s->startpos = 10L;
178 s->startpos = (ftell(s->file) - s->stream.avail_in);
758 if (s->startpos == 0) { /* not a compressed file */
764 return fseek(s->file, s->startpos, SEEK_SET);

12345678910>>...179