Home
last modified time | relevance | path

Searched refs:current_symbol (Results 1 – 25 of 102) sorted by relevance

12345

/dports/science/py-dlib/dlib-19.22/dlib/entropy_decoder_model/
H A Dentropy_decoder_model_kernel_3.h239 if (current_symbol != alphabet_size) in decode()
241 symbol = current_symbol; in decode()
244 previous_symbol = current_symbol; in decode()
270 if (current_symbol != alphabet_size) in decode()
272 symbol = current_symbol; in decode()
276 previous_symbol = current_symbol; in decode()
294 if (current_symbol != alphabet_size) in decode()
299 order_0.increment_count(current_symbol,2); in decode()
302 symbol = current_symbol; in decode()
304 previous_symbol = current_symbol; in decode()
[all …]
H A Dentropy_decoder_model_kernel_2.h179 unsigned long current_symbol, low_count, high_count, target; in decode() local
189 if (current_symbol != alphabet_size) in decode()
191 symbol = current_symbol; in decode()
192 order_1[previous_symbol]->increment_count(current_symbol,2); in decode()
193 previous_symbol = current_symbol; in decode()
205 order_0.get_symbol(target,current_symbol,low_count,high_count); in decode()
211 if (current_symbol != alphabet_size) in decode()
215 order_0.increment_count(current_symbol,2); in decode()
217 symbol = current_symbol; in decode()
218 previous_symbol = current_symbol; in decode()
[all …]
H A Dentropy_decoder_model_kernel_1.h132 unsigned long current_symbol, low_count, high_count, target; in decode() local
136 order_0.get_symbol(target,current_symbol,low_count,high_count); in decode()
143 if (current_symbol != alphabet_size) in decode()
146 order_0.increment_count(current_symbol,2); in decode()
148 symbol = current_symbol; in decode()
/dports/science/dlib-cpp/dlib-19.22/dlib/entropy_decoder_model/
H A Dentropy_decoder_model_kernel_3.h239 if (current_symbol != alphabet_size) in decode()
241 symbol = current_symbol; in decode()
244 previous_symbol = current_symbol; in decode()
270 if (current_symbol != alphabet_size) in decode()
272 symbol = current_symbol; in decode()
276 previous_symbol = current_symbol; in decode()
294 if (current_symbol != alphabet_size) in decode()
299 order_0.increment_count(current_symbol,2); in decode()
302 symbol = current_symbol; in decode()
304 previous_symbol = current_symbol; in decode()
[all …]
H A Dentropy_decoder_model_kernel_2.h179 unsigned long current_symbol, low_count, high_count, target; in decode() local
189 if (current_symbol != alphabet_size) in decode()
191 symbol = current_symbol; in decode()
192 order_1[previous_symbol]->increment_count(current_symbol,2); in decode()
193 previous_symbol = current_symbol; in decode()
205 order_0.get_symbol(target,current_symbol,low_count,high_count); in decode()
211 if (current_symbol != alphabet_size) in decode()
215 order_0.increment_count(current_symbol,2); in decode()
217 symbol = current_symbol; in decode()
218 previous_symbol = current_symbol; in decode()
[all …]
H A Dentropy_decoder_model_kernel_1.h132 unsigned long current_symbol, low_count, high_count, target; in decode() local
136 order_0.get_symbol(target,current_symbol,low_count,high_count); in decode()
143 if (current_symbol != alphabet_size) in decode()
146 order_0.increment_count(current_symbol,2); in decode()
148 symbol = current_symbol; in decode()
/dports/benchmarks/dkftpbench/dkftpbench-0.45/
H A Dprofile.c142 char current_symbol[80] , next_symbol[80]; in main() local
191 fscanf(kmap, "%x %*s %s\n", &current_symbol_value, current_symbol); in main()
198 if ( strcmp(current_symbol,"_stext") && in main()
199 strcmp(current_symbol,"_text") ) { in main()
227 if (!strcmp(func, current_symbol)) { in main()
232 if (!strcmp("_etext", current_symbol)) in main()
236 strcpy(current_symbol, next_symbol); in main()
250 current_symbol, current_symbol_value); in main()
258 current_symbol, type); in main()
266 strcpy ( current_symbol , next_symbol ); in main()
/dports/science/dalton/dalton-66052b3af5ea7225e31178bf9a8b031913c72190/DALTON/tools/
H A Ddistances.f9057 character(LEN=2) :: current_symbol variable
114 current_symbol = ' '
123 if (symbol .eq. current_symbol) then
135 trim(current_symbol), current_count, x, y, z
138 current_symbol, current_count, x, y, z
170 current_symbol = symbol
185 trim(current_symbol), current_count, x, y, z
188 current_symbol, current_count, x, y, z
H A Dxyz2dalton.f9046 character(LEN=2) :: current_symbol variable
75 current_symbol = ' '
84 if (symbol .eq. current_symbol) then
96 trim(current_symbol), current_count, x, y, z
99 current_symbol, current_count, x, y, z
136 current_symbol = symbol
151 trim(current_symbol), current_count, x, y, z
154 current_symbol, current_count, x, y, z
/dports/devel/tree-sitter/tree-sitter-0.20.1/cli/src/generate/build_tables/
H A Ditem_set_builder.rs87 while let Some(current_symbol) = symbols_to_process.pop() { in new()
88 if current_symbol.is_terminal() || current_symbol.is_external() { in new()
89 first_set.insert(current_symbol); in new()
90 } else if processed_non_terminals.insert(current_symbol) { in new()
91 for production in syntax_grammar.variables[current_symbol.index] in new()
107 while let Some(current_symbol) = symbols_to_process.pop() { in new()
108 if current_symbol.is_terminal() || current_symbol.is_external() { in new()
109 last_set.insert(current_symbol); in new()
110 } else if processed_non_terminals.insert(current_symbol) { in new()
111 for production in syntax_grammar.variables[current_symbol.index] in new()
/dports/lang/elk/elk-3.99.8/src/
H A Dstab-elf.c105 Elf32_Sym *current_symbol; in Snarf_Symbols() local
117 current_symbol = symbol_ptr + symbol_count; in Snarf_Symbols()
118 if (ELF32_ST_TYPE(current_symbol->st_info) != STT_FUNC || in Snarf_Symbols()
119 ELF32_ST_BIND(current_symbol->st_info) != STB_GLOBAL) { in Snarf_Symbols()
123 (size_t)current_symbol->st_name)) == NULL) { in Snarf_Symbols()
131 sp->value = current_symbol->st_value; in Snarf_Symbols()
/dports/audio/gsequencer/gsequencer-3.10.4/ags/lib/
H A Dags_solver_matrix.c539 gchar **current_symbol; in ags_solver_matrix_parse() local
564 current_symbol = NULL; in ags_solver_matrix_parse()
573 current_symbol == NULL){ in ags_solver_matrix_parse()
584 if(current_symbol == NULL){ in ags_solver_matrix_parse()
591 g_strfreev(current_symbol); in ags_solver_matrix_parse()
611 gchar **current_symbol; in ags_solver_matrix_parse() local
639 current_symbol = NULL; in ags_solver_matrix_parse()
642 "symbol", &current_symbol, in ags_solver_matrix_parse()
648 if(current_symbol != NULL){ in ags_solver_matrix_parse()
681 (current_symbol == NULL || (symbol[j] != NULL && current_symbol[j] == NULL))){ in ags_solver_matrix_parse()
[all …]
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/goblin-0.4.3/src/mach/
H A Dexports.rs199 current_symbol: String, in walk_branches()
208 let mut key = current_symbol.clone(); in walk_branches()
224 current_symbol: String, in walk_trie()
237 let branches = self.walk_branches(nbranches, current_symbol, offset)?; in walk_trie()
247 let export = Export::new(current_symbol.clone(), info); in walk_trie()
256 self.walk_branches(nchildren, current_symbol, *children_start)?; in walk_trie()
268 let current_symbol = String::new(); in exports() localVariable
270 self.walk_trie(libs, current_symbol, offset, &mut exports)?; in exports()
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/goblin-0.0.24/src/mach/
H A Dexports.rs180 …fn walk_branches(&self, nbranches: usize, current_symbol: String, mut offset: usize) -> error::Res… in walk_branches()
187 let mut key = current_symbol.clone(); in walk_branches()
200 …fn walk_trie(&self, libs: &[&'a str], current_symbol: String, start: usize, exports: &mut Vec<Expo… in walk_trie()
210 let branches = self.walk_branches(nbranches, current_symbol, offset)?; in walk_trie()
219 let export = Export::new(current_symbol.clone(), info); in walk_trie()
227 let branches = self.walk_branches(nchildren, current_symbol, *children_start)?; in walk_trie()
237 let current_symbol = String::new(); in exports() localVariable
239 self.walk_trie(libs, current_symbol, offset, &mut exports)?; in exports()
/dports/www/firefox/firefox-99.0/third_party/rust/goblin/src/mach/
H A Dexports.rs180 …fn walk_branches(&self, nbranches: usize, current_symbol: String, mut offset: usize) -> error::Res… in walk_branches()
187 let mut key = current_symbol.clone(); in walk_branches()
200 …fn walk_trie(&self, libs: &[&'a str], current_symbol: String, start: usize, exports: &mut Vec<Expo… in walk_trie()
210 let branches = self.walk_branches(nbranches, current_symbol, offset)?; in walk_trie()
219 let export = Export::new(current_symbol.clone(), info); in walk_trie()
227 let branches = self.walk_branches(nchildren, current_symbol, *children_start)?; in walk_trie()
237 let current_symbol = String::new(); in exports() localVariable
239 self.walk_trie(libs, current_symbol, offset, &mut exports)?; in exports()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/goblin/src/mach/
H A Dexports.rs180 …fn walk_branches(&self, nbranches: usize, current_symbol: String, mut offset: usize) -> error::Res… in walk_branches()
187 let mut key = current_symbol.clone(); in walk_branches()
200 …fn walk_trie(&self, libs: &[&'a str], current_symbol: String, start: usize, exports: &mut Vec<Expo… in walk_trie()
210 let branches = self.walk_branches(nbranches, current_symbol, offset)?; in walk_trie()
219 let export = Export::new(current_symbol.clone(), info); in walk_trie()
227 let branches = self.walk_branches(nchildren, current_symbol, *children_start)?; in walk_trie()
237 let current_symbol = String::new(); in exports() localVariable
239 self.walk_trie(libs, current_symbol, offset, &mut exports)?; in exports()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/goblin/src/mach/
H A Dexports.rs180 …fn walk_branches(&self, nbranches: usize, current_symbol: String, mut offset: usize) -> error::Res… in walk_branches()
187 let mut key = current_symbol.clone(); in walk_branches()
200 …fn walk_trie(&self, libs: &[&'a str], current_symbol: String, start: usize, exports: &mut Vec<Expo… in walk_trie()
210 let branches = self.walk_branches(nbranches, current_symbol, offset)?; in walk_trie()
219 let export = Export::new(current_symbol.clone(), info); in walk_trie()
227 let branches = self.walk_branches(nchildren, current_symbol, *children_start)?; in walk_trie()
237 let current_symbol = String::new(); in exports() localVariable
239 self.walk_trie(libs, current_symbol, offset, &mut exports)?; in exports()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/goblin/src/mach/
H A Dexports.rs180 …fn walk_branches(&self, nbranches: usize, current_symbol: String, mut offset: usize) -> error::Res… in walk_branches()
187 let mut key = current_symbol.clone(); in walk_branches()
200 …fn walk_trie(&self, libs: &[&'a str], current_symbol: String, start: usize, exports: &mut Vec<Expo… in walk_trie()
210 let branches = self.walk_branches(nbranches, current_symbol, offset)?; in walk_trie()
219 let export = Export::new(current_symbol.clone(), info); in walk_trie()
227 let branches = self.walk_branches(nchildren, current_symbol, *children_start)?; in walk_trie()
237 let current_symbol = String::new(); in exports() localVariable
239 self.walk_trie(libs, current_symbol, offset, &mut exports)?; in exports()
/dports/devel/bingrep/bingrep-0.8.5/cargo-crates/goblin-0.3.1/src/mach/
H A Dexports.rs199 current_symbol: String, in walk_branches()
208 let mut key = current_symbol.clone(); in walk_branches()
224 current_symbol: String, in walk_trie()
237 let branches = self.walk_branches(nbranches, current_symbol, offset)?; in walk_trie()
247 let export = Export::new(current_symbol.clone(), info); in walk_trie()
256 self.walk_branches(nchildren, current_symbol, *children_start)?; in walk_trie()
268 let current_symbol = String::new(); in exports() localVariable
270 self.walk_trie(libs, current_symbol, offset, &mut exports)?; in exports()
/dports/devel/py-maturin/maturin-0.11.3/cargo-crates/goblin-0.4.2/src/mach/
H A Dexports.rs199 current_symbol: String, in walk_branches()
208 let mut key = current_symbol.clone(); in walk_branches()
224 current_symbol: String, in walk_trie()
237 let branches = self.walk_branches(nbranches, current_symbol, offset)?; in walk_trie()
247 let export = Export::new(current_symbol.clone(), info); in walk_trie()
256 self.walk_branches(nchildren, current_symbol, *children_start)?; in walk_trie()
268 let current_symbol = String::new(); in exports() localVariable
270 self.walk_trie(libs, current_symbol, offset, &mut exports)?; in exports()
/dports/graphics/nip2/nip2-8.7.1/src/
H A Dparse.y55 extern Symbol *current_symbol;
243 if( !is_top( current_symbol ) )
338 current_symbol = sym;
372 current_symbol, $1 );
379 current_symbol );
634 current_symbol = sym;
658 sym = current_symbol;
694 current_symbol = sym;
731 sym = current_symbol;
1039 Symbol *current_symbol; variable
[all …]
/dports/net-mgmt/docsis/docsis-upstream-0.9.8/src/
H A Ddocsis_decode.c495 symbol_type *current_symbol; in decode_aggregate() local
512 current_symbol = find_symbol_by_code_and_pid (cp[0], sym->id); in decode_aggregate()
516 current_symbol = NULL; in decode_aggregate()
518 if (current_symbol == NULL) { in decode_aggregate()
521 current_symbol->decode_func (cp+1+tlv_llen, current_symbol, tlv_vlen); in decode_aggregate()
610 symbol_type *current_symbol; in decode_main_aggregate() local
626 current_symbol = find_symbol_by_code_and_pid (cp[0],0); in decode_main_aggregate()
634 current_symbol = find_symbol_by_code_and_pid (11,0); in decode_main_aggregate()
639 if (current_symbol == NULL) { in decode_main_aggregate()
642 current_symbol->decode_func (cp+1+tlv_llen, current_symbol, tlv_vlen ); in decode_main_aggregate()
/dports/lang/vala/vala-0.48.18/vala/
H A Dvalacreationmethod.vala91 …ce, "missing return type in method `%s.%s´".printf (context.analyzer.current_symbol.get_full_name …
101 var old_symbol = context.analyzer.current_symbol;
106 context.analyzer.current_symbol = this;
178 context.analyzer.current_symbol = body;
185 context.analyzer.current_symbol = this;
194 context.analyzer.current_symbol = body;
201 context.analyzer.current_symbol = this;
208 context.analyzer.current_symbol = old_symbol;
/dports/x11-themes/gtk-engines2/gtk-engines-2.20.2/engines/clearlooks/src/
H A Dclearlooks_rc_style.c341 gchar *current_symbol = clearlooks_rc_symbols; in clearlooks_rc_style_parse() local
345 while ((current_symbol[0] != '\0') && (i < TOKEN_LAST)) { in clearlooks_rc_style_parse()
346 g_scanner_scope_add_symbol(scanner, scope_id, current_symbol, GINT_TO_POINTER (i)); in clearlooks_rc_style_parse()
348 current_symbol += strlen(current_symbol) + 1; in clearlooks_rc_style_parse()
351 g_assert (i == TOKEN_LAST && current_symbol[0] == '\0'); in clearlooks_rc_style_parse()
/dports/science/py-ase/ase-3.22.0/ase/io/
H A Dcfg.py135 current_symbol = None
185 current_symbol = L
188 elif current_symbol is None and current_mass is None:
195 elif (current_symbol is not None and
199 syms[current_atom] = current_symbol

12345