Home
last modified time | relevance | path

Searched refs:pos_r (Results 1 – 25 of 52) sorted by relevance

123

/dports/audio/klystrack/klystrack-1.7.6-make-fix-12-gfe6e746/klystron/src/snd/
H A Dcydchr.c57 ++chr->pos_r; in cydchr_output()
58 if (chr->pos_r >= chr->lut_size) in cydchr_output()
59 chr->pos_r = 0; in cydchr_output()
69 a = chr->buffer[(chr->pos_buf - chr->lut[chr->pos_r] + chr->buf_size)]; in cydchr_output()
81 a = chr->buffer[(chr->pos_buf - chr->lut[chr->pos_r] / CHORUS_ACCURACY + chr->buf_size)]; in cydchr_output()
82 b = chr->buffer[(chr->pos_buf - chr->lut[chr->pos_r] / CHORUS_ACCURACY - 1 + chr->buf_size)]; in cydchr_output()
83 s = chr->lut[chr->pos_r] % CHORUS_ACCURACY; in cydchr_output()
102 chr->pos_r = (stereo_separation * chr->lut_size / 2 / 64) % chr->lut_size; in cydchr_set()
115 chr->pos_r = 0; in cydchr_set()
H A Dcydchr.h38 int pos_l, pos_r, pos_buf, buf_size, lut_size; member
/dports/math/gnumeric/gnumeric-1.12.50/src/
H A Dcellspan.c336 int pos_l, pos_r; in cell_calc_span() local
338 pos_l = pos_r = cell->pos.col; in cell_calc_span()
359 if (++pos_r < max_col){ in cell_calc_span()
363 if (cellspan_is_empty (pos_r, cell)) { in cell_calc_span()
365 *col2 = pos_r; in cell_calc_span()
376 int pos_l, pos_r; in cell_calc_span() local
378 pos_l = pos_r = cell->pos.col; in cell_calc_span()
393 while (++pos_r < max_col) { in cell_calc_span()
396 if (cellspan_is_empty (pos_r, cell)) { in cell_calc_span()
398 sheet_style_get (cell->base.sheet, pos_r, row); in cell_calc_span()
[all …]
/dports/multimedia/ccextractor/ccextractor-0.85/src/lib_ccx/
H A Dccx_encoders_sami.c49 int pos_r=0; in write_stringz_as_sami() local
52 while (pos_r < len) in write_stringz_as_sami()
54 if (string[pos_r] == '\\' && string[pos_r+1]=='n') in write_stringz_as_sami()
57 pos_r += 2; in write_stringz_as_sami()
61 unescaped[pos_w] = string[pos_r]; in write_stringz_as_sami()
62 pos_r++; in write_stringz_as_sami()
H A Dccx_encoders_ssa.c33 int pos_r=0; in write_stringz_as_ssa() local
36 while (pos_r<len) in write_stringz_as_ssa()
38 if (string[pos_r]=='\\' && string[pos_r+1]=='n') in write_stringz_as_ssa()
41 pos_r+=2; in write_stringz_as_ssa()
45 unescaped[pos_w]=string[pos_r]; in write_stringz_as_ssa()
46 pos_r++; in write_stringz_as_ssa()
H A Dccx_encoders_srt.c38 int pos_r=0; in write_stringz_as_srt() local
41 while (pos_r<len) in write_stringz_as_srt()
43 if (string[pos_r]=='\\' && string[pos_r+1]=='n') in write_stringz_as_srt()
46 pos_r+=2; in write_stringz_as_srt()
50 unescaped[pos_w]=string[pos_r]; in write_stringz_as_srt()
51 pos_r++; in write_stringz_as_srt()
H A Dccx_encoders_smptett.c42 int pos_r = 0; in write_stringz_as_smptett() local
60 while (pos_r < len) in write_stringz_as_smptett()
62 if (string[pos_r] == '\\' && string[pos_r+1] == 'n') in write_stringz_as_smptett()
65 pos_r += 2; in write_stringz_as_smptett()
69 unescaped[pos_w] = string[pos_r]; in write_stringz_as_smptett()
70 pos_r++; in write_stringz_as_smptett()
H A Dccx_encoders_webvtt.c148 int pos_r = 0; in write_stringz_as_webvtt() local
151 while (pos_r<len) in write_stringz_as_webvtt()
153 if (string[pos_r] == '\\' && string[pos_r + 1] == 'n') in write_stringz_as_webvtt()
156 pos_r += 2; in write_stringz_as_webvtt()
160 unescaped[pos_w] = string[pos_r]; in write_stringz_as_webvtt()
161 pos_r++; in write_stringz_as_webvtt()
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/tests/tcg/mips/mips64-dsp/
H A Dwrdsp.c8 long long ccond_r, outflag_r, efi_r, c_r, scount_r, pos_r; in main() local
25 pos_r = pos_i; in main()
42 || (c_o != c_r) || (scount_o != scount_r) || (pos_o != pos_r)) { in main()
H A Drddsp.c8 long long ccond_r, outflag_r, efi_r, c_r, scount_r, pos_r; in main() local
29 pos_r = pos_i; in main()
46 || (c_o != c_r) || (scount_o != scount_r) || (pos_o != pos_r)) { in main()
/dports/mail/dovecot/dovecot-2.3.17/src/lib-smtp/
H A Dsmtp-reply-parser.c94 const char **pos_r) in smtp_reply_parse_enhanced_code() argument
131 if (digits == 0 || (pos_r == NULL && *p != '\0')) in smtp_reply_parse_enhanced_code()
134 if (pos_r != NULL) { in smtp_reply_parse_enhanced_code()
136 *pos_r = p; in smtp_reply_parse_enhanced_code()
330 const char **pos_r) in smtp_reply_parser_parse_enhanced_code() argument
339 if (!smtp_reply_parse_enhanced_code(text, &code, pos_r)) { in smtp_reply_parser_parse_enhanced_code()
346 if (**pos_r != ' ' && **pos_r != '\r' && **pos_r != '\n') in smtp_reply_parser_parse_enhanced_code()
348 (*pos_r)++; in smtp_reply_parser_parse_enhanced_code()
H A Dsmtp-reply-parser.h10 const char **pos_r) ATTR_NULL(3);
/dports/audio/zynaddsubfx/zynaddsubfx-3.0.6-rc5/rtosc/include/rtosc/
H A Dmiditable.h175 :pos_r(0), pos_w(0), size(0) in PendingQueue()
193 vals[pos_r] = -1; in pop()
194 pos_r = (1+pos_r)%32; in pop()
204 int pos_r; variable
/dports/audio/hvl2wav/hivelytracker-8296a50/
H A Dundo.c1030 struct udat_pos_region *pos_r; in undo() local
1490 for( y=pos_r->pos; y<(pos_r->pos+pos_r->rows); y++ ) in undo()
1492 for( x=pos_r->left; x<(pos_r->left+pos_r->chans); x++ ) in undo()
1498 at->at_PosNr = pos_r->posnr; in undo()
1499 at->at_posed_curs = pos_r->posed_curs; in undo()
1500 at->at_curlch = pos_r->curlch; in undo()
1529 struct udat_pos_region *pos_r; in redo() local
1989 for( y=pos_r->pos; y<(pos_r->pos+pos_r->rows); y++ ) in redo()
1991 for( x=pos_r->left; x<(pos_r->left+pos_r->chans); x++ ) in redo()
1997 at->at_PosNr = pos_r->posnr; in redo()
[all …]
/dports/science/wannier90/wannier90-3.1.0/src/
H A Dhamiltonian.F90714 complex(kind=dp) :: fac, pos_r(3) local
757 pos_r(:) = 0._dp
770 pos_r(idir) = pos_r(idir) - &
774 pos_r(idir) = pos_r(idir) + &
780 write (file_unit, '(2I5,3x,6(E15.8,1x))') j, i, pos_r(:)
/dports/devel/py-qutip/qutip-4.6.2/qutip/cy/
H A Dptrace.pyx227 cdef int[::1] pos_r = np.empty(2, dtype=np.int32)
238 _i2_k_t(ii, tensor_table, pos_r)
239 if pos_c[1] == pos_r[1]:
241 new_row[p] = (pos_r[0])
255 cdef int[::1] pos_r = np.empty(2, dtype=np.int32)
265 _i2_k_t(ii, tensor_table, pos_r)
266 if pos_c[1] == pos_r[1]:
267 data_mat[pos_r[0], pos_c[0]] += data[jj]
/dports/mail/dovecot/dovecot-2.3.17/src/auth/
H A Dauth-stats.c75 auth_stats_import(const unsigned char *data, size_t size, size_t *pos_r, in auth_stats_import() argument
85 *pos_r = sizeof(*stats); in auth_stats_import()
/dports/mail/dovecot/dovecot-2.3.17/src/lib/
H A Distream-sized.c49 i_stream_sized_parent_read(struct istream_private *stream, size_t *pos_r) in i_stream_sized_parent_read() argument
57 stream->buffer = i_stream_get_data(stream->parent, pos_r); in i_stream_sized_parent_read()
58 } while (*pos_r <= stream->pos && ret > 0); in i_stream_sized_parent_read()
/dports/mail/dovecot/dovecot-2.3.17/src/plugins/old-stats/
H A Dmail-stats.c116 mail_stats_import(const unsigned char *data, size_t size, size_t *pos_r, in mail_stats_import() argument
126 *pos_r = sizeof(*stats); in mail_stats_import()
/dports/x11/xscreensaver/xscreensaver-5.44/hacks/glx/
H A Dlavalite.c128 double pos_r; /* position on horizontal circle */ member
779 b->pos_r = bellrand (0.9); in reset_ball()
831 b0->pos_r = 0; in generate_static_blobs()
921 b->pos_r += b->dr; in move_ball()
926 if (b->pos_r > 0.9) in move_ball()
928 b->pos_r = 0.9; in move_ball()
931 else if (b->pos_r < 0) in move_ball()
933 b->pos_r = -b->pos_r; in move_ball()
937 real_r = b->pos_r * bottle_radius_at (bp, b->z); in move_ball()
/dports/print/simple-fb2-reader/simple-fb2-reader-1.1.3/src/formats/fb2/FictionBook/body/section/table/
H A Dtr.c38 char* pos_r = g_utf8_offset_to_pointer(cells_buff[j]->str, (i+1)*cell_size); in fb2_parse_tr() local
40 glong cell_string_size = (ptrdiff_t)(pos_r - pos_l); in fb2_parse_tr()
/dports/devel/cgdb/cgdb-0.8.0/cgdb/
H A Dfiledlg.h16 struct filedlg *filedlg_new(int pos_r, int pos_c, int height, int width);
/dports/mail/dovecot/dovecot-2.3.17/src/lib-storage/index/dbox-common/
H A Ddbox-file-fix.c51 unsigned int len, const unsigned char **pos_r) in memchr_nocontrol() argument
57 *pos_r = data+i; in memchr_nocontrol()
63 *pos_r = NULL; in memchr_nocontrol()
/dports/mail/dovecot/dovecot-2.3.17/src/lib-old-stats/
H A Dstats.h22 bool (*import)(const unsigned char *data, size_t size, size_t *pos_r,
/dports/games/minetest_game/minetest_game-5.4.1/mods/carts/
H A Dcart_entity.lua256 local pos_r = vector.round(pos)
257 if not carts:is_rail(pos_r, self.railtype)
261 pos = pos_r

123