Home
last modified time | relevance | path

Searched refs:nextbyte (Results 1 – 25 of 144) sorted by relevance

123456

/dports/print/lilypond-devel/lilypond-2.23.5/python/
H A Dmidi.py102 while nextbyte >= 0x80:
104 nextbyte = getbyte()
105 return sum + nextbyte
113 return status, nextbyte
117 return status, nextbyte, getbyte()
120 def _read_string(nextbyte, getbyte): argument
159 for nextbyte in dataiter:
163 nextbyte = getbyte()
164 if nextbyte >= 0x80:
165 status = nextbyte
[all …]
/dports/print/lilypond/lilypond-2.22.1/python/
H A Dmidi.py102 while nextbyte >= 0x80:
104 nextbyte = getbyte()
105 return sum + nextbyte
113 return status, nextbyte
117 return status, nextbyte, getbyte()
120 def _read_string(nextbyte, getbyte): argument
159 for nextbyte in dataiter:
163 nextbyte = getbyte()
164 if nextbyte >= 0x80:
165 status = nextbyte
[all …]
/dports/net/iaxmodem/iaxmodem-1.2.0/lib/spandsp/tests/
H A Dhdlc_tests.c205 int nextbyte; in test_hdlc_modes() local
230 hdlc_rx_put_byte(&rx, nextbyte); in test_hdlc_modes()
311 nextbyte = hdlc_tx_get_bit(&tx); in test_hdlc_modes()
312 hdlc_rx_put_bit(&rx, nextbyte); in test_hdlc_modes()
359 hdlc_rx_put_byte(&rx, nextbyte); in test_hdlc_modes()
450 int nextbyte; in test_hdlc_frame_length_error_handling() local
473 hdlc_rx_put_bit(&rx, nextbyte); in test_hdlc_frame_length_error_handling()
534 int nextbyte; in test_hdlc_crc_error_handling() local
558 hdlc_rx_put_bit(&rx, nextbyte); in test_hdlc_crc_error_handling()
615 int nextbyte; in test_hdlc_abort_handling() local
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/spandsp/tests/
H A Dhdlc_tests.c177 int nextbyte; in test_hdlc_modes() local
201 nextbyte = hdlc_tx_get_byte(&tx); in test_hdlc_modes()
202 hdlc_rx_put_byte(&rx, nextbyte); in test_hdlc_modes()
283 nextbyte = hdlc_tx_get_bit(&tx); in test_hdlc_modes()
284 hdlc_rx_put_bit(&rx, nextbyte); in test_hdlc_modes()
422 int nextbyte; in test_hdlc_frame_length_error_handling() local
445 hdlc_rx_put_bit(&rx, nextbyte); in test_hdlc_frame_length_error_handling()
506 int nextbyte; in test_hdlc_crc_error_handling() local
530 hdlc_rx_put_bit(&rx, nextbyte); in test_hdlc_crc_error_handling()
587 int nextbyte; in test_hdlc_abort_handling() local
[all …]
/dports/comms/spandsp/spandsp-284fe91/tests/
H A Dhdlc_tests.c177 int nextbyte; in test_hdlc_modes() local
201 nextbyte = hdlc_tx_get_byte(&tx); in test_hdlc_modes()
202 hdlc_rx_put_byte(&rx, nextbyte); in test_hdlc_modes()
283 nextbyte = hdlc_tx_get_bit(&tx); in test_hdlc_modes()
284 hdlc_rx_put_bit(&rx, nextbyte); in test_hdlc_modes()
422 int nextbyte; in test_hdlc_frame_length_error_handling() local
445 hdlc_rx_put_bit(&rx, nextbyte); in test_hdlc_frame_length_error_handling()
506 int nextbyte; in test_hdlc_crc_error_handling() local
530 hdlc_rx_put_bit(&rx, nextbyte); in test_hdlc_crc_error_handling()
587 int nextbyte; in test_hdlc_abort_handling() local
[all …]
/dports/archivers/lib1541img/lib1541img-1.1/src/lib/1541img/
H A Dzc45reader.c7 static int nextbyte(const uint8_t *zcfile, size_t *pos, size_t zcfilelen) in nextbyte() function
18 int byte = nextbyte(zcfile, pos, zcfilelen); in decodeplain()
33 int fill = nextbyte(zcfile, pos, zcfilelen); in decodefill()
50 int len = nextbyte(zcfile, pos, zcfilelen); in decoderle()
57 int repeat = nextbyte(zcfile, pos, zcfilelen); in decoderle()
66 int byte = nextbyte(zcfile, pos, zcfilelen); in decoderle()
75 int repcount = nextbyte(zcfile, pos, zcfilelen); in decoderle()
82 int repbyte = nextbyte(zcfile, pos, zcfilelen); in decoderle()
111 int control = nextbyte(zcfile, pos, zcfilelen); in decodesector()
119 int sectornum = nextbyte(zcfile, pos, zcfilelen); in decodesector()
[all …]
/dports/print/texlive-base/texlive-20150521-source/texk/ps2pk/
H A Dpk2bm.c114 halfword nextword; quarterword nextbyte; in main() local
152 nextbyte = nextword >> (bitsleft-8) & 0xff; in main()
155 if (bitmap) dots(nextbyte, w-col>7? 8: w-col); in main()
156 else if (hexmap) printf("%02x", nextbyte); in main()
157 else printf(" 0x%02x, ", lsbf(nextbyte)); in main()
160 nextbyte = nextword << (8-bitsleft) & 0xff; in main()
164 nextbyte = nextbyte | (nextword >> (16-(8-bitsleft)) in main()
168 if (bitmap) dots(nextbyte, w-col>7? 8: w-col); in main()
169 else if (hexmap) printf("%02x", nextbyte); in main()
170 else printf(" 0x%02x, ", lsbf(nextbyte)); in main()
/dports/security/libscrypt/libscrypt-1.21/
H A Db64.c194 unsigned char nextbyte; local
225 nextbyte = ((pos - Base64) & 0x0f) << 4;
227 target[tarindex+1] = nextbyte;
228 else if (nextbyte)
239 nextbyte = ((pos - Base64) & 0x03) << 6;
241 target[tarindex+1] = nextbyte;
242 else if (nextbyte)
/dports/misc/urbit/urbit-urbit-0.6.0/subprojects/libscrypt/
H A Db64.c194 unsigned char nextbyte; local
225 nextbyte = ((pos - Base64) & 0x0f) << 4;
227 target[tarindex+1] = nextbyte;
228 else if (nextbyte)
239 nextbyte = ((pos - Base64) & 0x03) << 6;
241 target[tarindex+1] = nextbyte;
242 else if (nextbyte)
/dports/security/libressl/libressl-3.4.3/apps/nc/compat/
H A Dbase64.c196 u_char nextbyte; local
227 nextbyte = ((pos - Base64) & 0x0f) << 4;
229 target[tarindex+1] = nextbyte;
230 else if (nextbyte)
241 nextbyte = ((pos - Base64) & 0x03) << 6;
243 target[tarindex+1] = nextbyte;
244 else if (nextbyte)
/dports/security/libressl-static/libressl-3.3.5/apps/nc/compat/
H A Dbase64.c196 u_char nextbyte; local
227 nextbyte = ((pos - Base64) & 0x0f) << 4;
229 target[tarindex+1] = nextbyte;
230 else if (nextbyte)
241 nextbyte = ((pos - Base64) & 0x03) << 6;
243 target[tarindex+1] = nextbyte;
244 else if (nextbyte)
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/utils/libscrypt/
H A Db64.c194 unsigned char nextbyte; local
225 nextbyte = ((pos - Base64) & 0x0f) << 4;
227 target[tarindex+1] = nextbyte;
228 else if (nextbyte)
239 nextbyte = ((pos - Base64) & 0x03) << 6;
241 target[tarindex+1] = nextbyte;
242 else if (nextbyte)
/dports/www/obhttpd/libressl-3.4.1/apps/nc/compat/
H A Dbase64.c195 u_char nextbyte; local
226 nextbyte = ((pos - Base64) & 0x0f) << 4;
228 target[tarindex+1] = nextbyte;
229 else if (nextbyte)
240 nextbyte = ((pos - Base64) & 0x03) << 6;
242 target[tarindex+1] = nextbyte;
243 else if (nextbyte)
/dports/devel/libubox/libubox-c83a84af/
H A Dbase64.c204 u_char nextbyte; in b64_decode() local
235 nextbyte = ((pos - Base64) & 0x0f) << 4; in b64_decode()
237 target[tarindex+1] = nextbyte; in b64_decode()
238 else if (nextbyte) in b64_decode()
249 nextbyte = ((pos - Base64) & 0x03) << 6; in b64_decode()
251 target[tarindex+1] = nextbyte; in b64_decode()
252 else if (nextbyte) in b64_decode()
/dports/net/libvncserver/libvncserver-LibVNCServer-0.9.13/common/
H A Dbase64.c196 u_char nextbyte; local
227 nextbyte = ((pos - Base64) & 0x0f) << 4;
229 target[tarindex+1] = nextbyte;
230 else if (nextbyte)
241 nextbyte = ((pos - Base64) & 0x03) << 6;
243 target[tarindex+1] = nextbyte;
244 else if (nextbyte)
/dports/security/signify/outils-0.10/src/liboutils/
H A Dbase64.c198 u_char nextbyte; local
229 nextbyte = ((pos - Base64) & 0x0f) << 4;
231 target[tarindex+1] = nextbyte;
232 else if (nextbyte)
243 nextbyte = ((pos - Base64) & 0x03) << 6;
245 target[tarindex+1] = nextbyte;
246 else if (nextbyte)
/dports/sysutils/tmux/tmux-3.2a/compat/
H A Dbase64.c196 u_char nextbyte; local
227 nextbyte = ((pos - Base64) & 0x0f) << 4;
229 target[tarindex+1] = nextbyte;
230 else if (nextbyte)
241 nextbyte = ((pos - Base64) & 0x03) << 6;
243 target[tarindex+1] = nextbyte;
244 else if (nextbyte)
/dports/mail/fdm/fdm-2.0/compat/
H A Dbase64.c196 u_char nextbyte; local
227 nextbyte = ((pos - Base64) & 0x0f) << 4;
229 target[tarindex+1] = nextbyte;
230 else if (nextbyte)
241 nextbyte = ((pos - Base64) & 0x03) << 6;
243 target[tarindex+1] = nextbyte;
244 else if (nextbyte)
/dports/security/asignify/asignify-1.0/libasignify/
H A Db64_pton.c183 unsigned char nextbyte; in b64_pton_stop() local
220 nextbyte = ((pos - Base64) & 0x0f) << 4; in b64_pton_stop()
222 target[tarindex+1] = nextbyte; in b64_pton_stop()
223 else if (nextbyte) in b64_pton_stop()
234 nextbyte = ((pos - Base64) & 0x03) << 6; in b64_pton_stop()
236 target[tarindex+1] = nextbyte; in b64_pton_stop()
237 else if (nextbyte) in b64_pton_stop()
/dports/irc/eggdrop/eggdrop-1.9.1/src/compat/
H A Dbase64.c222 uint8_t nextbyte; in b64_pton() local
253 nextbyte = ((pos - Base64) & 0x0f) << 4; in b64_pton()
255 target[tarindex + 1] = nextbyte; in b64_pton()
256 else if (nextbyte) in b64_pton()
267 nextbyte = ((pos - Base64) & 0x03) << 6; in b64_pton()
269 target[tarindex + 1] = nextbyte; in b64_pton()
270 else if (nextbyte) in b64_pton()
/dports/multimedia/ccextractor/ccextractor-0.85/src/lib_ccx/
H A Ddvd_subtitle_decoder.c51 int get_bits(struct DVD_Ctx *ctx, uint8_t *nextbyte, int *pos, int *m) in get_bits() argument
54 ret = (*nextbyte & 0xf0) >> 4; in get_bits()
57 *nextbyte = (*nextbyte << 4) | next4(ctx->buffer[*pos] , *m); in get_bits()
70 rlen = get_bits(ctx, nextbyte, pos, m); in rle_decode()
73 rlen = (rlen << 4) | get_bits(ctx, nextbyte, pos, m); in rle_decode()
86 uint8_t nextbyte; in get_bitmap() local
95 nextbyte = ctx->buffer[pos]; in get_bitmap()
104 len = rle_decode(ctx, &color, &nextbyte, &pos, &m); in get_bitmap()
125 int discard = get_bits(ctx, &nextbyte, &pos, &m); in get_bitmap()
144 len = rle_decode(ctx, &color, &nextbyte, &pos, &m); in get_bitmap()
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/lib/libc/net/
H A Dbase64.c221 u_char nextbyte; in b64_pton() local
256 nextbyte = (u_char)((pos - Base64) & 0x0f) << 4; in b64_pton()
258 target[tarindex + 1] = nextbyte; in b64_pton()
259 else if (nextbyte) in b64_pton()
271 nextbyte = (u_char)((pos - Base64) & 0x03) << 6; in b64_pton()
273 target[tarindex + 1] = nextbyte; in b64_pton()
274 else if (nextbyte) in b64_pton()
/dports/lang/snobol4/snobol4-2.2.2/modules/base64/
H A Dbase64.c222 unsigned char nextbyte; local
254 nextbyte = ((pos - Base64) & 0x0f) << 4;
256 target[tarindex+1] = nextbyte;
257 else if (nextbyte)
268 nextbyte = ((pos - Base64) & 0x03) << 6;
270 target[tarindex+1] = nextbyte;
271 else if (nextbyte)
/dports/net/dante/dante-1.4.3/lib/
H A Diface.c268 size_t i, nextbyte; local
285 nextbyte = pmatch.rm_so;
286 while (isspace(input[nextbyte]))
287 ++nextbyte;
293 addr[i] = (unsigned char)strtol(&input[nextbyte], &endptr, 16);
294 nextbyte += (endptr - &input[nextbyte]) + strlen(":");
/dports/benchmarks/filebench/filebench-1.5-alpha3-27-g22620e6/cvars/mtwist/
H A Dmtwist.c835 int nextbyte; /* Index of next byte to read */ in mts_devseed() local
861 for (nextbyte = 0; in mts_devseed()
862 nextbyte < (int)sizeof randomunion.ranbuffer; in mts_devseed()
863 nextbyte += bytesread) in mts_devseed()
866 sizeof randomunion.ranbuffer - nextbyte, ranfile); in mts_devseed()
871 if (nextbyte == sizeof randomunion.ranbuffer) in mts_devseed()
914 int nextbyte; /* Index of next byte to read */ in mts_bestseed() local
924 for (nextbyte = 0; in mts_bestseed()
925 nextbyte < (int)sizeof state->statevec; in mts_bestseed()
926 nextbyte += bytesread) in mts_bestseed()
[all …]

123456