Home
last modified time | relevance | path

Searched refs:entry_ptr (Results 1 – 17 of 17) sorted by relevance

/openbsd-src/lib/libcurses/tinfo/
H A Dlib_ti.c64 struct name_table_entry const *entry_ptr; in NCURSES_EXPORT() local
67 entry_ptr = _nc_find_type_entry(str, BOOLEAN, FALSE); in NCURSES_EXPORT()
68 if (entry_ptr != 0) { in NCURSES_EXPORT()
69 j = entry_ptr->nte_index; in NCURSES_EXPORT()
109 struct name_table_entry const *entry_ptr; in NCURSES_SP_NAME() local
112 entry_ptr = _nc_find_type_entry(str, NUMBER, FALSE); in NCURSES_SP_NAME()
113 if (entry_ptr != 0) { in NCURSES_SP_NAME()
114 j = entry_ptr->nte_index; in NCURSES_SP_NAME()
156 struct name_table_entry const *entry_ptr; in NCURSES_SP_NAME() local
159 entry_ptr = _nc_find_type_entry(str, STRING, FALSE); in NCURSES_SP_NAME()
[all …]
H A Dparse_entry.c290 struct name_table_entry const *entry_ptr; in _nc_parse_entry() local
399 entry_ptr = _nc_find_entry(_nc_curr_token.tk_name, in _nc_parse_entry()
410 if (entry_ptr == NOTFOUND) { in _nc_parse_entry()
425 entry_ptr = _nc_find_entry(ap->to, in _nc_parse_entry()
427 if (entry_ptr && !silent) in _nc_parse_entry()
441 entry_ptr = _nc_find_entry(ap->to, in _nc_parse_entry()
443 if (entry_ptr && !silent) in _nc_parse_entry()
449 if (entry_ptr == NOTFOUND) { in _nc_parse_entry()
450 entry_ptr = lookup_fullname(_nc_curr_token.tk_name); in _nc_parse_entry()
459 if (entry_ptr == NOTFOUND in _nc_parse_entry()
[all …]
H A Dlib_termcap.c247 struct name_table_entry const *entry_ptr; in NCURSES_SP_NAME() local
250 entry_ptr = _nc_find_type_entry(id, BOOLEAN, TRUE); in NCURSES_SP_NAME()
251 if (entry_ptr != 0) { in NCURSES_SP_NAME()
252 j = entry_ptr->nte_index; in NCURSES_SP_NAME()
299 struct name_table_entry const *entry_ptr; in NCURSES_SP_NAME() local
302 entry_ptr = _nc_find_type_entry(id, NUMBER, TRUE); in NCURSES_SP_NAME()
303 if (entry_ptr != 0) { in NCURSES_SP_NAME()
304 j = entry_ptr->nte_index; in NCURSES_SP_NAME()
351 struct name_table_entry const *entry_ptr; in NCURSES_SP_NAME() local
354 entry_ptr = _nc_find_type_entry(id, STRING, TRUE); in NCURSES_SP_NAME()
[all …]
/openbsd-src/lib/libcurses/
H A Dreport_hashing.c43 struct name_table_entry const *entry_ptr; in check_names() local
48 entry_ptr = _nc_find_entry(table[n], hash_table); in check_names()
49 if (entry_ptr == 0) { in check_names()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dread-rtl.c447 void **entry_ptr; local
454 entry_ptr = htab_find_slot (defs, def, TRUE);
455 if (! *entry_ptr)
460 if (! *entry_ptr)
463 *entry_ptr = def;
467 def = *entry_ptr;
H A Dgenautomata.c2141 void **entry_ptr; local
2143 entry_ptr = htab_find_slot (automaton_decl_table, automaton_decl, 1);
2144 if (*entry_ptr == NULL)
2145 *entry_ptr = (void *) automaton_decl;
2146 return (decl_t) *entry_ptr;
2245 void **entry_ptr; local
2247 entry_ptr = htab_find_slot (insn_decl_table, insn_decl, 1);
2248 if (*entry_ptr == NULL)
2249 *entry_ptr = (void *) insn_decl;
2250 return (decl_t) *entry_ptr;
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Dm88k-dis.c697 const HASHTAB *entry_ptr; in m88kdis() local
726 for (entry_ptr = hashtable[opcode % HASHVAL]; in m88kdis()
727 (entry_ptr != NULL) && (entry_ptr->instr->opcode != opcode); in m88kdis()
728 entry_ptr = entry_ptr->next) in m88kdis()
731 if (entry_ptr == NULL) in m88kdis()
735 (*info->fprintf_func) (info->stream, "%s", entry_ptr->instr->mnemonic); in m88kdis()
736 printop (info, &(entry_ptr->instr->op1), instruction, pc, 1); in m88kdis()
737 printop (info, &(entry_ptr->instr->op2), instruction, pc, 0); in m88kdis()
738 printop (info, &(entry_ptr->instr->op3), instruction, pc, 0); in m88kdis()
H A DChangeLog-02031116 init_disasm. entry_ptr now iterates through HASHTABs, not
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DUniqueCStringMap.h111 const Entry *FindNextValueForName(const Entry *entry_ptr) const { in FindNextValueForName() argument
115 const Entry *next_entry = entry_ptr + 1; in FindNextValueForName()
117 if (next_entry->cstring == entry_ptr->cstring) in FindNextValueForName()
/openbsd-src/gnu/usr.bin/binutils/opcodes/
H A Dm88k-dis.c579 const HASHTAB *entry_ptr; local
608 for (entry_ptr = hashtable[opcode % HASHVAL];
609 (entry_ptr != NULL) && (entry_ptr->instr->opcode != opcode);
610 entry_ptr = entry_ptr->next)
613 if (entry_ptr == NULL)
617 (*info->fprintf_func) (info->stream, "%s", entry_ptr->instr->mnemonic);
618 printop (info, &(entry_ptr->instr->op1), instruction, pc, 1);
619 printop (info, &(entry_ptr->instr->op2), instruction, pc, 0);
620 printop (info, &(entry_ptr->instr->op3), instruction, pc, 0);
H A DChangeLog-02031116 init_disasm. entry_ptr now iterates through HASHTABs, not
/openbsd-src/usr.bin/tput/
H A Dtput.c272 struct name_table_entry const *entry_ptr; in tput_cmd() local
273 entry_ptr = _nc_find_type_entry(name, STRING, FALSE); in tput_cmd()
274 if (entry_ptr == NULL) { in tput_cmd()
/openbsd-src/gnu/llvm/llvm/utils/gdb-scripts/
H A Dprettyprinters.py229 entry_ptr = it_deref.cast(entry_base_ty.pointer())
230 entry = entry_ptr.dereference()
233 value_ptr = (entry_ptr + 1).cast(value_ty.pointer())
234 …str_data = (entry_ptr + 1).cast(gdb.lookup_type('uintptr_t')) + max(value_ty.sizeof, entry_base_ty…
/openbsd-src/gnu/gcc/gcc/
H A Dread-rtl.c1166 void **entry_ptr; in read_constants() local
1173 entry_ptr = htab_find_slot (defs, def, INSERT); in read_constants()
1174 if (! *entry_ptr) in read_constants()
1179 if (! *entry_ptr) in read_constants()
1182 *entry_ptr = def; in read_constants()
1186 def = (struct md_constant *) *entry_ptr; in read_constants()
H A Dgenautomata.c1786 void **entry_ptr; in insert_automaton_decl() local
1788 entry_ptr = htab_find_slot (automaton_decl_table, automaton_decl, 1); in insert_automaton_decl()
1789 if (*entry_ptr == NULL) in insert_automaton_decl()
1790 *entry_ptr = (void *) automaton_decl; in insert_automaton_decl()
1791 return (decl_t) *entry_ptr; in insert_automaton_decl()
1885 void **entry_ptr; in insert_insn_decl() local
1887 entry_ptr = htab_find_slot (insn_decl_table, insn_decl, 1); in insert_insn_decl()
1888 if (*entry_ptr == NULL) in insert_insn_decl()
1889 *entry_ptr = (void *) insn_decl; in insert_insn_decl()
1890 return (decl_t) *entry_ptr; in insert_insn_decl()
[all …]
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGBlocks.cpp1559 llvm::BasicBlock::iterator entry_ptr = Builder.GetInsertPoint(); in GenerateBlockFunction() local
1560 --entry_ptr; in GenerateBlockFunction()
1574 ++entry_ptr; in GenerateBlockFunction()
1575 Builder.SetInsertPoint(entry, entry_ptr); in GenerateBlockFunction()
1595 entry_ptr == entry->end() ? nullptr : &*entry_ptr); in GenerateBlockFunction()
/openbsd-src/gnu/gcc/gcc/config/ia64/
H A Dia64.c7343 void **entry_ptr; in insert_bundle_state() local
7345 entry_ptr = htab_find_slot (bundle_state_table, bundle_state, 1); in insert_bundle_state()
7346 if (*entry_ptr == NULL) in insert_bundle_state()
7350 *entry_ptr = (void *) bundle_state; in insert_bundle_state()
7353 else if (bundle_state->cost < ((struct bundle_state *) *entry_ptr)->cost in insert_bundle_state()
7354 || (bundle_state->cost == ((struct bundle_state *) *entry_ptr)->cost in insert_bundle_state()
7355 && (((struct bundle_state *)*entry_ptr)->accumulated_insns_num in insert_bundle_state()
7358 *entry_ptr)->accumulated_insns_num in insert_bundle_state()
7361 *entry_ptr)->branch_deviation in insert_bundle_state()
7367 temp = *(struct bundle_state *) *entry_ptr; in insert_bundle_state()
[all …]