Home
last modified time | relevance | path

Searched refs:word_max (Results 1 – 9 of 9) sorted by relevance

/dports/cad/iverilog/verilog-11.0/vpi/
H A Dsys_readmem_lex.lex80 int width = 0, word_max = word_width; in make_hex_value() local
82 for (idx = 0, cur = vecval ; idx < word_max ; idx += 32, cur += 1) { in make_hex_value()
88 while ((width < word_max) && (end > beg)) { in make_hex_value()
140 word_max -= 32; in make_hex_value()
171 int width = 0, word_max = word_width; in make_bin_value() local
173 for (idx = 0, cur = vecval ; idx < word_max ; idx += 32, cur += 1) { in make_bin_value()
179 while ((width < word_max) && (end > beg)) { in make_bin_value()
207 word_max -= 32; in make_bin_value()
/dports/devel/aegis/aegis-4.25.D510/common/
H A Dabbreviate.cc39 size_t word_max; in abbreviate() local
180 word_max = 1; in abbreviate()
182 if (word.string[k]->str_length > word_max) in abbreviate()
183 word_max = word.string[k]->str_length; in abbreviate()
184 --word_max; in abbreviate()
185 while (word_max >= 1) in abbreviate()
191 if (word.string[j]->str_length <= word_max) in abbreviate()
193 total -= (word.string[j]->str_length - word_max); in abbreviate()
194 s1 = str_n_from_c(word.string[j]->str_text, word_max); in abbreviate()
200 --word_max; in abbreviate()
/dports/sysutils/bulk_extractor/bulk_extractor-2.0.0-beta2/src/
H A Dscan_wordlist.cpp90 if ((word_min <= len) && (len <= word_max)){ in process_sbuf()
211 uint32_t word_max = Scan_Wordlist::WORD_MAX_DEFAULT; in scan_wordlist() local
217 sp.get_scanner_config("word_max",&word_max,"Maximum word size"); in scan_wordlist()
230 if (word_min > word_max){ in scan_wordlist()
231 std::cerr << "ERROR: word_min (" << word_min << ") > word_max (" << word_max << ")\n"; in scan_wordlist()
236 wordlist->word_max = word_max; in scan_wordlist()
H A Dscan_wordlist.h51 uint32_t word_max {WORD_MAX_DEFAULT};
/dports/graphics/s2tc/s2tc-f6ec862/
H A Ds2tc_common.h142 size_t word_max = bitpos_max / width; in getbyte() local
145 for(size_t i = word_min+1; i <= word_max; ++i) in getbyte()
/dports/security/hashcat/hashcat-6.2.5/tools/
H A Dtest.pl79 my $word_max = ($IS_OPTIMIZED == 1) ? $constraints->[2]->[1] : $constraints->[0]->[1];
83 my $db_word_len = init_db_word_rand ($word_min, $word_max);
101 next if $len > $word_max;
/dports/graphics/mupdf/mupdf-1.18.0-source/source/fitz/
H A Doutput-pdfocr.c404 int word_max; member
475 if (cb->word_max == cb->word_len) in char_callback()
477 int newmax = cb->word_max * 2; in char_callback()
481 cb->word_max = newmax; in char_callback()
/dports/graphics/png2ico/png2ico/
H A Dpng2ico.cpp55 const int word_max=65535; variable
431 if (argc-2 > word_max) in main()
/dports/games/simutrans/simutrans-121.0/display/
H A Dsimgraph16.cc4965 …const int word_max = (0 + (y1 + 1) * tile_buffer_per_line) >> 5; // first word on next line. limit… in display_flush_buffer() local
4975 while( word_x2 < word_max && tile_dirty_old[word_x2] == 0xFFFFFFFF ) { in display_flush_buffer()
4979 if( word_x2 >= word_max // dirty tiles extend all the way to screen edge in display_flush_buffer()