Home
last modified time | relevance | path

Searched refs:MAX_MESSAGE (Results 1 – 25 of 83) sorted by relevance

1234

/dports/converters/psiconv/psiconv-0.9.9/lib/psiconv/
H A Derror.c39 #define MAX_MESSAGE 1024 macro
44 char buffer[MAX_MESSAGE]; in psiconv_fatal()
52 vsnprintf(buffer+curlen,MAX_MESSAGE-curlen,format,ap); in psiconv_fatal()
65 char buffer[MAX_MESSAGE]; in psiconv_error()
75 vsnprintf(buffer+curlen,MAX_MESSAGE-curlen,format,ap); in psiconv_error()
87 char buffer[MAX_MESSAGE]; in psiconv_warn()
97 vsnprintf(buffer+curlen,MAX_MESSAGE-curlen,format,ap); in psiconv_warn()
109 char buffer[MAX_MESSAGE]; in psiconv_progress()
116 snprintf(buffer,MAX_MESSAGE,"%08x ",off); in psiconv_progress()
143 char buffer[MAX_MESSAGE]; in psiconv_debug()
[all …]
/dports/games/zhlt/zhlt-3.4/common/
H A Dlog.cpp275 #define MAX_MESSAGE 2048 macro
337 char message[MAX_MESSAGE]; in Fatal()
401 char message[MAX_MESSAGE]; in Verbose()
421 char message[MAX_MESSAGE]; in Developer()
438 char message[MAX_MESSAGE]; in DisplayDeveloperLevel()
447 safe_strncat(message, "Spam ", MAX_MESSAGE); in DisplayDeveloperLevel()
451 safe_strncat(message, "Fluff ", MAX_MESSAGE); in DisplayDeveloperLevel()
463 safe_strncat(message, "Error", MAX_MESSAGE); in DisplayDeveloperLevel()
467 safe_strncat(message, "]\n", MAX_MESSAGE); in DisplayDeveloperLevel()
478 char message[MAX_MESSAGE]; in Log()
[all …]
/dports/mail/mailfromd/mailfromd-8.10/lib/
H A Dsyslog_async.c62 #define MAX_MESSAGE 1024 macro
82 char payload[MAX_MESSAGE];
342 char fmtbuf[MAX_MESSAGE]; in vsyslog_async_logger()
383 if ((mpos = find_percent_m(format)) != -1 && mpos < MAX_MESSAGE - len) { in vsyslog_async_logger()
409 len += vsnprintf(p, MAX_MESSAGE - len, format, ap) + 1; /* include zero-terminator */ in vsyslog_async_logger()
411 entry->length = len > MAX_MESSAGE ? MAX_MESSAGE : len; in vsyslog_async_logger()
/dports/security/cryptopp/cryptopp-8.6.0/
H A Dvalidat10.cpp276 const unsigned int MAX_MESSAGE = 4096; in TestCryptoBoxKeys() local
296 const word32 len = (i == 0 ? 0 : GlobalRNG().GenerateWord32(1, MAX_MESSAGE)); in TestCryptoBoxKeys()
404 const unsigned int MAX_MESSAGE = 65; // Sync with test data in TestCryptoSign() local
408 SecByteBlock sm(MAX_MESSAGE+crypto_sign_BYTES); in TestCryptoSign()
409 SecByteBlock rm(MAX_MESSAGE+crypto_sign_BYTES); in TestCryptoSign()
449 const unsigned int MAX_MESSAGE = 4096; in TestCryptoSignKeys() local
468 const word32 len = (i == 0 ? 0 : GlobalRNG().GenerateWord32(1, MAX_MESSAGE)); in TestCryptoSignKeys()
/dports/emulators/citra-qt5/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dvalidat10.cpp276 const unsigned int MAX_MESSAGE = 4096; in TestCryptoBoxKeys() local
296 const word32 len = (i == 0 ? 0 : GlobalRNG().GenerateWord32(1, MAX_MESSAGE)); in TestCryptoBoxKeys()
404 const unsigned int MAX_MESSAGE = 65; // Sync with test data in TestCryptoSign() local
408 SecByteBlock sm(MAX_MESSAGE+crypto_sign_BYTES); in TestCryptoSign()
409 SecByteBlock rm(MAX_MESSAGE+crypto_sign_BYTES); in TestCryptoSign()
449 const unsigned int MAX_MESSAGE = 4096; in TestCryptoSignKeys() local
468 const word32 len = (i == 0 ? 0 : GlobalRNG().GenerateWord32(1, MAX_MESSAGE)); in TestCryptoSignKeys()
/dports/emulators/citra/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dvalidat10.cpp276 const unsigned int MAX_MESSAGE = 4096; in TestCryptoBoxKeys() local
296 const word32 len = (i == 0 ? 0 : GlobalRNG().GenerateWord32(1, MAX_MESSAGE)); in TestCryptoBoxKeys()
404 const unsigned int MAX_MESSAGE = 65; // Sync with test data in TestCryptoSign() local
408 SecByteBlock sm(MAX_MESSAGE+crypto_sign_BYTES); in TestCryptoSign()
409 SecByteBlock rm(MAX_MESSAGE+crypto_sign_BYTES); in TestCryptoSign()
449 const unsigned int MAX_MESSAGE = 4096; in TestCryptoSignKeys() local
468 const word32 len = (i == 0 ? 0 : GlobalRNG().GenerateWord32(1, MAX_MESSAGE)); in TestCryptoSignKeys()
/dports/sysutils/fusefs-securefs/securefs-0.12.0/external/cryptopp/
H A Dvalidat10.cpp276 const unsigned int MAX_MESSAGE = 4096;
296 const word32 len = (i == 0 ? 0 : GlobalRNG().GenerateWord32(1, MAX_MESSAGE));
404 const unsigned int MAX_MESSAGE = 65; // Sync with test data
408 SecByteBlock sm(MAX_MESSAGE+crypto_sign_BYTES);
409 SecByteBlock rm(MAX_MESSAGE+crypto_sign_BYTES);
449 const unsigned int MAX_MESSAGE = 4096;
468 const word32 len = (i == 0 ? 0 : GlobalRNG().GenerateWord32(1, MAX_MESSAGE));
/dports/comms/sms_client/sms_client-3.0.2/src/driver/
H A Dproximus.c81 #define MAX_MESSAGE 512 macro
190 char proximus_message[MAX_MESSAGE + MAX_ENVELOPE]; in PROXIMUS_sendmessage()
193 PROXIMUS_buildmessage(proximus_message, (MAX_MESSAGE + MAX_ENVELOPE), msisdn, message); in PROXIMUS_sendmessage()
H A Dtap.c112 #define MAX_MESSAGE 512 macro
428 char tap_message[MAX_MESSAGE + MAX_ENVELOPE]; in TAP_sendmessage()
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/rustls-0.17.0/src/msgs/
H A Ddeframer.rs14 const MAX_MESSAGE: usize = 16384 + 2048 + HEADER_SIZE; const
30 buf: Box<[u8; MAX_MESSAGE]>,
57 buf: Box::new([0u8; MAX_MESSAGE]), in new()
70 debug_assert!(self.used <= MAX_MESSAGE); in read()
115 if len >= MAX_MESSAGE - HEADER_SIZE { in buf_contains_message()
/dports/security/rustscan/RustScan-2.0.1/cargo-crates/rustls-0.17.0/src/msgs/
H A Ddeframer.rs14 const MAX_MESSAGE: usize = 16384 + 2048 + HEADER_SIZE; const
30 buf: Box<[u8; MAX_MESSAGE]>,
57 buf: Box::new([0u8; MAX_MESSAGE]), in new()
70 debug_assert!(self.used <= MAX_MESSAGE); in read()
115 if len >= MAX_MESSAGE - HEADER_SIZE { in buf_contains_message()
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/rustls-0.17.0/src/msgs/
H A Ddeframer.rs14 const MAX_MESSAGE: usize = 16384 + 2048 + HEADER_SIZE; const
30 buf: Box<[u8; MAX_MESSAGE]>,
57 buf: Box::new([0u8; MAX_MESSAGE]), in new()
70 debug_assert!(self.used <= MAX_MESSAGE); in read()
115 if len >= MAX_MESSAGE - HEADER_SIZE { in buf_contains_message()
/dports/print/psutils/psutils/
H A Dpserror.c20 #define MAX_MESSAGE 256 /* maximum formatted message length */ macro
28 char msgbuf[MAX_MESSAGE] ; /* buffer in which to put the message */ in message()
/dports/print/hplip/hplip-3.20.6/prnt/hpps/
H A Dpserror.c20 #define MAX_MESSAGE 256 /* maximum formatted message length */ macro
28 char msgbuf[MAX_MESSAGE] ; /* buffer in which to put the message */ in message()
/dports/games/tux-aqfh/tux_aqfh-1.0.14/src/
H A Dlevel.h181 #define MAX_MESSAGE 20 macro
189 extern MessageInstance messages [ MAX_MESSAGE ] ;
H A Dlevel.cxx10 MessageInstance messages [ MAX_MESSAGE ] ;
498 if ( num_messages >= MAX_MESSAGE ) in message_command()
818 for ( i = 0 ; i < MAX_MESSAGE ; i++ ) in switchDatabase()
/dports/games/egoboo/egoboo-2.8.1/src/game/
H A Degoboo.h47 #define MAX_MESSAGE 8 ///< Number of messages macro
135 EXTERN int maxmessage EQ( MAX_MESSAGE );
/dports/audio/schismtracker/schismtracker-20211116/schism/
H A Dpage_message.c160 if (len == MAX_MESSAGE) { in message_add_char()
398 current_song->message[MAX_MESSAGE] = 0; in message_delete_char()
419 current_song->message[MAX_MESSAGE] = 0; in message_delete_next_char()
550 current_song->message[MAX_MESSAGE] = 0; in _delete_selection()
/dports/databases/mysql55-client/mysql-5.5.62/storage/ndb/tools/
H A Dndbsql.cpp150 #define MAX_MESSAGE 500 macro
154 char message[MAX_MESSAGE]; in getDiag()
159 memset(message, 0, MAX_MESSAGE); in getDiag()
161 &native, (SQLCHAR*)message, MAX_MESSAGE, &length); in getDiag()
/dports/graphics/povray37/povray-3.7.0.10/windows/
H A Dpvtext.cpp86 char *message_buffer [MAX_MESSAGE] ;
376 if (++first_message == message_buffer + MAX_MESSAGE) in buffer_message()
383 if (++next_message == message_buffer + MAX_MESSAGE) in buffer_message()
439 if (++first_message == message_buffer + MAX_MESSAGE) in add_single_line()
446 if (++next_message == message_buffer + MAX_MESSAGE) in add_single_line()
805 if (++message == message_buffer + MAX_MESSAGE) in paint_display_window()
916 for (p = message_buffer, i = 0 ; i < MAX_MESSAGE ; p++, i++) in clear_messages()
953 if (++message == message_buffer + MAX_MESSAGE) in need_hscroll()
1021 if (++message == message_buffer + MAX_MESSAGE) in dump_pane_to_clipboard()
/dports/audio/schismtracker/schismtracker-20211116/fmt/
H A Dgeneric.c230 if (msgsize + linesize + 1 >= MAX_MESSAGE) { in read_lined_message()
/dports/devel/arduino-avrdude/avrdude-6.3/
H A DjtagmkII_private.h72 #define MAX_MESSAGE 100000 macro
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/avrdude/
H A DjtagmkII_private.h72 #define MAX_MESSAGE 100000 macro
/dports/devel/avrdude/avrdude-6.4/
H A DjtagmkII_private.h72 #define MAX_MESSAGE 100000 macro
/dports/security/autossh/autossh-1.4g/
H A Dautossh.c98 #define MAX_MESSAGE 64 /* max length of message we can add */ macro
644 if (strlen(echo_message) > MAX_MESSAGE) in get_env_args()
646 MAX_MESSAGE); in get_env_args()
1263 char wbuf[64+sizeof(uts.nodename)+MAX_MESSAGE]; in conn_test()

1234