/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | libunwind.cpp | 41 /// Create a cursor of a thread in this process given 'context' recorded by 43 _LIBUNWIND_HIDDEN int __unw_init_local(unw_cursor_t *cursor, in __unw_init_local() argument 45 _LIBUNWIND_TRACE_API("__unw_init_local(cursor=%p, context=%p)", in __unw_init_local() 46 static_cast<void *>(cursor), in __unw_init_local() 85 // Use "placement new" to allocate UnwindCursor in the cursor buffer. in __unw_init_local() 86 new (reinterpret_cast<UnwindCursor<LocalAddressSpace, REGISTER_KIND> *>(cursor)) in __unw_init_local() 90 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in __unw_init_local() 97 /// Get value of specified register at cursor position in stack frame. in _LIBUNWIND_WEAK_ALIAS() 98 _LIBUNWIND_HIDDEN int __unw_get_reg(unw_cursor_t *cursor, unw_regnum_t regNum, in _LIBUNWIND_WEAK_ALIAS() 100 _LIBUNWIND_TRACE_API("__unw_get_reg(cursor=%p, regNum=%d, &value=%p)", in _LIBUNWIND_WEAK_ALIAS() [all …]
|
H A D | UnwindLevel1.c | 48 #define __unw_phase2_resume(cursor, fn) \ argument 51 __unw_resume((cursor)); \ 55 #define __unw_phase2_resume(cursor, fn) \ argument 58 void *cetRegContext = __libunwind_cet_get_registers((cursor)); \ 67 #define __unw_phase2_resume(cursor, fn) \ argument 70 void *cetRegContext = __libunwind_cet_get_registers((cursor)); \ 77 #define __unw_phase2_resume(cursor, fn) \ argument 80 void *cetRegContext = __libunwind_cet_get_registers((cursor)); \ 91 unwind_phase1(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object) { in unwind_phase1() argument 92 __unw_init_local(cursor, uc); in unwind_phase1() [all …]
|
/freebsd/sys/dev/sfxge/common/ |
H A D | ef10_nvram.c | 41 /* Cursor for TLV partition format */ 44 uint32_t *current; /* Cursor position */ 66 __inout tlv_cursor_t *cursor); 77 __in tlv_cursor_t *cursor) in tlv_tag() argument 81 dword = cursor->current[0]; in tlv_tag() 89 __in tlv_cursor_t *cursor) in tlv_length() argument 93 if (tlv_tag(cursor) == TLV_TAG_END) in tlv_length() 96 dword = cursor->current[1]; in tlv_length() 104 __in tlv_cursor_t *cursor) in tlv_value() argument 106 if (tlv_tag(cursor) == TLV_TAG_END) in tlv_value() [all …]
|
H A D | ef10_image.c | 71 __inout efx_asn1_cursor_t *cursor, in efx_asn1_parse_header_match_tag() argument 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() 82 if (cursor->tag != tag) { in efx_asn1_parse_header_match_tag() 88 if ((cursor->tag & 0x1F) == 0x1F) { in efx_asn1_parse_header_match_tag() 94 if ((cursor->buffer[1] & 0x80) == 0) { in efx_asn1_parse_header_match_tag() 96 cursor->hdr_size = 2; in efx_asn1_parse_header_match_tag() 97 cursor->val_size = cursor->buffer[1]; in efx_asn1_parse_header_match_tag() 100 uint32_t nbytes = cursor->buffer[1] & 0x7F; in efx_asn1_parse_header_match_tag() 108 if (2 + nbytes > cursor->length) { in efx_asn1_parse_header_match_tag() [all …]
|
/freebsd/contrib/libedit/ |
H A D | emacs.c | 54 * Delete character under cursor or list completions if at end of line 62 if (el->el_line.cursor == el->el_line.lastchar) { in em_delete_or_list() 64 if (el->el_line.cursor == el->el_line.buffer) { in em_delete_or_list() 81 if (el->el_line.cursor > el->el_line.lastchar) in em_delete_or_list() 82 el->el_line.cursor = el->el_line.lastchar; in em_delete_or_list() 90 * Cut from cursor to end of current word 99 if (el->el_line.cursor == el->el_line.lastchar) in em_delete_next_word() 102 cp = c__next_word(el->el_line.cursor, el->el_line.lastchar, in em_delete_next_word() 105 for (p = el->el_line.cursor, kp = el->el_chared.c_kill.buf; p < cp; p++) in em_delete_next_word() 110 c_delafter(el, (int)(cp - el->el_line.cursor)); /* delete after dot */ in em_delete_next_word() [all …]
|
H A D | editline.7 | 337 Delete the character at the cursor position. 339 In emacs mode, it is an error if the cursor is at the end of the 344 Delete the character to the left of the cursor position. 346 It is an error if the cursor is at the beginning of the edit buffer. 349 string from that position to the cursor, and save it to the cut 352 It is an error if the cursor is at the beginning of the edit buffer. 366 In insert mode, insert the input character left of the cursor 368 In replace mode, overwrite the character at the cursor and move the 369 cursor to the right by one character position. 374 Delete the string from the cursor position to the end of the line [all …]
|
H A D | vi.c | 83 el->el_line.cursor = el->el_line.buffer; in cv_action() 90 el->el_chared.c_vcmd.pos = el->el_line.cursor; in cv_action() 96 * Paste previous deletion before or after the cursor 113 if (!c && el->el_line.cursor < el->el_line.lastchar) in cv_paste() 114 el->el_line.cursor++; in cv_paste() 117 if (el->el_line.cursor + len > el->el_line.lastchar) in cv_paste() 119 (void) memcpy(el->el_line.cursor, k->buf, len * in cv_paste() 120 sizeof(*el->el_line.cursor)); in cv_paste() 127 * Vi paste previous deletion to the right of the cursor 140 * Vi paste previous deletion to the left of the cursor [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DIExpressionOptimizer.cpp | 96 static void consumeOneOperator(DIExpressionCursor &Cursor, uint64_t &Loc, in consumeOneOperator() argument 98 Cursor.consume(1); in consumeOneOperator() 102 /// Reset the Cursor to the beginning of the WorkingOps. 103 void startFromBeginning(uint64_t &Loc, DIExpressionCursor &Cursor, in startFromBeginning() argument 105 Cursor.assignNewExpr(WorkingOps); in startFromBeginning() 114 DIExpressionCursor Cursor(WorkingOps); in canonicalizeDwarfOperations() local 118 auto Op = Cursor.peek(); in canonicalizeDwarfOperations() 127 consumeOneOperator(Cursor, Loc, *Cursor.peek()); in canonicalizeDwarfOperations() 134 consumeOneOperator(Cursor, Loc, *Cursor.peek()); in canonicalizeDwarfOperations() 138 consumeOneOperator(Cursor, Loc, *Cursor.peek()); in canonicalizeDwarfOperations() [all …]
|
/freebsd/contrib/tcsh/ |
H A D | ed.chared.c | 41 # echo hello\<cursor> 45 # echo hello\ world<cursor> 53 # echo "hello<cursor> 169 if (Cursor < LastChar) { /* if I must move chars */ in c_insert() 170 for (cp = LastChar; cp >= Cursor; cp--) in c_insert() 172 if (Mark && Mark > Cursor) in c_insert() 183 if (num > LastChar - Cursor) in c_delafter() 184 num = (int) (LastChar - Cursor); /* bounds check */ in c_delafter() 191 UndoPtr = Cursor; in c_delafter() 192 for (cp = Cursor; cp <= LastChar; cp++) { in c_delafter() [all …]
|
/freebsd/contrib/tcsh/nls/ukrainian/ |
H A D | set3 | 4 2 Delete the character behind cursor 5 3 Cut from beginning of current word to cursor - saved in cut buffer 6 4 Cut from beginning of line to cursor - save in cut buffer 9 7 Capitalize the characters from cursor to end of current word 10 8 Vi change case of character under cursor and advance one character 17 15 Copy current word to cursor 18 16 Copy area between mark and cursor to cut buffer 20 18 Delete character under cursor 21 19 Delete character under cursor or signal end of file on an empty line 22 20 Delete character under cursor or list completions if at end of line [all …]
|
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 28 26 cursor to status line 29 27 cursor up one 34 32 cursor down multiple [all …]
|
/freebsd/contrib/tcsh/nls/russian/ |
H A D | set3 | 4 2 Delete the character behind cursor 5 3 Cut from beginning of current word to cursor - saved in cut buffer 6 4 Cut from beginning of line to cursor - save in cut buffer 9 7 Capitalize the characters from cursor to end of current word 10 8 Vi change case of character under cursor and advance one character 17 15 Copy current word to cursor 18 16 Copy area between mark and cursor to cut buffer 20 18 Delete character under cursor 21 19 Delete character under cursor or signal end of file on an empty line 22 20 Delete character under cursor or list completions if at end of line [all …]
|
/freebsd/contrib/tcsh/nls/C/ |
H A D | set3 | 4 2 Delete the character behind cursor 5 3 Cut from beginning of current word to cursor - saved in cut buffer 6 4 Cut from beginning of line to cursor - save in cut buffer 9 7 Capitalize the characters from cursor to end of current word 10 8 Vi change case of character under cursor and advance one character 17 15 Copy current word to cursor 18 16 Copy area between mark and cursor to cut buffer 20 18 Delete character under cursor 21 19 Delete character under cursor or signal end of file on an empty line 22 20 Delete character under cursor or list completions if at end of line [all …]
|
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 28 26 cursor to status line 29 27 cursor up one 34 32 cursor down multiple [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
H A D | MILexer.cpp | 30 class Cursor { class 35 Cursor(std::nullopt_t) {} in Cursor() function in __anon2f5552ae0111::Cursor 37 explicit Cursor(StringRef Str) { in Cursor() function in __anon2f5552ae0111::Cursor 50 StringRef upto(Cursor C) const { in upto() 84 /// Skip the leading whitespace characters and return the updated cursor. 85 static Cursor skipWhitespace(Cursor C) { in skipWhitespace() 93 /// Skip a line comment and return the updated cursor. 94 static Cursor skipComment(Cursor C) { in skipComment() 104 static Cursor skipMachineOperandComment(Cursor C) { in skipMachineOperandComment() 128 Cursor C = Cursor(Value.substr(1, Value.size() - 2)); in unescapeQuotedString() [all …]
|
/freebsd/share/man/man4/ |
H A D | screen.4 | 51 This holds the display, and enables the cursor 62 -- E7 Save cursor position sc 64 -- E8 Restore saved cursor position rc 68 -- EM move cursor up 1 line, -- 71 CUU E[nA move cursor up n lines up/UP (ku) 73 CUD E[nB move cursor down n lines do/DO (kd) 75 CUF E[nC move cursor right n characters nd/RI (kr) 77 CUB E[nD move cursor left n characters --/LE (kl) 79 HPA E[n` move cursor to character position n ch 81 HPR E[na move cursor right n characters -- [all …]
|
/freebsd/sys/contrib/openzfs/module/os/linux/spl/ |
H A D | spl-procfs-list.c | 39 * This implementation avoids this penalty by maintaining a separate cursor into 55 procfs_list_t *procfs_list; /* List into which this cursor points */ 63 procfs_list_cursor_t *cursor = f->private; in procfs_list_seq_show() local 64 procfs_list_t *procfs_list = cursor->procfs_list; in procfs_list_seq_show() 77 procfs_list_next_node(procfs_list_cursor_t *cursor, loff_t *pos) in procfs_list_next_node() argument 80 procfs_list_t *procfs_list = cursor->procfs_list; in procfs_list_next_node() 82 if (cursor->cached_node == SEQ_START_TOKEN) in procfs_list_next_node() 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() [all …]
|
/freebsd/contrib/tcsh/nls/spanish/ |
H A D | set3 | 4 2 Borrar el carácter detrás del cursor 5 3 Cortar desde el comienzo de la palabra hasta el cursor - se guarda en el buffer 6 4 Cortar desde el comienzo de la línea hasta el cursor - se guarda en el buffer 9 7 Convertir en mayúsculas los caracteres desde el cursor hasta el final de la palabra 10 8 Vi: cambiar a mayúsculas o minúsculas el carácter bajo el cursor y avanza una posición 17 15 Copia la palabra hasta el cursor 18 16 Copia el área entre la marca y el cursor al buffer 20 18 Borra el carácter bajo el cursor 21 19 Borra el carácter bajo el cursor o señala el fin de archivo en un archivo vacío 22 20 Borra el carácter bajo el cursor o lista posibles finales si está al final de una línea [all …]
|
/freebsd/contrib/tcsh/nls/german/ |
H A D | set3 | 4 2 Lösche Zeichen hinter Cursor 5 3 Lösche vom Anfang des aktuellen Worts bis zum Cursor - in Cut-Puffer 6 4 Lösche vom Anfang der Zeile bis zum Cursor - in Cut-Puffer 9 7 Wandele vom Cursor bis zum Ende des aktuellen Worts in Großbuchstaben um 10 8 Vi: Ändere Groß/Kleinschreibung des Zeichen unter dem Cursor und bewege Cursor eins nach vorn 17 15 Kopiere aktuelles Wort zum Cursor 18 16 Kopiere Area zwischen Marke und Cursor in Cut-Puffer 20 18 Lösche Zeichen unter Cursor 21 19 Lösche Zeichen unter Cursor oder gib EOF-Signal am Ende der Zeile 22 20 Lösche Zeichen unter Cursor oder zeige Vervollständigungen am Ende der Zeile an [all …]
|
H A D | set4 | 7 5 Cursor zu horizontaler Position 14 12 Cursor aus Statuszeile 15 13 Cursor in Ursprungsposition 19 17 Cursor nach unten 20 18 Cursor nach links 21 19 Cursor nach rechts 22 20 Cursor nach oben 28 26 Cursor in Statuszeile 29 27 Cursor eins hoch 34 32 Cursor mehrere Zeichen nach unten [all …]
|
/freebsd/usr.bin/dtc/ |
H A D | input_buffer.hh | 75 * keeps a separate size, pointer, and cursor so that we can move 79 int cursor; member in dtc::input_buffer 85 cursor(c) {} in input_buffer() 110 bool finished() { return cursor >= size; } in finished() 119 input_buffer() : buffer(0), size(0), cursor(0) {} in input_buffer() 123 input_buffer(const char* b, int s) : buffer(b), size(s), cursor(0){} in input_buffer() 138 * the cursor is out of range. 142 if (cursor >= size) { return '\0'; } in operator *() 143 if (cursor < 0) { return '\0'; } in operator *() 144 return buffer[cursor]; in operator *() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | ELFAttributeParser.cpp | 25 uint64_t value = de.getULEB128(cursor); in parseStringAttribute() 39 uint64_t value = de.getULEB128(cursor); in integerAttribute() 55 StringRef desc = de.getCStrRef(cursor); in stringAttribute() 87 uint64_t value = de.getULEB128(cursor); in parseIndexList() 88 if (!cursor || !value) in parseIndexList() 96 uint64_t end = cursor.tell() + length; in parseAttributeList() 97 while ((pos = cursor.tell()) < end) { in parseAttributeList() 98 uint64_t tag = de.getULEB128(cursor); in parseAttributeList() 123 uint64_t end = cursor.tell() - sizeof(length) + length; in parseSubsection() 124 StringRef vendorName = de.getCStrRef(cursor); in parseSubsection() [all …]
|
/freebsd/crypto/heimdal/lib/krb5/ |
H A D | cache.c | 67 krb5_cc_cursor cursor; 79 ret = krb5_cc_start_seq_get(context, id, &cursor); 83 while((ret = krb5_cc_next_cred(context, id, &cursor, &creds)) == 0){ 91 ret = krb5_cc_end_seq_get(context, id, &cursor); 716 krb5_cc_cursor cursor; in krb5_cc_retrieve_cred() local 723 ret = krb5_cc_start_seq_get(context, id, &cursor); in krb5_cc_retrieve_cred() 726 while((ret = krb5_cc_next_cred(context, id, &cursor, creds)) == 0){ in krb5_cc_retrieve_cred() 733 krb5_cc_end_seq_get(context, id, &cursor); in krb5_cc_retrieve_cred() 755 * Start iterating over `id', `cursor' is initialized to the 756 * beginning. Caller must free the cursor with krb5_cc_end_seq_get(). [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | TraceCursor.h | 31 /// trace plug-in to decide whether to leave the old cursor unaffected or not. 33 /// Cursor items: 39 /// cursor can point at them. 42 /// The cursor can also point at events in the trace, which aren't errors 50 /// By default, the cursor points at the most recent item in the trace and is 56 /// TraceCursorSP cursor = trace.GetTrace(thread); 58 /// for (; cursor->HasValue(); cursor->Next()) { 59 /// TraceItemKind kind = cursor->GetItemKind(); 60 /// switch (cursor->GetItemKind()): 62 /// cout << "error found: " << cursor->GetError() << endl; [all …]
|
/freebsd/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 28 26 cursor to status line 29 27 cursor up one 34 32 cursor down multiple [all …]
|