| /dragonfly/contrib/gcc-4.7/libobjc/ |
| HD | sarray.c | 103 struct sindex **the_index; in sarray_at_put() 104 struct sindex *new_index; in sarray_at_put() 151 new_index = (struct sindex *) objc_malloc (sizeof (struct sindex)); in sarray_at_put() 152 memcpy (new_index, array->empty_index, sizeof (struct sindex)); in sarray_at_put() 162 struct sindex *old_index = *the_index; in sarray_at_put() 163 new_index = (struct sindex *) objc_malloc (sizeof (struct sindex)); in sarray_at_put() 164 memcpy (new_index, old_index, sizeof (struct sindex)); in sarray_at_put() 216 struct sindex **new_indices; in sarray_new() 232 new_indices = (struct sindex **) in sarray_new() 233 objc_malloc (sizeof (struct sindex *) * num_indices); in sarray_new() [all …]
|
| /dragonfly/contrib/less/ |
| HD | jump.c | 227 int sindex; in jump_loc() local 235 sindex = sindex_from_sline(sline); in jump_loc() 243 nline -= sindex; in jump_loc() 279 for (nline = 0; nline < sindex; nline++) in jump_loc() 288 forw(sc_height-sindex+nline-1, bpos, 1, 0, 0); in jump_loc() 310 forw(sc_height-1, pos, 1, 0, sindex-nline); in jump_loc() 319 for (nline = sindex; nline < sc_height - 1; nline++) in jump_loc()
|
| HD | position.c | 39 public POSITION position(int sindex) in position() argument 41 switch (sindex) in position() 44 sindex = sc_height - 2; in position() 47 sindex = sc_height - 1; in position() 50 sindex = (sc_height - 1) / 2; in position() 53 return (table[sindex]); in position()
|
| HD | search.c | 265 int sindex; in repaint_hilite() local 287 for (sindex = TOP; sindex < TOP + sc_height-1; sindex++) in repaint_hilite() 289 pos = position(sindex); in repaint_hilite() 293 goto_line(sindex); in repaint_hilite() 309 int sindex; in clear_attn() local 330 for (sindex = TOP; sindex < TOP + sc_height-1; sindex++) in clear_attn() 332 pos = position(sindex); in clear_attn() 335 epos = position(sindex+1); in clear_attn() 340 goto_line(sindex); in clear_attn() 1113 int sindex; in search_pos() local [all …]
|
| HD | funcs.h | 27 public void goto_line(int sindex); 360 public POSITION position(int sindex); 391 public lbool osc8_click(int sindex, int col);
|
| HD | screen.c | 2162 public void goto_line(int sindex) in goto_line() argument 2166 ltputs(tgoto(sc_move, 0, sindex), 1, putchr); in goto_line() 2169 _settextposition(sindex+1, 1); in goto_line()
|
| /dragonfly/contrib/gdb-7/readline/ |
| HD | macro.c | 80 int sindex; member 132 saver->sindex = executing_macro_index; in _rl_push_executing_macro() 153 executing_macro_index = macro_list->sindex; in _rl_pop_executing_macro()
|
| HD | histexpand.c | 311 hist_string_extract_single_quoted (string, sindex, flags) in hist_string_extract_single_quoted() argument 313 int *sindex, flags; 317 for (i = *sindex; string[i] && string[i] != '\''; i++) 323 *sindex = i;
|
| /dragonfly/contrib/gcc-4.7/libobjc/objc-private/ |
| HD | sarray.h | 125 struct sindex struct 138 struct sindex** indices; argument 139 struct sindex* empty_index;
|
| /dragonfly/contrib/tcpdump/ |
| HD | print-smb.c | 70 int sindex; in smbfind() local 72 for (sindex = 0; list[sindex].name; sindex++) in smbfind() 73 if (list[sindex].id == id) in smbfind() 74 return(&list[sindex]); in smbfind() 82 int sindex; in smbfindint() local 84 for (sindex = 0; list[sindex].name; sindex++) in smbfindint() 85 if (list[sindex].id == id) in smbfindint() 86 return(&list[sindex]); in smbfindint()
|
| /dragonfly/contrib/grep/lib/ |
| HD | dfa.c | 485 state_num sindex; /* Index for adding new states. */ member 2194 for (i = 0; i < d->sindex; ++i) in state_index() 2247 d->states = maybe_realloc (d->states, d->sindex, &d->salloc, -1, in state_index() 2259 ++d->sindex; in state_index() 2383 idx_t sindex = follows[tindex].elems[i].index; in merge_nfa_state() local 2396 if (!(flags[sindex] & (OPT_LPAREN | OPT_RPAREN))) in merge_nfa_state() 2410 if (d->tokens[sindex] != d->tokens[dindex]) in merge_nfa_state() 2413 if ((flags[sindex] ^ flags[dindex]) & OPT_REPEAT) in merge_nfa_state() 2416 if (flags[sindex] & OPT_REPEAT) in merge_nfa_state() 2417 delete (sindex, &follows[sindex]); in merge_nfa_state() [all …]
|
| /dragonfly/contrib/awk/ |
| HD | proto.h | 173 extern Cell *sindex(Node **, int);
|
| HD | run.c | 1030 Cell *sindex(Node **a, int nnn) /* index(a[0], a[1]) */ in sindex() function
|
| /dragonfly/contrib/binutils-2.27/binutils/ |
| HD | readelf.c | 5363 int sindex; in get_elf_section_flags() local 5424 case SHF_WRITE: sindex = 0; break; in get_elf_section_flags() 5425 case SHF_ALLOC: sindex = 1; break; in get_elf_section_flags() 5426 case SHF_EXECINSTR: sindex = 2; break; in get_elf_section_flags() 5427 case SHF_MERGE: sindex = 3; break; in get_elf_section_flags() 5428 case SHF_STRINGS: sindex = 4; break; in get_elf_section_flags() 5429 case SHF_INFO_LINK: sindex = 5; break; in get_elf_section_flags() 5430 case SHF_LINK_ORDER: sindex = 6; break; in get_elf_section_flags() 5431 case SHF_OS_NONCONFORMING: sindex = 7; break; in get_elf_section_flags() 5432 case SHF_GROUP: sindex = 8; break; in get_elf_section_flags() [all …]
|
| /dragonfly/contrib/binutils-2.34/binutils/ |
| HD | readelf.c | 5807 signed int sindex; in get_elf_section_flags() local 5872 case SHF_WRITE: sindex = 0; break; in get_elf_section_flags() 5873 case SHF_ALLOC: sindex = 1; break; in get_elf_section_flags() 5874 case SHF_EXECINSTR: sindex = 2; break; in get_elf_section_flags() 5875 case SHF_MERGE: sindex = 3; break; in get_elf_section_flags() 5876 case SHF_STRINGS: sindex = 4; break; in get_elf_section_flags() 5877 case SHF_INFO_LINK: sindex = 5; break; in get_elf_section_flags() 5878 case SHF_LINK_ORDER: sindex = 6; break; in get_elf_section_flags() 5879 case SHF_OS_NONCONFORMING: sindex = 7; break; in get_elf_section_flags() 5880 case SHF_GROUP: sindex = 8; break; in get_elf_section_flags() [all …]
|
| /dragonfly/contrib/libarchive/libarchive/ |
| HD | archive_read_support_format_7zip.c | 2362 int eindex, empty_streams, sindex; in read_Header() local 2598 eindex = sindex = 0; in read_Header() 2606 if ((size_t)sindex >= si->ss.unpack_streams) in read_Header() 2610 if (si->ss.digestsDefined[sindex]) in read_Header() 2612 entries[i].ssIndex = sindex; in read_Header() 2613 sindex++; in read_Header()
|
| /dragonfly/sys/bus/cam/scsi/ |
| HD | scsi_cd.c | 281 u_int32_t strack, u_int32_t sindex, 3672 cdplaytracks(struct cam_periph *periph, u_int32_t strack, u_int32_t sindex, in cdplaytracks() argument 3702 scsi_cmd->start_index = sindex; in cdplaytracks()
|