Home
last modified time | relevance | path

Searched refs:source_pos (Results 1 – 25 of 322) sorted by relevance

12345678910>>...13

/dports/games/shootingstar/shootingstar-1.2.0/src/engine/
H A Ddbg.h341 struct source_pos struct
357 source_pos() in source_pos() argument
399 const source_pos pos;
866 struct assert_info : public source_pos
1026 inline void sentinel(const source_pos &here) in sentinel()
1267 const source_pos &here) in check_bounds()
1374 trace(const source_pos &here);
1394 const source_pos m_pos;
1510 const source_pos &pos) in post_mem_fun()
1530 const source_pos m_pos;
[all …]
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/sound/
H A D5110intf.c32 static UINT32 source_pos; variable
64 source_pos = 0; in tms5110_sh_start()
175 if (source_pos > 0) in tms5110_update()
180 *buffer++ = (((INT32)prev * (FRAC_ONE - source_pos)) + ((INT32)curr * source_pos)) >> FRAC_BITS; in tms5110_update()
181 source_pos += source_step; in tms5110_update()
186 if (source_pos >= FRAC_ONE) in tms5110_update()
187 source_pos -= FRAC_ONE; in tms5110_update()
212 *buffer++ = (((INT32)prev * (FRAC_ONE - source_pos)) + ((INT32)curr * source_pos)) >> FRAC_BITS; in tms5110_update()
213 source_pos += source_step; in tms5110_update()
218 if (source_pos >= FRAC_ONE) in tms5110_update()
[all …]
H A D5220intf.c31 static UINT32 source_pos; variable
57 source_pos = 0; in tms5220_sh_start()
192 if (source_pos > 0) in tms5220_update()
197 *buffer++ = (((INT32)prev * (FRAC_ONE - source_pos)) + ((INT32)curr * source_pos)) >> FRAC_BITS; in tms5220_update()
198 source_pos += source_step; in tms5220_update()
203 if (source_pos >= FRAC_ONE) in tms5220_update()
204 source_pos -= FRAC_ONE; in tms5220_update()
229 *buffer++ = (((INT32)prev * (FRAC_ONE - source_pos)) + ((INT32)curr * source_pos)) >> FRAC_BITS; in tms5220_update()
230 source_pos += source_step; in tms5220_update()
235 if (source_pos >= FRAC_ONE) in tms5220_update()
[all …]
H A Dadpcm.c57 UINT32 source_pos; /* current fractional position */ member
208 if (voice->source_pos > 0) in adpcm_update()
211 while (length > 0 && voice->source_pos < FRAC_ONE) in adpcm_update()
213 …*buffer++ = (((INT32)prev * (FRAC_ONE - voice->source_pos)) + ((INT32)curr * voice->source_pos)) >… in adpcm_update()
214 voice->source_pos += voice->source_step; in adpcm_update()
219 if (voice->source_pos >= FRAC_ONE) in adpcm_update()
220 voice->source_pos -= FRAC_ONE; in adpcm_update()
242 …*buffer++ = (((INT32)prev * (FRAC_ONE - voice->source_pos)) + ((INT32)curr * voice->source_pos)) >… in adpcm_update()
243 voice->source_pos += voice->source_step; in adpcm_update()
248 if (voice->source_pos >= FRAC_ONE) in adpcm_update()
[all …]
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/sound/
H A D5110intf.c32 static UINT32 source_pos; variable
64 source_pos = 0; in tms5110_sh_start()
175 if (source_pos > 0) in tms5110_update()
180 *buffer++ = (((INT32)prev * (FRAC_ONE - source_pos)) + ((INT32)curr * source_pos)) >> FRAC_BITS; in tms5110_update()
181 source_pos += source_step; in tms5110_update()
186 if (source_pos >= FRAC_ONE) in tms5110_update()
187 source_pos -= FRAC_ONE; in tms5110_update()
212 *buffer++ = (((INT32)prev * (FRAC_ONE - source_pos)) + ((INT32)curr * source_pos)) >> FRAC_BITS; in tms5110_update()
213 source_pos += source_step; in tms5110_update()
218 if (source_pos >= FRAC_ONE) in tms5110_update()
[all …]
H A D5220intf.c31 static UINT32 source_pos; variable
57 source_pos = 0; in tms5220_sh_start()
192 if (source_pos > 0) in tms5220_update()
197 *buffer++ = (((INT32)prev * (FRAC_ONE - source_pos)) + ((INT32)curr * source_pos)) >> FRAC_BITS; in tms5220_update()
198 source_pos += source_step; in tms5220_update()
203 if (source_pos >= FRAC_ONE) in tms5220_update()
204 source_pos -= FRAC_ONE; in tms5220_update()
229 *buffer++ = (((INT32)prev * (FRAC_ONE - source_pos)) + ((INT32)curr * source_pos)) >> FRAC_BITS; in tms5220_update()
230 source_pos += source_step; in tms5220_update()
235 if (source_pos >= FRAC_ONE) in tms5220_update()
[all …]
/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/sound/
H A D5220intf.c30 static UINT32 source_pos; variable
56 source_pos = 0; in tms5220_sh_start()
196 if (source_pos > 0) in tms5220_update()
201 *buffer++ = (((INT32)prev * (FRAC_ONE - source_pos)) + ((INT32)curr * source_pos)) >> FRAC_BITS; in tms5220_update()
202 source_pos += source_step; in tms5220_update()
207 if (source_pos >= FRAC_ONE) in tms5220_update()
208 source_pos -= FRAC_ONE; in tms5220_update()
233 *buffer++ = (((INT32)prev * (FRAC_ONE - source_pos)) + ((INT32)curr * source_pos)) >> FRAC_BITS; in tms5220_update()
234 source_pos += source_step; in tms5220_update()
239 if (source_pos >= FRAC_ONE) in tms5220_update()
[all …]
H A Dadpcm.c53 UINT32 source_pos; /* current fractional position */ member
203 if (voice->source_pos > 0) in adpcm_update()
206 while (length > 0 && voice->source_pos < FRAC_ONE) in adpcm_update()
208 …*buffer++ = (((INT32)prev * (FRAC_ONE - voice->source_pos)) + ((INT32)curr * voice->source_pos)) >… in adpcm_update()
209 voice->source_pos += voice->source_step; in adpcm_update()
214 if (voice->source_pos >= FRAC_ONE) in adpcm_update()
215 voice->source_pos -= FRAC_ONE; in adpcm_update()
237 …*buffer++ = (((INT32)prev * (FRAC_ONE - voice->source_pos)) + ((INT32)curr * voice->source_pos)) >… in adpcm_update()
238 voice->source_pos += voice->source_step; in adpcm_update()
243 if (voice->source_pos >= FRAC_ONE) in adpcm_update()
[all …]
/dports/devel/py-rply/rply-0.7.7/rply/
H A Derrors.py9 def __init__(self, message, source_pos): argument
11 self.source_pos = source_pos
17 return self.source_pos
20 return 'LexingError(%r, %r)' % (self.message, self.source_pos)
27 def __init__(self, message, source_pos): argument
29 self.source_pos = source_pos
35 return self.source_pos
38 return 'ParsingError(%r, %r)' % (self.message, self.source_pos)
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/burn/snd/
H A Ddownsample.h31 INT32 source_pos = nFractionalPosition >> 16; // nFractionalPosition = 16.16 in resample() local
40 sample += in_buffer[source_pos++] * partial_sam_vol >> 8; in resample()
47 if (counter) bprintf(0, _T("%d\n"),source_pos); in resample()
49 sample += in_buffer[source_pos++] * (1 << 8); in resample()
58 last_pos = source_pos; in resample()
61 if (partial_sam_vol) bprintf(0, _T("%d (last partial: %X)\n"),source_pos, left & 0xffff); in resample()
107 INT32 source_pos = nFractionalPosition >> 16; // nFractionalPosition = 16.16 in resample_mono() local
116 sample += in_buffer[source_pos++] * partial_sam_vol >> 8; in resample_mono()
123 if (counter) bprintf(0, _T("%d\n"),source_pos); in resample_mono()
125 sample += in_buffer[source_pos++] * (1 << 8); in resample_mono()
[all …]
H A Dstream.h122 INT32 source_pos = (nFractionalPosition >> 16); in samplesample() local
127 INT32 sample = in_buffer[ch][source_pos]; in samplesample()
168 last_pos = source_pos; in downsample()
173 source_pos++; in downsample()
180 if (counter) bprintf(0, _T("%d\n"),source_pos); in downsample()
181 last_pos = source_pos; in downsample()
186 source_pos++; in downsample()
191 if (source_pos < out_buffer_size) { in downsample()
199 last_pos = source_pos; in downsample()
200 last_sample = in_buffer[0][source_pos]; in downsample()
[all …]
/dports/devel/p5-VCP-autrijus/VCP-autrijus-snapshot-0.9-20050110/lib/VCP/
H A DPatch.pm155 my $source_pos = 1;
163 while ( $source_pos < $first_source_line ) {
165 croak "Ran off end of source file $source_fn at line $source_pos"
168 ++$source_pos;
173 croak "Ran off end of source $source_fn at line $source_pos"
180 croak "Patch line disagrees with source line $source_pos:\n",
187 ++$source_pos;
191 croak "Ran off end of source file $source_fn at line $source_pos"
194 ++$source_pos;
198 ++$source_pos;
/dports/astro/py-astropy/astropy-5.0/astropy/io/ascii/src/
H A Dtokenizer.c15 tokenizer->source_pos = 0; in create_tokenizer()
225 ++self->source_pos; in end_line()
246 ++self->source_pos; in end_line()
273 c = self->source[self->source_pos]; in skip_lines()
306 ++self->source_pos; in skip_lines()
355 c = self->source[self->source_pos]; in tokenize()
413 --self->source_pos; in tokenize()
420 --self->source_pos; in tokenize()
424 if (self->source_pos == -1 in tokenize()
432 ++self->source_pos; in tokenize()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/test/pc/e2e/analyzer/video/
H A Ddefault_encoded_image_data_injector.cc69 size_t source_pos = source.size() - 1; in ExtractData() local
76 size_t insertion_pos = source_pos - kEncodedImageBufferExpansion + 1; in ExtractData()
94 if (source_pos < length + kEncodedImageBufferExpansion) { in ExtractData()
97 source_pos -= length + kEncodedImageBufferExpansion; in ExtractData()
108 source_pos = 0; in ExtractData()
111 while (source_pos < source.size()) { in ExtractData()
113 RTC_CHECK_LE(source_pos + kEncodedImageBufferExpansion + info.length, in ExtractData()
118 memcpy(&out.data()[out_pos], &source.data()[source_pos], info.length); in ExtractData()
121 source_pos += info.length + kEncodedImageBufferExpansion; in ExtractData()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/test/pc/e2e/analyzer/video/
H A Ddefault_encoded_image_data_injector.cc73 size_t source_pos = source.size() - 1; in ExtractData() local
80 size_t insertion_pos = source_pos - kEncodedImageBufferExpansion + 1; in ExtractData()
98 if (source_pos < length + kEncodedImageBufferExpansion) { in ExtractData()
101 source_pos -= length + kEncodedImageBufferExpansion; in ExtractData()
112 source_pos = 0; in ExtractData()
115 while (source_pos < source.size()) { in ExtractData()
117 RTC_CHECK_LE(source_pos + kEncodedImageBufferExpansion + info.length, in ExtractData()
122 memcpy(&buffer->data()[out_pos], &source.data()[source_pos], info.length); in ExtractData()
125 source_pos += info.length + kEncodedImageBufferExpansion; in ExtractData()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/parsing/
H A Dscanner.cc120 int begin = source_pos() - 2; in ScanHexNumber()
359 int current_pos = source_pos(); in SeekForward()
420 octal_pos_ = Location(source_pos() - 2, source_pos() - 1); in ScanEscape()
450 octal_pos_ = Location(source_pos() - i - 1, source_pos() - 1); in ScanOctalEscape()
627 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDigitsWithNumericSeparators()
639 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDigitsWithNumericSeparators()
655 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDecimalDigits()
668 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDecimalAsSmiWithNumericSeparators()
683 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDecimalAsSmiWithNumericSeparators()
790 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanNumber()
[all …]
/dports/lang/v8/v8-9.6.180.12/src/parsing/
H A Dscanner.cc122 int begin = source_pos() - 2; in ScanHexNumber()
357 int current_pos = source_pos(); in SeekForward()
418 octal_pos_ = Location(source_pos() - 2, source_pos() - 1); in ScanEscape()
448 octal_pos_ = Location(source_pos() - i - 1, source_pos() - 1); in ScanOctalEscape()
625 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDigitsWithNumericSeparators()
637 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDigitsWithNumericSeparators()
653 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDecimalDigits()
666 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDecimalAsSmiWithNumericSeparators()
681 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDecimalAsSmiWithNumericSeparators()
788 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanNumber()
[all …]
/dports/science/nest/nest-simulator-3.1/nestkernel/
H A Dparameter.h94 const std::vector< double >& source_pos,
387 const std::vector< double >& source_pos, in value()
398 return source_pos[ dimension_ ]; in value()
438 const std::vector< double >& source_pos,
486 const std::vector< double >& source_pos, in value()
538 const std::vector< double >& source_pos, in value()
590 const std::vector< double >& source_pos, in value()
642 const std::vector< double >& source_pos, in value()
713 const std::vector< double >& source_pos, in value()
802 const std::vector< double >& source_pos, in value()
[all …]
H A Dparameter.cpp72 if ( target_pos.size() != source_pos.size() ) in apply()
77 source_pos.size() ) ); in apply()
177 const std::vector< double >& source_pos, in value()
186 return layer.compute_distance( source_pos, target_pos ); in value()
242 const std::vector< double >& source_pos, in value()
255 value = p_->value( rng, source_pos, target_pos, layer, node ); in value()
276 const std::vector< double >& source_pos, in value()
299 const std::vector< double >& source_pos, in value()
345 const std::vector< double >& source_pos, in value()
376 const std::vector< double >& source_pos, in value()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/parsing/
H A Dscanner.cc115 int begin = source_pos() - 2; in ScanHexNumber()
354 int current_pos = source_pos(); in SeekForward()
436 octal_pos_ = Location(source_pos() - i - 1, source_pos() - 1); in ScanOctalEscape()
489 ReportScannerError(source_pos(), in ScanPrivateName()
614 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDigitsWithNumericSeparators()
626 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDigitsWithNumericSeparators()
642 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDecimalDigits()
655 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDecimalAsSmiWithNumericSeparators()
670 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanDecimalAsSmiWithNumericSeparators()
777 ReportScannerError(Location(source_pos(), source_pos() + 1), in ScanNumber()
[all …]
/dports/www/py-formencode/FormEncode-1.3.0/formencode/
H A Drewritingparser.py40 self.source_pos = 1, 0
93 self.source_pos = self.getpos()
97 self.source_pos = self.getpos()
99 if cur_line == self.source_pos[0]:
101 self.lines[cur_line - 1][self.source_pos[1]:cur_offset])
104 self.lines[self.source_pos[0] - 1][self.source_pos[1]:])
106 for i in range(self.source_pos[0] + 1, cur_line):
110 self.source_pos = self.getpos()
/dports/games/cataclysm-dda-tiles/Cataclysm-DDA-0.F/src/
H A Dhandle_liquid.cpp163 const tripoint *const source_pos, in get_liquid_target() argument
191 if( source_pos != nullptr ) { in get_liquid_target()
194 here.name( *source_pos ) ); in get_liquid_target()
267 if( source_pos != nullptr && *source_pos == target_pos ) { in get_liquid_target()
282 if( liquid.has_infinite_charges() && source_pos != nullptr ) { in get_liquid_target()
295 if( source_pos != nullptr && *source_pos == target.pos ) { in get_liquid_target()
328 static bool perform_liquid_transfer( item &liquid, const tripoint *const source_pos, in perform_liquid_transfer() argument
345 } else if( source_pos != nullptr ) { in perform_liquid_transfer()
347 serialize_liquid_source( player_character.activity, *source_pos, liquid ); in perform_liquid_transfer()
442 const tripoint *const source_pos, in handle_liquid() argument
[all …]
/dports/games/cataclysm-dda/Cataclysm-DDA-0.F/src/
H A Dhandle_liquid.cpp163 const tripoint *const source_pos, in get_liquid_target() argument
191 if( source_pos != nullptr ) { in get_liquid_target()
194 here.name( *source_pos ) ); in get_liquid_target()
267 if( source_pos != nullptr && *source_pos == target_pos ) { in get_liquid_target()
282 if( liquid.has_infinite_charges() && source_pos != nullptr ) { in get_liquid_target()
295 if( source_pos != nullptr && *source_pos == target.pos ) { in get_liquid_target()
328 static bool perform_liquid_transfer( item &liquid, const tripoint *const source_pos, in perform_liquid_transfer() argument
345 } else if( source_pos != nullptr ) { in perform_liquid_transfer()
347 serialize_liquid_source( player_character.activity, *source_pos, liquid ); in perform_liquid_transfer()
442 const tripoint *const source_pos, in handle_liquid() argument
[all …]
/dports/databases/pgrouting/pgrouting-3.2.0/sql/trsp/
H A Dpgr_trsp.sql141 source_pos FLOAT := $3;
179 IF source_pos = 0 THEN
181 ELSE IF source_pos = 1 THEN
185 …union_sql1 = '(SELECT 1 as pid, ' || source_eid || ' as edge_id, ' || source_pos || '::float8 as …
233 SELECT seq, CASE WHEN seq = 0 AND ' || source_pos || '=0 THEN id1
234 WHEN seq = 0 AND ' || source_pos || '!=0 THEN -1
248 …RETURN query SELECT * FROM _pgr_trsp(new_sql, source_eid, source_pos, target_eid, target_pos, dire…
/dports/lang/py-hy/hy-0.19.0/hy/lex/
H A Dexceptions.py14 source_pos = token.getsourcepos()
16 if source_pos:
17 lineno = source_pos.lineno
18 colno = source_pos.colno

12345678910>>...13