| /freebsd-14.2/sys/dev/sfxge/common/ |
| H A D | ef10_nvram.c | 149 if (cursor->current == cursor->end) { in tlv_advance() 157 cursor->current = tlv_next_item_ptr(cursor); in tlv_advance() 180 cursor->current = cursor->block; in tlv_rewind() 217 if (cursor->current < cursor->block) { in tlv_validate_state() 221 if (cursor->current > cursor->limit) { in tlv_validate_state() 228 if (cursor->current > (cursor->limit - 1)) { in tlv_validate_state() 235 if (tlv_next_item_ptr(cursor) > cursor->limit) { in tlv_validate_state() 312 cursor->end = cursor->current; in tlv_require_end() 430 memmove(cursor->current + delta, cursor->current, in tlv_insert() 477 memmove(cursor->current, cursor->current + delta, in tlv_delete() [all …]
|
| H A D | ef10_image.c | 76 if (cursor == NULL || cursor->buffer == NULL || cursor->length < 2) { in efx_asn1_parse_header_match_tag() 81 cursor->tag = cursor->buffer[0]; in efx_asn1_parse_header_match_tag() 97 cursor->val_size = cursor->buffer[1]; in efx_asn1_parse_header_match_tag() 126 if ((cursor->hdr_size + cursor->val_size) > cursor->length) { in efx_asn1_parse_header_match_tag() 177 cursor->buffer += cursor->hdr_size; in efx_asn1_enter_tag() 178 cursor->length = cursor->val_size; in efx_asn1_enter_tag() 224 cursor->buffer += cursor->hdr_size + cursor->val_size; in efx_asn1_match_tag_value() 225 cursor->length -= cursor->hdr_size + cursor->val_size; in efx_asn1_match_tag_value() 259 cursor->buffer += cursor->hdr_size + cursor->val_size; in efx_asn1_skip_tag() 260 cursor->length -= cursor->hdr_size + cursor->val_size; in efx_asn1_skip_tag() [all …]
|
| /freebsd-14.2/contrib/llvm-project/libunwind/src/ |
| H A D | UnwindLevel1.c | 78 __unw_init_local(cursor, uc); in unwind_phase1() 84 int stepResult = __unw_step(cursor); in unwind_phase1() 174 __unw_init_local(cursor, uc); in unwind_phase2() 208 __unw_get_reg(cursor, UNW_REG_SP, &sp); in unwind_phase2() 312 __unw_init_local(cursor, uc); in unwind_phase2_forced() 318 while (__unw_step_stage2(cursor) > 0) { in unwind_phase2_forced() 424 unw_cursor_t cursor; in _Unwind_RaiseException() local 458 unw_cursor_t cursor; in _Unwind_Resume() local 483 unw_cursor_t cursor; in _Unwind_ForcedUnwind() local 550 __unw_get_reg(cursor, index, &result); in _Unwind_GetGR() [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() 90 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in __unw_init_local() 101 static_cast<void *>(cursor), regNum, in _LIBUNWIND_WEAK_ALIAS() 148 static_cast<void *>(cursor), regNum, in _LIBUNWIND_WEAK_ALIAS() 179 _LIBUNWIND_HIDDEN int __unw_step(unw_cursor_t *cursor) { in _LIBUNWIND_WEAK_ALIAS() 190 static_cast<void *>(cursor)); in _LIBUNWIND_WEAK_ALIAS() 209 _LIBUNWIND_HIDDEN int __unw_resume(unw_cursor_t *cursor) { in _LIBUNWIND_WEAK_ALIAS() 257 static_cast<void *>(cursor)); in _LIBUNWIND_WEAK_ALIAS() 266 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() 107 __unw_set_reg(&cursor, UNW_REG_IP, disp->ControlPc); 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_AARCH64_X0, &retval); in _GCC_specific_handler() [all …]
|
| H A D | Unwind-EHABI.cpp | 472 __unw_init_local(cursor, uc); in unwind_phase1() 569 __unw_init_local(cursor, uc); in unwind_phase2() 675 __unw_resume(cursor); in unwind_phase2() 704 __unw_init_local(cursor, uc); in unwind_phase2_forced() 779 __unw_resume(cursor); in unwind_phase2_forced() 821 unw_cursor_t cursor; in _Unwind_RaiseException() local 859 unw_cursor_t cursor; in _Unwind_Resume() local 934 __unw_save_vfp_as_X(cursor); in _Unwind_VRS_Set() 997 __unw_save_vfp_as_X(cursor); in _Unwind_VRS_Get_Internal() 1158 unw_cursor_t cursor; in _Unwind_ForcedUnwind() local [all …]
|
| H A D | UnwindLevel1-gcc-ext.c | 117 unw_cursor_t cursor; in _Unwind_FindEnclosingFunction() local 121 __unw_init_local(&cursor, &uc); in _Unwind_FindEnclosingFunction() 134 unw_cursor_t cursor; in _Unwind_Backtrace() local 137 __unw_init_local(&cursor, &uc); in _Unwind_Backtrace() 156 if (__unw_step(&cursor) <= 0) { in _Unwind_Backtrace() 193 __unw_get_proc_info(&cursor, &frame); in _Unwind_Backtrace() 197 (void *)&cursor); in _Unwind_Backtrace() 220 unw_cursor_t cursor; in _Unwind_Find_FDE() local 224 __unw_init_local(&cursor, &uc); in _Unwind_Find_FDE() 226 __unw_get_proc_info(&cursor, &info); in _Unwind_Find_FDE() [all …]
|
| /freebsd-14.2/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-14.2/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() 460 el->el_chared.c_undo.cursor = 0; in ch_reset() 512 el->el_line.cursor = newbuffer + (el->el_line.cursor - oldbuf); in ch_enlargebufs() 607 *el->el_line.cursor++ = *s++; in el_winsertstr() 625 el->el_line.cursor -= n; in el_deletestr() 702 el->el_line.cursor += n; in el_cursor() 729 el->el_line.cursor = cp; in c_gets() [all …]
|
| /freebsd-14.2/usr.bin/dtc/ |
| H A D | input_buffer.hh | 79 int cursor; member in dtc::input_buffer 85 cursor(c) {} in input_buffer() 144 return buffer[cursor]; in operator *() 164 cursor++; in operator ++() 236 cursor += align; in consume_binary() 241 if (size < cursor) in consume_binary() 265 if (size < cursor + 1) in consume_binary() 283 int cursor = 0; member in dtc::text_input_buffer 376 cursor++; in operator ++() 502 int cursor; member in dtc::text_input_buffer::source_location [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ELFAttributeParser.cpp | 88 if (!cursor || !value) in parseIndexList() 135 cursor.seek(end); in parseSubsection() 139 while (cursor.tell() < end) { in parseSubsection() 143 if (!cursor) in parseSubsection() 144 return cursor.takeError(); in parseSubsection() 199 DataExtractor::Cursor &cursor; in parse() member 201 } clear{cursor}; in parse() 210 while (!de.eof(cursor)) { in parse() 212 if (!cursor) in parse() 213 return cursor.takeError(); in parse() [all …]
|
| /freebsd-14.2/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-14.2/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-14.2/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-14.2/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-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCClassDescriptorV2.cpp | 68 lldb::offset_t cursor = 0; in Read() local 112 lldb::offset_t cursor = 0; in Read() local 129 cursor = 0; in Read() 168 lldb::offset_t cursor = 0; in Read() local 257 lldb::offset_t cursor = 0; in Read() local 264 m_first_ptr = addr + cursor; in Read() 285 lldb::offset_t cursor = 0; in Read() local 335 lldb::offset_t cursor = 0; in Read() local 358 lldb::offset_t cursor = 0; in Read() local 394 lldb::offset_t cursor = 0; in Read() local [all …]
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | HexagonDYLDRendezvous.cpp | 71 addr_t cursor; in Resolve() local 79 cursor = info_addr = m_rendezvous_addr; in Resolve() 81 if (cursor == LLDB_INVALID_ADDRESS) in Resolve() 84 if (!(cursor = ReadWord(cursor, &info.version, word_size))) in Resolve() 87 if (!(cursor = ReadPointer(cursor + padding, &info.map_addr))) in Resolve() 90 if (!(cursor = ReadPointer(cursor, &info.brk))) in Resolve() 93 if (!(cursor = ReadWord(cursor, &info.state, word_size))) in Resolve() 96 if (!(cursor = ReadPointer(cursor + padding, &info.ldbase))) in Resolve() 161 for (addr_t cursor = m_current.map_addr; cursor != 0; cursor = entry.next) { in UpdateSOEntriesForAddition() local 162 if (!ReadSOEntryFromMemory(cursor, entry)) in UpdateSOEntriesForAddition() [all …]
|
| /freebsd-14.2/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
|