| /freebsd-13.1/sys/dev/sfxge/common/ |
| H A D | ef10_nvram.c | 151 if (cursor->current == cursor->end) { in tlv_advance() 159 cursor->current = tlv_next_item_ptr(cursor); in tlv_advance() 182 cursor->current = cursor->block; in tlv_rewind() 219 if (cursor->current < cursor->block) { in tlv_validate_state() 223 if (cursor->current > cursor->limit) { in tlv_validate_state() 230 if (cursor->current > (cursor->limit - 1)) { in tlv_validate_state() 237 if (tlv_next_item_ptr(cursor) > cursor->limit) { in tlv_validate_state() 314 cursor->end = cursor->current; in tlv_require_end() 432 memmove(cursor->current + delta, cursor->current, in tlv_insert() 479 memmove(cursor->current, cursor->current + delta, in tlv_delete() [all …]
|
| H A D | ef10_image.c | 78 if (cursor == NULL || cursor->buffer == NULL || cursor->length < 2) { in efx_asn1_parse_header_match_tag() 83 cursor->tag = cursor->buffer[0]; in efx_asn1_parse_header_match_tag() 99 cursor->val_size = cursor->buffer[1]; in efx_asn1_parse_header_match_tag() 128 if ((cursor->hdr_size + cursor->val_size) > cursor->length) { in efx_asn1_parse_header_match_tag() 179 cursor->buffer += cursor->hdr_size; in efx_asn1_enter_tag() 180 cursor->length = cursor->val_size; in efx_asn1_enter_tag() 226 cursor->buffer += cursor->hdr_size + cursor->val_size; in efx_asn1_match_tag_value() 227 cursor->length -= cursor->hdr_size + cursor->val_size; in efx_asn1_match_tag_value() 261 cursor->buffer += cursor->hdr_size + cursor->val_size; in efx_asn1_skip_tag() 262 cursor->length -= cursor->hdr_size + cursor->val_size; in efx_asn1_skip_tag() [all …]
|
| /freebsd-13.1/sys/contrib/openzfs/module/os/linux/spl/ |
| H A D | spl-procfs-list.c | 86 cursor->cached_node); in procfs_list_next_node() 89 cursor->cached_node = next_node; in procfs_list_next_node() 90 cursor->cached_pos = NODE_ID(procfs_list, cursor->cached_node); in procfs_list_next_node() 91 *pos = cursor->cached_pos; in procfs_list_next_node() 98 cursor->cached_node = NULL; in procfs_list_next_node() 99 cursor->cached_pos++; in procfs_list_next_node() 100 *pos = cursor->cached_pos; in procfs_list_next_node() 116 cursor->cached_pos = 0; in procfs_list_seq_start() 138 return (cursor->cached_node); in procfs_list_seq_start() 179 cursor->cached_node = NULL; in procfs_list_open() [all …]
|
| /freebsd-13.1/contrib/llvm-project/libunwind/src/ |
| H A D | UnwindLevel1.c | 39 __unw_init_local(cursor, uc); in unwind_phase1() 45 int stepResult = __unw_step(cursor); in unwind_phase1() 133 __unw_init_local(cursor, uc); in unwind_phase2() 143 int stepResult = __unw_step(cursor); in unwind_phase2() 226 __unw_resume(cursor); in unwind_phase2() 247 __unw_init_local(cursor, uc); in unwind_phase2_forced() 250 while (__unw_step(cursor) > 0) { in unwind_phase2_forced() 317 __unw_resume(cursor); in unwind_phase2_forced() 352 unw_cursor_t cursor; in _Unwind_RaiseException() local 386 unw_cursor_t cursor; in _Unwind_Resume() local [all …]
|
| H A D | libunwind.cpp | 43 _LIBUNWIND_HIDDEN int __unw_init_local(unw_cursor_t *cursor, in __unw_init_local() argument 46 static_cast<void *>(cursor), in __unw_init_local() 84 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in __unw_init_local() 95 static_cast<void *>(cursor), regNum, in _LIBUNWIND_WEAK_ALIAS() 97 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in _LIBUNWIND_WEAK_ALIAS() 142 static_cast<void *>(cursor), regNum, in _LIBUNWIND_WEAK_ALIAS() 173 _LIBUNWIND_HIDDEN int __unw_step(unw_cursor_t *cursor) { in _LIBUNWIND_WEAK_ALIAS() 194 _LIBUNWIND_HIDDEN int __unw_resume(unw_cursor_t *cursor) { in _LIBUNWIND_WEAK_ALIAS() 220 _LIBUNWIND_HIDDEN int __unw_is_fpreg(unw_cursor_t *cursor, in _LIBUNWIND_WEAK_ALIAS() 242 static_cast<void *>(cursor)); in _LIBUNWIND_WEAK_ALIAS() [all …]
|
| H A D | Unwind-seh.cpp | 51 static void __unw_seh_set_disp_ctx(unw_cursor_t *cursor, 61 unw_cursor_t cursor; in _GCC_specific_handler() local 105 __unw_init_seh(&cursor, disp->ContextRecord); in _GCC_specific_handler() 106 __unw_seh_set_disp_ctx(&cursor, disp); in _GCC_specific_handler() 108 ctx = (struct _Unwind_Context *)&cursor; in _GCC_specific_handler() 164 __unw_get_reg(&cursor, UNW_X86_64_RAX, &retval); in _GCC_specific_handler() 168 __unw_get_reg(&cursor, UNW_ARM_R0, &retval); in _GCC_specific_handler() 169 __unw_get_reg(&cursor, UNW_ARM_R1, &exc->private_[3]); in _GCC_specific_handler() 172 __unw_get_reg(&cursor, UNW_ARM64_X0, &retval); in _GCC_specific_handler() 175 __unw_get_reg(&cursor, UNW_REG_IP, &target); in _GCC_specific_handler() [all …]
|
| H A D | UnwindLevel1-gcc-ext.c | 93 unw_cursor_t cursor; in _Unwind_FindEnclosingFunction() local 97 __unw_init_local(&cursor, &uc); in _Unwind_FindEnclosingFunction() 109 unw_cursor_t cursor; in _Unwind_Backtrace() local 112 __unw_init_local(&cursor, &uc); in _Unwind_Backtrace() 131 if (__unw_step(&cursor) <= 0) { in _Unwind_Backtrace() 168 __unw_get_proc_info(&cursor, &frame); in _Unwind_Backtrace() 172 (void *)&cursor); in _Unwind_Backtrace() 195 unw_cursor_t cursor; in _Unwind_Find_FDE() local 199 __unw_init_local(&cursor, &uc); in _Unwind_Find_FDE() 201 __unw_get_proc_info(&cursor, &info); in _Unwind_Find_FDE() [all …]
|
| /freebsd-13.1/contrib/libedit/ |
| H A D | emacs.c | 137 cp = el->el_line.cursor; in em_yank() 148 el->el_line.cursor = cp; in em_yank() 190 cp = el->el_line.cursor; in em_kill_region() 223 cp = el->el_line.cursor; in em_copy_region() 250 el->el_line.cursor[-2] = el->el_line.cursor[-1]; in em_gosmacs_transpose() 269 el->el_line.cursor = c__next_word(el->el_line.cursor, in em_next_word() 300 el->el_line.cursor = ep; in em_upper_case() 332 el->el_line.cursor = ep; in em_capitol_case() 356 el->el_line.cursor = ep; in em_lower_case() 387 cp = el->el_line.cursor; in em_exchange_mark() [all …]
|
| H A D | common.c | 95 *el->el_line.cursor++ = c; in ed_insert() 134 el->el_line.cursor = cp; in ed_delete_prev_word() 153 EL.buffer, EL.buffer, EL.cursor, EL.cursor, EL.lastchar, in ed_delete_next_char() 170 el->el_line.cursor--; in ed_delete_next_char() 198 cp = el->el_line.cursor; in ed_kill_line() 225 el->el_line.cursor--; in ed_move_to_end() 246 el->el_line.cursor++; in ed_move_to_beg() 268 el->el_line.cursor++; in ed_transpose_chars() 273 el->el_line.cursor[-2] = el->el_line.cursor[-1]; in ed_transpose_chars() 299 el->el_line.cursor = lim; in ed_next_char() [all …]
|
| H A D | vi.c | 114 el->el_line.cursor++; in cv_paste() 164 el->el_line.cursor = cv_prev_word(el->el_line.cursor, in vi_prev_big_word() 189 el->el_line.cursor = cv_prev_word(el->el_line.cursor, in vi_prev_word() 214 el->el_line.cursor = cv_next_word(el, el->el_line.cursor, in vi_next_big_word() 238 el->el_line.cursor = cv_next_word(el, el->el_line.cursor, in vi_next_word() 427 el->el_line.cursor++; in vi_add() 481 el->el_line.cursor = cv__endword(el->el_line.cursor, in vi_end_big_word() 485 el->el_line.cursor++; in vi_end_big_word() 505 el->el_line.cursor = cv__endword(el->el_line.cursor, in vi_end_word() 537 el->el_line.cursor = un.buf + un.cursor; in vi_undo() [all …]
|
| H A D | chared.c | 71 vu->cursor = (int)(el->el_line.cursor - el->el_line.buffer); in cv_undo() 176 for (cp = el->el_line.cursor - num; in c_delbefore() 364 el->el_line.cursor += size; in cv_delfini() 413 el->el_chared.c_undo.cursor = 0; in ch_init() 457 el->el_chared.c_undo.cursor = 0; in ch_reset() 509 el->el_line.cursor = newbuffer + (el->el_line.cursor - oldbuf); in ch_enlargebufs() 604 *el->el_line.cursor++ = *s++; in el_winsertstr() 622 el->el_line.cursor -= n; in el_deletestr() 636 el->el_line.cursor += n; in el_cursor() 663 el->el_line.cursor = cp; in c_gets() [all …]
|
| /freebsd-13.1/usr.bin/dtc/ |
| H A D | input_buffer.hh | 81 int cursor; member in dtc::input_buffer 87 cursor(c) {} in input_buffer() 146 return buffer[cursor]; in operator *() 166 cursor++; in operator ++() 238 cursor += align; in consume_binary() 243 if (size < cursor) in consume_binary() 267 if (size < cursor + 1) in consume_binary() 285 int cursor = 0; member in dtc::text_input_buffer 378 cursor++; in operator ++() 504 int cursor; member in dtc::text_input_buffer::source_location [all …]
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_fs_base/bdb/ |
| H A D | strings-table.c | 83 DBC **cursor, in locate_key() argument 112 svn_bdb_dbc_close(*cursor); in locate_key() 172 svn_bdb_dbc_close(cursor); in get_next_length() 183 svn_bdb_dbc_close(cursor); in get_next_length() 203 DBC *cursor; in svn_fs_bdb__string_read() local 284 DBC *cursor; in get_key_and_bump() local 306 db_err = svn_bdb_dbc_get(cursor, in get_key_and_bump() 312 svn_bdb_dbc_close(cursor); in get_key_and_bump() 414 DBC *cursor; in svn_fs_bdb__string_size() local 481 DBC *cursor; in svn_fs_bdb__string_copy() local [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ELFAttributeParser.cpp | 90 if (!cursor || !value) in parseIndexList() 137 while (cursor.tell() < end) { in parseSubsection() 139 uint8_t tag = de.getU8(cursor); in parseSubsection() 141 if (!cursor) in parseSubsection() 142 return cursor.takeError(); in parseSubsection() 197 DataExtractor::Cursor &cursor; in parse() member 199 } clear{cursor}; in parse() 208 while (!de.eof(cursor)) { in parse() 210 if (!cursor) in parse() 211 return cursor.takeError(); in parse() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCClassDescriptorV2.cpp | 64 lldb::offset_t cursor = 0; in Read() local 103 lldb::offset_t cursor = 0; in Read() local 105 m_flags = extractor.GetU32_unchecked(&cursor); in Read() 118 cursor = 0; in Read() 155 lldb::offset_t cursor = 0; in Read() local 242 lldb::offset_t cursor = 0; in Read() local 249 m_first_ptr = addr + cursor; in Read() 270 lldb::offset_t cursor = 0; in Read() local 320 lldb::offset_t cursor = 0; in Read() local 324 m_first_ptr = addr + cursor; in Read() [all …]
|
| /freebsd-13.1/crypto/heimdal/lib/krb5/ |
| H A D | cache.c | 1055 *cursor = calloc(1, sizeof(**cursor)); in krb5_cc_cache_get_first() 1063 ret = ops->get_cache_first(context, &(*cursor)->cursor); in krb5_cc_cache_get_first() 1091 return cursor->ops->get_cache_next(context, cursor->cursor, id); in krb5_cc_cache_next() 1108 ret = cursor->ops->end_cache_get(context, cursor->cursor); in krb5_cc_cache_end_seq_get() 1390 *cursor = calloc(1, sizeof(**cursor)); in krb5_cccol_cursor_new() 1396 (*cursor)->cursor = NULL; in krb5_cccol_cursor_new() 1429 if (cursor->cursor == NULL) { in krb5_cccol_cursor_next() 1432 &cursor->cursor); in krb5_cccol_cursor_next() 1438 ret = krb5_cc_cache_next(context, cursor->cursor, cache); in krb5_cccol_cursor_next() 1442 krb5_cc_cache_end_seq_get(context, cursor->cursor); in krb5_cccol_cursor_next() [all …]
|
| /freebsd-13.1/contrib/tcsh/nls/C/ |
| H A D | set4 | 7 5 cursor to horiz pos 14 12 cursor from status line 15 13 home cursor 19 17 sends cursor down 20 18 sends cursor left 21 19 sends cursor right 22 20 sends cursor up 29 27 cursor up one 34 32 cursor down multiple 36 34 cursor left multiple [all …]
|
| H A D | set3 | 4 2 Delete the character behind cursor 17 15 Copy current word to cursor 18 16 Copy area between mark and cursor to cut buffer 20 18 Delete character under cursor 30 28 Move cursor to end of line 31 29 Exchange the cursor and mark 38 36 Exchange the two characters before the cursor 65 63 Set the mark at cursor 71 69 Exchange the two characters before the cursor 84 82 Vi enter insert mode after the cursor [all …]
|
| /freebsd-13.1/contrib/tcsh/nls/ukrainian/ |
| H A D | set4 | 7 5 cursor to horiz pos 14 12 cursor from status line 15 13 home cursor 19 17 sends cursor down 20 18 sends cursor left 21 19 sends cursor right 22 20 sends cursor up 29 27 cursor up one 34 32 cursor down multiple 36 34 cursor left multiple [all …]
|
| H A D | set3 | 4 2 Delete the character behind cursor 17 15 Copy current word to cursor 18 16 Copy area between mark and cursor to cut buffer 20 18 Delete character under cursor 30 28 Move cursor to end of line 31 29 Exchange the cursor and mark 38 36 Exchange the two characters before the cursor 65 63 Set the mark at cursor 71 69 Exchange the two characters before the cursor 84 82 Vi enter insert mode after the cursor [all …]
|
| /freebsd-13.1/contrib/tcsh/nls/finnish/ |
| H A D | set4 | 7 5 cursor to horiz pos 14 12 cursor from status line 15 13 home cursor 19 17 sends cursor down 20 18 sends cursor left 21 19 sends cursor right 22 20 sends cursor up 29 27 cursor up one 34 32 cursor down multiple 36 34 cursor left multiple [all …]
|
| /freebsd-13.1/contrib/tcsh/nls/spanish/ |
| H A D | set4 | 7 5 cursor hasta posición horizontal 14 12 cursor de línea de estado 15 13 cursor en posición inicial 19 17 envía cursor hacia abajo 20 18 envía cursor hacia la izquierda 21 19 envía cursor hacia la derecha 22 20 envía cursor hacia arriba 28 26 cursor a la línea de estado 29 27 mueve el cursor hacia arriba una línea 34 32 mueve el cursor varias líneas hacia abajo [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | HexagonDYLDRendezvous.cpp | 67 addr_t cursor; in Resolve() local 75 cursor = info_addr = m_rendezvous_addr; in Resolve() 77 if (cursor == LLDB_INVALID_ADDRESS) in Resolve() 80 if (!(cursor = ReadWord(cursor, &info.version, word_size))) in Resolve() 83 if (!(cursor = ReadPointer(cursor + padding, &info.map_addr))) in Resolve() 86 if (!(cursor = ReadPointer(cursor, &info.brk))) in Resolve() 89 if (!(cursor = ReadWord(cursor, &info.state, word_size))) in Resolve() 92 if (!(cursor = ReadPointer(cursor + padding, &info.ldbase))) in Resolve() 157 for (addr_t cursor = m_current.map_addr; cursor != 0; cursor = entry.next) { in UpdateSOEntriesForAddition() local 158 if (!ReadSOEntryFromMemory(cursor, entry)) in UpdateSOEntriesForAddition() [all …]
|
| /freebsd-13.1/contrib/tcsh/nls/russian/ |
| H A D | set3 | 4 2 Delete the character behind cursor 17 15 Copy current word to cursor 18 16 Copy area between mark and cursor to cut buffer 20 18 Delete character under cursor 30 28 Move cursor to end of line 31 29 Exchange the cursor and mark 38 36 Exchange the two characters before the cursor 65 63 Set the mark at cursor 71 69 Exchange the two characters before the cursor 84 82 Vi enter insert mode after the cursor [all …]
|
| H A D | set4 | 14 12 cursor from status line 15 13 home cursor 28 26 cursor to status line 29 27 cursor up one 34 32 cursor down multiple 36 34 cursor left multiple 37 35 cursor right multiple 38 36 cursor up multiple
|