Home
last modified time | relevance | path

Searched refs:databytes (Results 1 – 25 of 248) sorted by relevance

12345678910

/dports/mail/qmail/netqmail-1.06/
H A Dqmail-qmtpd.c60 unsigned int databytes = 0; variable
102 if (control_readint(&databytes,"control/databytes") == -1) resources(); in main()
104 if (x) { scan_ulong(x,&u); databytes = u; } in main()
105 if (!(databytes + 1)) --databytes; in main()
123 if (databytes) bytestooverflow = databytes + 1; in main()
152 if (databytes) in main()
153 if (len > databytes) { in main()
233 …if (databytes) if (!bytestooverflow) result = "Dsorry, that message size exceeds my databytes limi… in main()
/dports/mail/qmail-tls/netqmail-1.06/
H A Dqmail-qmtpd.c60 unsigned int databytes = 0; variable
102 if (control_readint(&databytes,"control/databytes") == -1) resources(); in main()
104 if (x) { scan_ulong(x,&u); databytes = u; } in main()
105 if (!(databytes + 1)) --databytes; in main()
123 if (databytes) bytestooverflow = databytes + 1; in main()
152 if (databytes) in main()
153 if (len > databytes) { in main()
233 …if (databytes) if (!bytestooverflow) result = "Dsorry, that message size exceeds my databytes limi… in main()
/dports/mail/qmail-mysql/netqmail-1.06/
H A Dqmail-qmtpd.c60 unsigned int databytes = 0; variable
102 if (control_readint(&databytes,"control/databytes") == -1) resources(); in main()
104 if (x) { scan_ulong(x,&u); databytes = u; } in main()
105 if (!(databytes + 1)) --databytes; in main()
123 if (databytes) bytestooverflow = databytes + 1; in main()
152 if (databytes) in main()
153 if (len > databytes) { in main()
233 …if (databytes) if (!bytestooverflow) result = "Dsorry, that message size exceeds my databytes limi… in main()
/dports/mail/qmail-dk/qmail-1.03/
H A Dqmail-qmtpd.c60 unsigned int databytes = 0; variable
102 if (control_readint(&databytes,"control/databytes") == -1) resources(); in main()
104 if (x) { scan_ulong(x,&u); databytes = u; } in main()
105 if (!(databytes + 1)) --databytes; in main()
123 if (databytes) bytestooverflow = databytes + 1; in main()
152 if (databytes) in main()
153 if (len > databytes) { in main()
233 …if (databytes) if (!bytestooverflow) result = "Dsorry, that message size exceeds my databytes limi… in main()
/dports/mail/mailfront/mailfront-2.22/
H A Dbackend-echo.c11 static unsigned long databytes = 0; variable
15 databytes = 0; in reset()
49 if (databytes == 0) { in data_block()
59 databytes += len; in data_block()
85 databytes = st.st_size; in message_end()
89 str_catu(&tmp, databytes); in message_end()
H A Dbackend-qmail.c20 static unsigned long databytes; variable
107 databytes = 0; in data_start()
128 databytes += len; in data_block()
188 databytes = st.st_size; in message_end()
205 str_catu(&buffer, databytes); in message_end()
/dports/devel/libsigrokdecode/libsigrokdecode-0.5.3/decoders/lm75/
H A Dpd.py71 self.databytes = []
94 before, after = self.databytes[0], (self.databytes[1] >> 7) * 5
107 if len(self.databytes) == 0:
109 self.databytes.append(b)
111 self.databytes.append(b)
114 self.databytes = []
/dports/audio/wavplay/wavplay-1.4/
H A Dwavfile.c119 { u_int databytes ; in WaveWriteHeader() local
132 databytes = samples * (u_int) blockalign ; in WaveWriteHeader()
134 waveheader.RiffSize = sizeof (WAVE_HEADER) + databytes - 8 ; in WaveWriteHeader()
141 waveheader.nDataBytes = databytes; in WaveWriteHeader()
155 u_int databytes ; in WaveReadHeader() local
204 memcpy (&databytes, ptr, sizeof (u_int)) ; in WaveReadHeader()
211 *samples = databytes / waveformat.wBlockAlign ; in WaveReadHeader()
/dports/emulators/libretro-vice/vice-libretro-5725415/deps/nibtools/
H A Ddrive.c136 unsigned int databytes; in upload_code() local
165 databytes = sizeof(floppycode1571srq); in upload_code()
172 databytes = sizeof(floppycode1571ihs); in upload_code()
179 databytes = sizeof(floppycode1571srqtest); in upload_code()
186 databytes = sizeof(floppycode1571); in upload_code()
196 databytes = sizeof(floppycode1541); in upload_code()
203 databytes = sizeof(floppycode1541ihs); in upload_code()
213 printf("Uploading floppy-side code ($%.4x bytes, $300-$%.3x)...", databytes, databytes+0x300); in upload_code()
214 ret = cbm_upload(fd, drive, 0x300, floppy_code, databytes); in upload_code()
216 floppybytes = databytes; in upload_code()
/dports/games/devilutionX/devilutionX-1.2.1/SourceX/storm/
H A Dstorm_net.cpp14 BOOL SNetReceiveMessage(int *senderplayerid, char **data, int *databytes) in SNetReceiveMessage() argument
16 if (!dvlnet_inst->SNetReceiveMessage(senderplayerid, data, databytes)) { in SNetReceiveMessage()
23 BOOL SNetSendMessage(int playerID, void *data, unsigned int databytes) in SNetSendMessage() argument
25 return dvlnet_inst->SNetSendMessage(playerID, data, databytes); in SNetSendMessage()
42 BOOL SNetSendTurn(char *data, unsigned int databytes) in SNetSendTurn() argument
44 return dvlnet_inst->SNetSendTurn(data, databytes); in SNetSendTurn()
/dports/net-p2p/c-lightning/lightning-0.10.2/connectd/
H A Dsha1.c46 sha1digest(uint8_t *digest, const uint8_t *data, size_t databytes) in sha1digest() argument
71 uint64_t databits = ((uint64_t)databytes) * 8; in sha1digest()
72 uint32_t loopcount = (databytes + 8) / 64 + 1; in sha1digest()
73 uint32_t tailbytes = 64 * loopcount - databytes; in sha1digest()
107 while (didx < databytes && wcount >= 0) in sha1digest()
116 W[widx] += (((uint32_t)datatail[didx - databytes]) << wcount); in sha1digest()
/dports/security/elixir-comeonin/comeonin-3.2/c_src/
H A Dblowfish.c359 Blowfish_stream2word(const uint8_t *data, uint16_t databytes, in Blowfish_stream2word() argument
370 if (j >= databytes) in Blowfish_stream2word()
417 Blowfish_expandstate(blf_ctx *c, const uint8_t *data, uint16_t databytes, in Blowfish_expandstate() argument
438 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
439 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
448 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
449 datar ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/dports/graphics/pinta/pinta-1.7.1/Pinta.Core/ImageFormats/
H A DOraFormat.cs196 byte[] databytes = System.Text.Encoding.ASCII.GetBytes ("image/openraster"); in Export()
197 stream.Write (databytes, 0, databytes.Length); in Export()
209 databytes = GetLayerXmlData (document.UserLayers); in Export()
210 stream.Write (databytes, 0, databytes.Length); in Export()
218 databytes = thumb.SaveToBuffer ("png"); in Export()
219 stream.Write (databytes, 0, databytes.Length); in Export()
/dports/archivers/streamvbyte/streamvbyte-0.4.1/src/
H A Dstreamvbyte_arm_encode.c37 uint8x16_t databytes = vreinterpretq_u8_u32(data); in streamvbyte_encode4() local
40 vst1q_u8(outData, vqtbl1q_u8(databytes, encodingShuffle)); in streamvbyte_encode4()
42 uint8x8x2_t datahalves = {{vget_low_u8(databytes), vget_high_u8(databytes)}}; in streamvbyte_encode4()
/dports/misc/netron/node_modules/dmg-builder/vendor/mac_alias/
H A Dbookmark.py251 databytes = data[offset+8:offset+8+length]
257 return databytes.decode('utf-8')
259 return Data(databytes)
262 return ord(databytes[0])
264 return struct.unpack(b'<h', databytes)[0]
266 return struct.unpack(b'<i', databytes)[0]
268 return struct.unpack(b'<q', databytes)[0]
270 return struct.unpack(b'<f', databytes)[0]
284 return uuid.UUID(bytes=databytes)
287 return URL(databytes.decode('utf-8'))
[all …]
/dports/devel/qbs/qbs-src-1.21.0/src/3rdparty/python/lib/python2.7/site-packages/mac_alias/
H A Dbookmark.py251 databytes = data[offset+8:offset+8+length]
257 return databytes.decode('utf-8')
259 return Data(databytes)
262 return ord(databytes[0])
264 return struct.unpack(b'<h', databytes)[0]
266 return struct.unpack(b'<i', databytes)[0]
268 return struct.unpack(b'<q', databytes)[0]
270 return struct.unpack(b'<f', databytes)[0]
284 return uuid.UUID(bytes=databytes)
287 return URL(databytes.decode('utf-8'))
[all …]
/dports/databases/proftpd-mod_sql_postgres/proftpd-1.3.7c/lib/
H A Dopenbsd-blowfish.c389 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
400 if (j >= databytes) in Blowfish_stream2word()
447 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
467 d[0] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
468 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
477 d[0]^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
478 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/dports/databases/proftpd-mod_sql_odbc/proftpd-1.3.7c/lib/
H A Dopenbsd-blowfish.c389 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
400 if (j >= databytes) in Blowfish_stream2word()
447 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
467 d[0] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
468 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
477 d[0]^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
478 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/dports/databases/proftpd-mod_sql_tds/proftpd-1.3.7c/lib/
H A Dopenbsd-blowfish.c389 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
400 if (j >= databytes) in Blowfish_stream2word()
447 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
467 d[0] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
468 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
477 d[0]^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
478 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/dports/databases/proftpd-mod_sql_sqlite/proftpd-1.3.7c/lib/
H A Dopenbsd-blowfish.c389 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
400 if (j >= databytes) in Blowfish_stream2word()
447 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
467 d[0] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
468 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
477 d[0]^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
478 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/dports/databases/proftpd-mod_sql_mysql/proftpd-1.3.7c/lib/
H A Dopenbsd-blowfish.c389 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
400 if (j >= databytes) in Blowfish_stream2word()
447 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
467 d[0] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
468 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
477 d[0]^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
478 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/dports/net/proftpd-mod_ldap/proftpd-1.3.7c/lib/
H A Dopenbsd-blowfish.c389 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
400 if (j >= databytes) in Blowfish_stream2word()
447 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
467 d[0] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
468 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
477 d[0]^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
478 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/dports/security/proftpd-mod_clamav/proftpd-1.3.7c/lib/
H A Dopenbsd-blowfish.c389 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
400 if (j >= databytes) in Blowfish_stream2word()
447 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
467 d[0] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
468 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
477 d[0]^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
478 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/dports/ftp/proftpd-mod_vroot/proftpd-1.3.7c/lib/
H A Dopenbsd-blowfish.c389 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
400 if (j >= databytes) in Blowfish_stream2word()
447 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
467 d[0] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
468 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
477 d[0]^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
478 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
/dports/ftp/proftpd/proftpd-1.3.7c/lib/
H A Dopenbsd-blowfish.c389 Blowfish_stream2word(const u_int8_t *data, u_int16_t databytes, in Blowfish_stream2word() argument
400 if (j >= databytes) in Blowfish_stream2word()
447 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate() argument
467 d[0] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
468 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
477 d[0]^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
478 d[1] ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()

12345678910