Home
last modified time | relevance | path

Searched refs:inspos (Results 1 – 25 of 85) sorted by relevance

1234

/dports/games/kobodeluxe/KoboDeluxe-0.5.1/sound/
H A Da_delay.c40 int inspos; member
74 int inspos = d->inspos;
114 d->inspos = inspos;
124 int inspos = d->inspos; in o_delay_process_r_s() local
175 d->inspos = inspos; in o_delay_process_r_s()
185 int inspos = d->inspos; in o_delay_process_s() local
230 d->inspos = inspos; in o_delay_process_s()
241 int inspos = d->inspos; in o_delay_process_tail_s() local
289 d->inspos = inspos; in o_delay_process_tail_s()
298 int inspos = d->inspos;
[all …]
/dports/games/kevedit/kevedit-0.5.1/src/texteditor/
H A Dregister.c34 int mergesvector(stringvector * dest, stringvector * src, int inspos, int wrapwidth, int editwidth);
59 int regput(char whichreg, stringvector * dest, int inspos, int wrapwidth, int editwidth) in regput() argument
61 return mergesvector(dest, &reg, inspos, wrapwidth, editwidth); in regput()
138 int mergesvector(stringvector * dest, stringvector * src, int inspos, int wrapwidth, int editwidth) in mergesvector() argument
142 return inspos; in mergesvector()
150 return wordwrap(dest, src->first->s, inspos, inspos, wrapwidth, editwidth); in mergesvector()
162 wordwrap(dest, insertionLine->s + inspos, strlen(dest->cur->s), 0, wrapwidth, editwidth); in mergesvector()
166 dest->cur->s[inspos] = 0; in mergesvector()
175 wordwrap(dest, src->first->s, inspos, 0, wrapwidth, editwidth); in mergesvector()
178 return inspos; in mergesvector()
H A Dregister.h48 int regput(char whichreg, stringvector * dest, int inspos, int wrapwidth, int editwidth);
/dports/news/golded+/golded-plus/golded+/goldlib/gall/
H A Dgfilutl2.cpp207 long inspos = -1; in maketruepath() local
209 inspos = 2; in maketruepath()
211 inspos = 0; in maketruepath()
213 inspos = 2; in maketruepath()
214 if(inspos != -1) { in maketruepath()
216 chdrive[0] = (inspos == 2) ? dirname[0] : cwd[0]; in maketruepath()
226 ndirname += dirname.c_str() + inspos; in maketruepath()
/dports/editors/micro/micro-2.0.10/internal/views/
H A Dsplits.go358 inspos := i
360 inspos++
362 copy(n.children[inspos+1:], n.children[inspos:])
363 n.children[inspos] = hn
393 inspos := i
395 inspos++
397 copy(n.children[inspos+1:], n.children[inspos:])
398 n.children[inspos] = vn
/dports/net/frr7-pythontools/frr-frr-7.5.1/tests/lib/
H A Dtest_atomlist.c101 struct testrun **inspos = &runs; \
102 while (*inspos && (*inspos)->lineno < tr_##name.lineno) \
103 inspos = &(*inspos)->next; \
104 tr_##name.next = *inspos; \
105 *inspos = &tr_##name; \
/dports/net/frr7/frr-frr-7.5.1/tests/lib/
H A Dtest_atomlist.c101 struct testrun **inspos = &runs; \
102 while (*inspos && (*inspos)->lineno < tr_##name.lineno) \
103 inspos = &(*inspos)->next; \
104 tr_##name.next = *inspos; \
105 *inspos = &tr_##name; \
/dports/math/eprover/eprover-E-2.0/CLAUSES/
H A Dccl_propclauses.c230 set->inspos = &(set->list); in PropClauseSetAlloc()
279 assert(set && clause && set->inspos); in PropClauseSetInsertPropClause()
282 *(set->inspos) = clause; in PropClauseSetInsertPropClause()
283 set->inspos = &(clause->next); in PropClauseSetInsertPropClause()
H A Dccl_propclauses.h57 PropClause_p *inspos; /* Points to next field of last clause, so we member
/dports/biology/jalview/jalview/src/jalview/datamodel/
H A DSeqCigar.java545 int inspos = shifts.shift(region[2]); // resolve insertion position in in createAlignmentSequences() local
552 if (g_seqs[s].length() <= inspos) in createAlignmentSequences()
555 for (int l = inspos - g_seqs[s].length(); l > 0; l--) in createAlignmentSequences()
561 g_seqs[s].insert(inspos, insert); in createAlignmentSequences()
565 g_seqs[s].insert(inspos, in createAlignmentSequences()
575 hidden.hideColumns(inspos, inspos + insert.length - 1); in createAlignmentSequences()
/dports/games/xshisen/xshisen-1.51/
H A Dscore.C371 int inspos; in Register() local
400 inspos = SCORENUM; in Register()
404 inspos = i; in Register()
408 if (inspos == SCORENUM || mybest < inspos) { in Register()
412 for(i=mybest; i>inspos; i--) { in Register()
417 rec[inspos].hour = h; in Register()
418 rec[inspos].min = m; in Register()
419 rec[inspos].sec = s; in Register()
420 strcpy(rec[inspos].name, myname); in Register()
/dports/textproc/p5-String-Tagged/String-Tagged-0.17/lib/String/
H A DTagged.pm603 my $inspos;
618 $inspos = $i;
623 $inspos = $range_start;
628 $inspos = $range_end unless defined $inspos;
630 $inspos = 0 if $inspos < 0;
631 $inspos = @$tags if $inspos > @$tags;
633 splice @$tags, $inspos, 0, $newtag;
/dports/games/kevedit/kevedit-0.5.1/src/structures/
H A Dsvector.c316 int wordwrap(stringvector * sv, char *str, int inspos, int pos, int wrapwidth, int editwidth) in wordwrap() argument
326 …if (sv->cur == NULL || sv->cur->s == NULL || wrapwidth > editwidth || editwidth < 2 || inspos > st… in wordwrap()
342 for (i = 0; i < inspos; i++) in wordwrap()
358 if (pos >= inspos) in wordwrap()
361 newpos = inspos - pos - 1; in wordwrap()
H A Dsvector.h93 int wordwrap(stringvector * sv, char *str, int inspos, int pos, int wrapwidth, int editwidth);
/dports/audio/deadbeef/deadbeef-0.7.2/plugins/adplug/adplug/
H A Dpsi.cpp82 unsigned short inspos = (psi.instr_table[i * 2 + 1] << 8) + psi.instr_table[i * 2]; in xadplayer_rewind() local
84 opl_write(psi_adlib_registers[i*11 + j],tune[inspos + j]); in xadplayer_rewind()
/dports/audio/libadplug/adplug-adplug-2.3.3/src/
H A Dpsi.cpp82 unsigned short inspos = (psi.instr_table[i * 2 + 1] << 8) + psi.instr_table[i * 2]; in xadplayer_rewind() local
84 opl_write(psi_adlib_registers[i*11 + j],tune[inspos + j]); in xadplayer_rewind()
/dports/japanese/p5-PDFJ/ja-p5-PDFJ-0.90_3/
H A DPDFJ.pm5108 skipsize($bobjects[$inspos - 1], $bobjects[$inspos]);
5182 $inspos = 0;
5183 while( $inspos < @$objects && ($objects->[$inspos]->float ge $float ||
5185 $inspos++;
5189 $seppos = $inspos;
5194 while( $inspos > 0 && ($objects->[$inspos - 1]->float ge $float ||
5196 $inspos--;
5203 while( $inspos > 0 && ($objects->[$inspos - 1]->float gt $float ||
5205 $inspos--;
5209 while( $inspos > 0 && ($objects->[$inspos - 1]->float =~ /e/ ||
[all …]
/dports/audio/libmodplug/libmodplug-0.8.9.0/src/
H A Dload_it.cpp163 DWORD inspos[MAX_INSTRUMENTS]; in ReadIT() local
235 memset(inspos, 0, sizeof(inspos)); in ReadIT()
239 memcpy(inspos, lpStream+dwMemPos, inspossize); in ReadIT()
242 inspos[j] = bswapLE32(inspos[j]); in ReadIT()
376 (inspos[nins] < dwMemLength - sizeof(ITOLDINSTRUMENT))) in ReadIT()
609 DWORD inspos[MAX_INSTRUMENTS]; in SaveIT() local
621 memset(inspos, 0, sizeof(inspos)); in SaveIT()
718 if (header.insnum) fwrite(inspos, 4, header.insnum, f); in SaveIT()
870 inspos[nins-1] = dwPos; in SaveIT()
1158 inspos[WW] = bswapLE32(inspos[WW]); in SaveIT()
[all …]
/dports/audio/sdl2_mixer/SDL2_mixer-2.0.4/external/libmodplug-0.8.9.0/src/
H A Dload_it.cpp162 DWORD inspos[MAX_INSTRUMENTS];
234 memset(inspos, 0, sizeof(inspos));
238 memcpy(inspos, lpStream+dwMemPos, inspossize);
241 inspos[j] = bswapLE32(inspos[j]);
375 (inspos[nins] < dwMemLength - sizeof(ITOLDINSTRUMENT)))
608 DWORD inspos[MAX_INSTRUMENTS];
620 memset(inspos, 0, sizeof(inspos));
717 if (header.insnum) fwrite(inspos, 4, header.insnum, f);
869 inspos[nins-1] = dwPos;
1157 inspos[WW] = bswapLE32(inspos[WW]);
[all …]
/dports/www/fswiki/wiki3_6_2/lib/
H A DPDFJ.pm3390 if( $inspos == 0 ) {
3393 } elsif( $inspos == @bobjects ) {
3456 my $inspos;
3458 $inspos = 0;
3459 while( $inspos < @$objects && $objects->[$inspos]->float eq 'b' ) {
3460 $inspos++;
3463 $inspos = @$objects;
3465 $inspos = @$objects;
3466 while( $inspos > 0 && $objects->[$inspos - 1]->float eq 'e' ) {
3467 $inspos--;
[all …]
/dports/biology/jalview/jalview/src/jalview/analysis/
H A DAlignSeq.java998 int inspos = -1; in replaceMatchingSeqsWith() local
1003 if (inspos == -1) in replaceMatchingSeqsWith()
1005 inspos = ap; in replaceMatchingSeqsWith()
1026 annotations.addAll(inspos == -1 ? annotations.size() : inspos, in replaceMatchingSeqsWith()
/dports/devel/git-svn/git-2.34.1/
H A Dcommit.c1017 int inspos, copypos; in sign_with_header() local
1025 inspos = buf->len; in sign_with_header()
1027 inspos = eoh - buf->buf + 1; in sign_with_header()
1042 strbuf_insert(buf, inspos, gpg_sig_header, gpg_sig_header_len); in sign_with_header()
1043 inspos += gpg_sig_header_len; in sign_with_header()
1045 strbuf_insertstr(buf, inspos++, " "); in sign_with_header()
1046 strbuf_insert(buf, inspos, bol, len); in sign_with_header()
1047 inspos += len; in sign_with_header()
/dports/devel/git-p4/git-2.34.1/
H A Dcommit.c1017 int inspos, copypos;
1025 inspos = buf->len;
1027 inspos = eoh - buf->buf + 1;
1042 strbuf_insert(buf, inspos, gpg_sig_header, gpg_sig_header_len);
1043 inspos += gpg_sig_header_len;
1045 strbuf_insertstr(buf, inspos++, " ");
1046 strbuf_insert(buf, inspos, bol, len);
1047 inspos += len;
/dports/devel/git/git-2.34.1/
H A Dcommit.c1017 int inspos, copypos; in sign_with_header() local
1025 inspos = buf->len; in sign_with_header()
1027 inspos = eoh - buf->buf + 1; in sign_with_header()
1042 strbuf_insert(buf, inspos, gpg_sig_header, gpg_sig_header_len); in sign_with_header()
1043 inspos += gpg_sig_header_len; in sign_with_header()
1045 strbuf_insertstr(buf, inspos++, " "); in sign_with_header()
1046 strbuf_insert(buf, inspos, bol, len); in sign_with_header()
1047 inspos += len; in sign_with_header()
/dports/devel/git-gui/git-2.34.1/
H A Dcommit.c1017 int inspos, copypos; in sign_with_header() local
1025 inspos = buf->len; in sign_with_header()
1027 inspos = eoh - buf->buf + 1; in sign_with_header()
1042 strbuf_insert(buf, inspos, gpg_sig_header, gpg_sig_header_len); in sign_with_header()
1043 inspos += gpg_sig_header_len; in sign_with_header()
1045 strbuf_insertstr(buf, inspos++, " "); in sign_with_header()
1046 strbuf_insert(buf, inspos, bol, len); in sign_with_header()
1047 inspos += len; in sign_with_header()

1234