Home
last modified time | relevance | path

Searched refs:next_word (Results 1 – 25 of 339) sorted by relevance

12345678910>>...14

/dports/games/flare-engine/flare-engine-1.12/src/
H A DFontEngine.cpp132 std::string next_word; in calc_size() local
148 builder += next_word; in calc_size()
167 max_width = calc_width(next_word); in calc_size()
171 next_word = long_token; in calc_size()
174 if (long_token == next_word) in calc_size()
179 builder += next_word + " "; in calc_size()
246 std::string next_word; in render() local
261 builder += next_word; in render()
277 next_word = long_token; in render()
280 if (long_token == next_word) in render()
[all …]
/dports/multimedia/libdv/libdv-24218c36bed3b0a3bd5a57d5790ac12ade44e88d/libdv/
H A Dbitstream.h63 bs->next_word = *(uint32_t *)(bs->buf + bs->bufoffset); in bitstream_next_word()
64 bs->next_word = swab32(bs->next_word); in bitstream_next_word()
69 bs->next_word = *(uint32_t *)(bs->buf + bs->buflen - 4); in bitstream_next_word()
91 result = (result << num_bits) | (bs->next_word >> (32 - num_bits)); in bitstream_show_bh()
103 result = (result << num_bits) | (bs->next_word >> (32 - num_bits)); in bitstream_get_bh()
105 bs->current_word = bs->next_word; in bitstream_get_bh()
115 bs->current_word = bs->next_word; in bitstream_flush_bh()
156 bs->next_word = bs->current_word; in bitstream_unget()
162 bs->next_word = in bitstream_unget()
195 bs->next_word = *(uint32_t *)(bs->buf + bs->bufoffset); in bitstream_seek_set()
[all …]
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/lettre-0.10.0-rc.4/src/message/header/
H A Dmod.rs342 for next_word in words_iter { in format()
343 let allowed = allowed_str(next_word); in format()
364 let mut next_word = next_word; in format() localVariable
373 next_word = &next_word[len..]; in format()
384 f.write_str(next_word)?; in format()
385 self.line_len += next_word.len(); in format()
411 let mut next_word = next_word; in format() localVariable
413 while !next_word.is_empty() { in format()
415 .min(next_word.len()); in format()
427 next_word = &next_word[len..]; in format()
[all …]
/dports/japanese/mutt-devel/mutt-1.5.21/
H A Dfrom.c28 static const char *next_word (const char *s) in next_word() function
75 s = next_word (s); /* skip over the From part. */ in is_from()
124 s = next_word (s); in is_from()
133 s = next_word (s); in is_from()
141 s = next_word (s); in is_from()
146 s = next_word (s); in is_from()
156 s = next_word (s); in is_from()
162 s = next_word (s); in is_from()
171 s = next_word (s); in is_from()
/dports/graphics/jbig2dec/jbig2dec-0.19/
H A Djbig2_arith.c38 uint32_t next_word; member
92 B = (byte)((as->next_word >> 24) & 0xFF); in jbig2_arith_bytein()
107 as->next_word = 0xFF900000; in jbig2_arith_bytein()
116 B1 = (byte)((as->next_word >> 24) & 0xFF); in jbig2_arith_bytein()
122 as->next_word = 0xFF000000 | (as->next_word >> 8); in jbig2_arith_bytein()
133 B1 = (byte)((as->next_word >> 16) & 0xFF); in jbig2_arith_bytein()
141 as->next_word <<= 8; in jbig2_arith_bytein()
154 as->next_word <<= 8; in jbig2_arith_bytein()
167 as->next_word = 0xFF900000; in jbig2_arith_bytein()
177 B = (byte)((as->next_word >> 24) & 0xFF); in jbig2_arith_bytein()
[all …]
H A Djbig2_huffman.c51 uint32_t next_word; member
87 code = huff_get_next_word(result, 4, &result->next_word); in jbig2_huffman_new()
191 hs->this_word = hs->next_word; in jbig2_huffman_skip()
221 code = huff_get_next_word(hs, hs->offset + 4, &hs->next_word); in jbig2_huffman_advance()
259 hs->this_word = hs->next_word; in jbig2_huffman_get_bits()
283 uint32_t next_word; in jbig2_huffman_get() local
308 next_word = hs->next_word; in jbig2_huffman_get()
311 this_word = next_word; in jbig2_huffman_get()
318 hs->next_word = next_word; in jbig2_huffman_get()
342 this_word = next_word; in jbig2_huffman_get()
[all …]
/dports/graphics/mupdf/mupdf-1.18.0-source/thirdparty/jbig2dec/
H A Djbig2_arith.c38 uint32_t next_word; member
92 B = (byte)((as->next_word >> 24) & 0xFF); in jbig2_arith_bytein()
107 as->next_word = 0xFF900000; in jbig2_arith_bytein()
116 B1 = (byte)((as->next_word >> 24) & 0xFF); in jbig2_arith_bytein()
122 as->next_word = 0xFF000000 | (as->next_word >> 8); in jbig2_arith_bytein()
133 B1 = (byte)((as->next_word >> 16) & 0xFF); in jbig2_arith_bytein()
141 as->next_word <<= 8; in jbig2_arith_bytein()
154 as->next_word <<= 8; in jbig2_arith_bytein()
167 as->next_word = 0xFF900000; in jbig2_arith_bytein()
177 B = (byte)((as->next_word >> 24) & 0xFF); in jbig2_arith_bytein()
[all …]
H A Djbig2_huffman.c51 uint32_t next_word; member
87 code = huff_get_next_word(result, 4, &result->next_word); in jbig2_huffman_new()
191 hs->this_word = hs->next_word; in jbig2_huffman_skip()
221 code = huff_get_next_word(hs, hs->offset + 4, &hs->next_word); in jbig2_huffman_advance()
259 hs->this_word = hs->next_word; in jbig2_huffman_get_bits()
283 uint32_t next_word; in jbig2_huffman_get() local
308 next_word = hs->next_word; in jbig2_huffman_get()
311 this_word = next_word; in jbig2_huffman_get()
318 hs->next_word = next_word; in jbig2_huffman_get()
342 this_word = next_word; in jbig2_huffman_get()
[all …]
/dports/security/xinetd/xinetd-2.3.15/xinetd/
H A Ditox.c33 static char *next_word( const char *description );
89 service = word = next_word( "service name" ) ; in main()
104 socket_type = word = next_word( "socket type" ) ; in main()
107 word = next_word( "protocol" ) ; in main()
113 word = next_word( "wait/nowait" ) ; in main()
128 word = next_word( "user[.group]" ) ; in main()
140 word = next_word( "server" ) ; in main()
164 char *server_name = next_word( "server name" ) ; in main()
210 static char *next_word( const char *description ) in next_word() function
/dports/benchmarks/super-smack/super-smack-1.3/src/
H A Dtest-dictionary.cc32 cout << rd.next_word() << endl; in main()
39 cout << rd1.next_word() << endl; in main()
49 cout << sd.next_word() << endl; in main()
56 cout << sd1.next_word() << endl; in main()
65 cout << ud.next_word() << endl; in main()
H A Ddictionary.h48 virtual const char* next_word() = 0;
60 const char* next_word();
72 const char* next_word();
96 const char* next_word();
/dports/graphics/birdfont/birdfont-2.29.5/libbirdfont/Renderer/
H A DTextArea.vala807 w = next_word.text;
809 if (next_word.widget_y <= tt_click <= next_word.widget_y + font_size) {
813 if ((next_word.widget_y <= tt_click <= next_word.widget_y + font_size)
814 …&& (next_word.widget_x + widget_x <= click_x <= next_word.widget_x + widget_x + padding + next_wor…
919 w = next_word.text;
931 next_word.widget_x = tx;
1101 w = next_word.text;
1207 next_word.draw_at_top (cc, next_word.widget_x, next_word.widget_y - ty);
1264 string w = next_word.text;
1272 pos_y = widget_y + next_word.widget_y + next_word.get_baseline_to_bottom_for_font ();
[all …]
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/serial/datatool/
H A Dtraversal_spec_file_parser.cpp318 string next_word; in x_TryToGetTokensIfNone() local
319 m_Istream >> next_word; in x_TryToGetTokensIfNone()
322 if( next_word[0] == '\"' && next_word[next_word.length()-1] != '\"') { in x_TryToGetTokensIfNone()
323 x_ReadUntil(next_word, '\"'); in x_TryToGetTokensIfNone()
324 next_word += '\"'; in x_TryToGetTokensIfNone()
328 string::size_type comment_location = next_word.find_first_of( "#" ); in x_TryToGetTokensIfNone()
330 next_word.resize( comment_location ); in x_TryToGetTokensIfNone()
337 while( token_start < next_word.length() ) { in x_TryToGetTokensIfNone()
341 token_end = next_word.length(); in x_TryToGetTokensIfNone()
348 …copy( next_word.begin() + token_start, next_word.begin() + token_end, back_inserter(m_NextTokens.b… in x_TryToGetTokensIfNone()
[all …]
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/src/serial/datatool/
H A Dtraversal_spec_file_parser.cpp318 string next_word; in x_TryToGetTokensIfNone() local
319 m_Istream >> next_word; in x_TryToGetTokensIfNone()
322 if( next_word[0] == '\"' && next_word[next_word.length()-1] != '\"') { in x_TryToGetTokensIfNone()
323 x_ReadUntil(next_word, '\"'); in x_TryToGetTokensIfNone()
324 next_word += '\"'; in x_TryToGetTokensIfNone()
328 string::size_type comment_location = next_word.find_first_of( "#" ); in x_TryToGetTokensIfNone()
330 next_word.resize( comment_location ); in x_TryToGetTokensIfNone()
337 while( token_start < next_word.length() ) { in x_TryToGetTokensIfNone()
341 token_end = next_word.length(); in x_TryToGetTokensIfNone()
348 …copy( next_word.begin() + token_start, next_word.begin() + token_end, back_inserter(m_NextTokens.b… in x_TryToGetTokensIfNone()
[all …]
/dports/lang/v8/v8-9.6.180.12/test/cctest/
H A Dtest-atomicops.cc53 AtomicType next_word; in TestAtomicIncrement() member
62 s.next_word = next_word_value; in TestAtomicIncrement()
67 CHECK_EQU(s.next_word, next_word_value); in TestAtomicIncrement()
72 CHECK_EQU(s.next_word, next_word_value); in TestAtomicIncrement()
77 CHECK_EQU(s.next_word, next_word_value); in TestAtomicIncrement()
82 CHECK_EQU(s.next_word, next_word_value); in TestAtomicIncrement()
87 CHECK_EQU(s.next_word, next_word_value); in TestAtomicIncrement()
92 CHECK_EQU(s.next_word, next_word_value); in TestAtomicIncrement()
97 CHECK_EQU(s.next_word, next_word_value); in TestAtomicIncrement()
102 CHECK_EQU(s.next_word, next_word_value); in TestAtomicIncrement()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/
H A Datomicops_unittest.cc24 AtomicType next_word; in TestAtomicIncrement() member
33 s.next_word = next_word_value; in TestAtomicIncrement()
38 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
43 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
48 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
53 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
58 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
63 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
68 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
73 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/
H A Datomicops_unittest.cc24 AtomicType next_word; in TestAtomicIncrement() member
33 s.next_word = next_word_value; in TestAtomicIncrement()
38 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
43 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
48 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
53 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
58 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
63 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
68 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
73 EXPECT_EQ(s.next_word, next_word_value); in TestAtomicIncrement()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/util/
H A Dbitmap_reader.h97 uint64_t next_word = LoadFullWord(); in NextWord() local
99 uint64_t word = carry_bits_ | (next_word << num_carry_bits_); in NextWord()
100 carry_bits_ = next_word >> (64 - num_carry_bits_); in NextWord()
105 uint64_t next_word = in NextWord() local
107 uint64_t word = carry_bits_ | (next_word << num_carry_bits_); in NextWord()
108 carry_bits_ = next_word >> (64 - num_carry_bits_); in NextWord()
174 const Word next_word = load<Word>(bitmap_); in NextWord() local
189 word |= next_word << (sizeof(Word) * 8 - offset_); in NextWord()
191 current_data.word_ = next_word; in NextWord()
/dports/devel/gengetopt/gengetopt-2.23/src/
H A Dgm_utils.cpp276 string next_word; in wrap_cstr() local
305 next_word += *out_buf++; in wrap_cstr()
312 std::size_t pos = next_word.find_first_not_of(' '); in wrap_cstr()
314 next_word.empty(); in wrap_cstr()
316 next_word.erase( 0, pos ); in wrap_cstr()
318 stream << "\\n" << indent << next_word; in wrap_cstr()
319 next_space = second_line_column + next_word.size(); in wrap_cstr()
321 stream << next_word; // simply write word in wrap_cstr()
323 next_word = ""; in wrap_cstr()
/dports/www/py-wfuzz/wfuzz-3.1.0/src/wfuzz/
H A Ddictionaries.py26 def next_word(self): member in BaseDictionary
30 return self.next_word()
68 def next_word(self): member in EncodeIt
102 def next_word(self): member in TupleIt
116 def next_word(self): member in WrapperIt
140 def next_word(self): member in SliceIt
174 def next_word(self): member in AllVarDictio
/dports/graphics/tesseract/tesseract-5.0.0/src/ccutil/
H A Dbitvector.cpp134 int next_word = WordIndex(next_bit); in NextSetBit() local
135 int bit_index = next_word * kBitFactor; in NextSetBit()
137 uint32_t word = array_[next_word]; in NextSetBit()
153 ++next_word; in NextSetBit()
155 while (next_word < wordlen && (word = array_[next_word]) == 0) { in NextSetBit()
156 ++next_word; in NextSetBit()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/util/
H A Dbitmap_reader.h97 uint64_t next_word = LoadFullWord(); in NextWord() local
99 uint64_t word = carry_bits_ | (next_word << num_carry_bits_); in NextWord()
100 carry_bits_ = next_word >> (64 - num_carry_bits_); in NextWord()
105 uint64_t next_word = in NextWord() local
107 uint64_t word = carry_bits_ | (next_word << num_carry_bits_); in NextWord()
108 carry_bits_ = next_word >> (64 - num_carry_bits_); in NextWord()
/dports/multimedia/dvdauthor/dvdauthor-d5bb0b/src/
H A Dspuunmux.c1328 next_word = getpts(cbuf); in main()
1329 if (next_word != -1) in main()
1331 pts = next_word; in main()
1338 for (c = 0; c < next_word; c++) in main()
1347 cbuf[next_word] == 0x70 && cbuf[next_word + 1] == stream_number in main()
1358 next_word, pts); in main()
1394 if (cbuf[next_word + 2] & 0x80) in main()
1397 next_word = svcddecode(); in main()
1398 if (next_word) in main()
1585 while (next_word != 0x100 + MPID_PACK) in main()
[all …]
/dports/security/gpa/gpa-0.10.0/src/
H A Doptions.c521 gchar next_word[100]; in gpa_options_read_settings() local
526 while (read_next_word (options_file, next_word, sizeof (next_word))) in gpa_options_read_settings()
531 if (g_str_equal (next_word, "default-key")) in gpa_options_read_settings()
535 else if (g_str_equal (next_word, "keyserver")) in gpa_options_read_settings()
539 else if (g_str_equal (next_word, "backup-generated")) in gpa_options_read_settings()
543 else if (g_str_equal (next_word, "advanced-ui")) in gpa_options_read_settings()
547 else if (g_str_equal (next_word, "show-advanced-options")) in gpa_options_read_settings()
551 else if (g_str_equal (next_word, "detailed-view")) in gpa_options_read_settings()
557 options->default_key_fpr = g_strdup (next_word); in gpa_options_read_settings()
/dports/multimedia/py-guessit/guessit-3.3.1/guessit/rules/properties/
H A Dlanguage.py146 def __init__(self, start, end, value, input_string, next_word=None): argument
151 self.next_word = next_word
158 if self.next_word:
159 separator = self.input_string[self.end:self.next_word.start]
160 next_separator = self.input_string[self.next_word.end:self.next_word.end + 1]
163 value = self.input_string[self.start:self.next_word.end].replace('.', ' ')
165 …return LanguageWord(self.start, self.next_word.end, value, self.input_string, self.next_word.next_…
257 previous.next_word = language_word
272 (language_word, language_word.next_word,
276 (language_word.next_word, language_word,

12345678910>>...14