/kernel/linux/linux-5.10/drivers/gpu/drm/ast/ |
H A D | ast_cursor.c | 40 for (i = 0; i < ARRAY_SIZE(ast->cursor.gbo); ++i) { in ast_cursor_fini() 41 gbo = ast->cursor.gbo[i]; in ast_cursor_fini() 42 drm_gem_vram_vunmap(gbo, ast->cursor.vaddr[i]); in ast_cursor_fini() 56 * Allocate cursor BOs and pins them at the end of VRAM. 68 for (i = 0; i < ARRAY_SIZE(ast->cursor.gbo); ++i) { in ast_cursor_init() 88 ast->cursor.gbo[i] = gbo; in ast_cursor_init() 89 ast->cursor.vaddr[i] = vaddr; in ast_cursor_init() 97 gbo = ast->cursor.gbo[i]; in ast_cursor_init() 98 drm_gem_vram_vunmap(gbo, ast->cursor.vaddr[i]); in ast_cursor_init() 192 dst = ast->cursor in ast_cursor_blit() [all...] |
/kernel/linux/linux-6.6/drivers/video/fbdev/ |
H A D | pmag-aa-fb.c | 24 * Hardware cursor support. 54 * Bt431 cursor generator offset (rel. to TC slot base address). 104 static int aafb_cursor(struct fb_info *info, struct fb_cursor *cursor) in aafb_cursor() argument 108 if (cursor->image.height > BT431_CURSOR_SIZE || in aafb_cursor() 109 cursor->image.width > BT431_CURSOR_SIZE) { in aafb_cursor() 114 if (!cursor->enable) in aafb_cursor() 117 if (cursor->set & FB_CUR_SETPOS) in aafb_cursor() 119 cursor->image.dx, cursor->image.dy); in aafb_cursor() 120 if (cursor in aafb_cursor() [all...] |
/kernel/linux/linux-6.6/net/rxrpc/ |
H A D | peer_event.c | 233 u8 cursor) in rxrpc_peer_keepalive_dispatch() 258 cursor, peer->debug_id, slot, &peer->srx.transport); in rxrpc_peer_keepalive_dispatch() 270 slot += cursor; in rxrpc_peer_keepalive_dispatch() 294 u8 cursor, stop; in rxrpc_peer_keepalive_worker() local 299 cursor = rxnet->peer_keepalive_cursor; in rxrpc_peer_keepalive_worker() 300 _enter("%lld,%u", base - now, cursor); in rxrpc_peer_keepalive_worker() 308 * Everything in the bucket at the cursor is processed this in rxrpc_peer_keepalive_worker() 309 * second; the bucket at cursor + 1 goes at now + 1s and so in rxrpc_peer_keepalive_worker() 315 stop = cursor + ARRAY_SIZE(rxnet->peer_keepalive); in rxrpc_peer_keepalive_worker() 316 while (base <= now && (s8)(cursor in rxrpc_peer_keepalive_worker() 230 rxrpc_peer_keepalive_dispatch(struct rxrpc_net *rxnet, struct list_head *collector, time64_t base, u8 cursor) rxrpc_peer_keepalive_dispatch() argument [all...] |
/third_party/libunwind/libunwind/src/x86/ |
H A D | Gos-linux.c | 32 unw_is_signal_frame (unw_cursor_t *cursor) in unw_is_signal_frame() argument 34 struct cursor *c = (struct cursor *) cursor; in unw_is_signal_frame() 73 x86_handle_signal_frame (unw_cursor_t *cursor) in x86_handle_signal_frame() argument 75 struct cursor *c = (struct cursor *) cursor; in x86_handle_signal_frame() 143 x86_get_scratch_loc (struct cursor *c, unw_regnum_t reg) in x86_get_scratch_loc() 285 x86_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, voi argument 317 x86_sigreturn(unw_cursor_t *cursor) x86_sigreturn() argument [all...] |
/kernel/linux/linux-5.10/drivers/video/fbdev/core/ |
H A D | softcursor.c | 4 * Generic software cursor for frame buffer devices 22 int soft_cursor(struct fb_info *info, struct fb_cursor *cursor) in soft_cursor() argument 34 s_pitch = (cursor->image.width + 7) >> 3; in soft_cursor() 35 dsize = s_pitch * cursor->image.height; in soft_cursor() 50 *image = cursor->image; in soft_cursor() 57 if (cursor->enable) { in soft_cursor() 58 switch (cursor->rop) { in soft_cursor() 61 src[i] = image->data[i] ^ cursor->mask[i]; in soft_cursor() 66 src[i] = image->data[i] & cursor->mask[i]; in soft_cursor()
|
/kernel/linux/linux-6.6/drivers/video/fbdev/core/ |
H A D | softcursor.c | 4 * Generic software cursor for frame buffer devices 22 int soft_cursor(struct fb_info *info, struct fb_cursor *cursor) in soft_cursor() argument 34 s_pitch = (cursor->image.width + 7) >> 3; in soft_cursor() 35 dsize = s_pitch * cursor->image.height; in soft_cursor() 50 *image = cursor->image; in soft_cursor() 57 if (cursor->enable) { in soft_cursor() 58 switch (cursor->rop) { in soft_cursor() 61 src[i] = image->data[i] ^ cursor->mask[i]; in soft_cursor() 66 src[i] = image->data[i] & cursor->mask[i]; in soft_cursor()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | uni2name.cpp | 91 int32_t cursor = offsets.start; in handleTransliterate() local 98 while (cursor < limit) { in handleTransliterate() 99 UChar32 c = text.char32At(cursor); in handleTransliterate() 105 text.handleReplaceBetween(cursor, cursor+clen, str); in handleTransliterate() 107 cursor += len; // advance cursor and adjust for new text in handleTransliterate() 110 cursor += clen; in handleTransliterate() 116 offsets.start = cursor; in handleTransliterate()
|
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
H A D | UnicodeNameTransliterator.java | 48 int cursor = offsets.start; in handleTransliterate() 56 while (cursor < limit) { in handleTransliterate() 57 int c = text.char32At(cursor); in handleTransliterate() 64 text.replace(cursor, cursor+clen, str.toString()); in handleTransliterate() 66 cursor += len; // advance cursor by 1 and adjust for new text in handleTransliterate() 69 ++cursor; in handleTransliterate() 75 offsets.start = cursor; in handleTransliterate()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | UnicodeNameTransliterator.java | 49 int cursor = offsets.start; in handleTransliterate() 57 while (cursor < limit) { in handleTransliterate() 58 int c = text.char32At(cursor); in handleTransliterate() 65 text.replace(cursor, cursor+clen, str.toString()); in handleTransliterate() 67 cursor += len; // advance cursor by 1 and adjust for new text in handleTransliterate() 70 ++cursor; in handleTransliterate() 76 offsets.start = cursor; in handleTransliterate()
|
/third_party/libunwind/libunwind/src/tilegx/ |
H A D | Gis_signal_frame.c | 44 unw_is_signal_frame (unw_cursor_t *cursor) in unw_is_signal_frame() argument 46 struct cursor *c = (struct cursor*) cursor; in unw_is_signal_frame() 79 tilegx_handle_signal_frame (unw_cursor_t *cursor) in tilegx_handle_signal_frame() argument 82 struct cursor *c = (struct cursor *) cursor; in tilegx_handle_signal_frame() 99 /* Update the dwarf cursor. in tilegx_handle_signal_frame()
|
/third_party/libunwind/libunwind/src/ia64/ |
H A D | Ginit_local.c | 32 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc) in unw_init_local() argument 40 set_as_arg (struct cursor *c, unw_context_t *uc) in set_as_arg() 51 get_initial_stack_pointers (struct cursor *c, unw_context_t *uc, in get_initial_stack_pointers() 80 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc) in unw_init_local() argument 82 struct cursor *c = (struct cursor *) cursor; in unw_init_local() 89 Debug (1, "(cursor=%p)\n", c); in unw_init_local() 105 ret = unw_step (cursor); in unw_init_local()
|
/third_party/libunwind/libunwind/tests/ |
H A D | Gtest-exc.c | 56 unw_cursor_t cursor; in raise_exception() local 63 if (unw_init_local (&cursor, &uc) < 0) in raise_exception() 72 unw_get_reg (&cursor, UNW_REG_IP, &ip); in raise_exception() 73 unw_get_reg (&cursor, UNW_REG_SP, &sp); in raise_exception() 79 if (unw_step (&cursor) < 0) in raise_exception() 86 unw_get_reg (&cursor, UNW_REG_IP, &ip); in raise_exception() 87 unw_get_reg (&cursor, UNW_REG_SP, &sp); in raise_exception() 90 unw_resume (&cursor); /* transfer control to exception handler */ in raise_exception()
|
H A D | test-init-remote.c | 52 unw_cursor_t cursor; in do_backtrace() local 57 if (unw_init_remote (&cursor, unw_local_addr_space, &uc) < 0) in do_backtrace() 62 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace() 63 unw_get_reg (&cursor, UNW_REG_SP, &sp); in do_backtrace() 65 if (unw_get_proc_name (&cursor, name, sizeof (name), &off) == 0) in do_backtrace() 75 ret = unw_step (&cursor); in do_backtrace() 78 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | uni2name.cpp | 91 int32_t cursor = offsets.start; in handleTransliterate() local 98 while (cursor < limit) { in handleTransliterate() 99 UChar32 c = text.char32At(cursor); in handleTransliterate() 105 text.handleReplaceBetween(cursor, cursor+clen, str); in handleTransliterate() 107 cursor += len; // advance cursor and adjust for new text in handleTransliterate() 110 cursor += clen; in handleTransliterate() 116 offsets.start = cursor; in handleTransliterate()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | uni2name.cpp | 91 int32_t cursor = offsets.start; in handleTransliterate() local 98 while (cursor < limit) { in handleTransliterate() 99 UChar32 c = text.char32At(cursor); in handleTransliterate() 105 text.handleReplaceBetween(cursor, cursor+clen, str); in handleTransliterate() 107 cursor += len; // advance cursor and adjust for new text in handleTransliterate() 110 cursor += clen; in handleTransliterate() 116 offsets.start = cursor; in handleTransliterate()
|
/third_party/rust/crates/syn/src/ |
H A D | lookahead.rs | 64 cursor: Cursor<'a>, 68 pub(crate) fn new(scope: Span, cursor: Cursor) -> Lookahead1 { 71 cursor, 81 if peek(lookahead.cursor) { in peek_impl() 116 if self.cursor.eof() { in error() 119 Error::new(self.cursor.span(), "unexpected token") in error() 124 error::new_at(self.scope, self.cursor, message) in error() 128 error::new_at(self.scope, self.cursor, message) in error() 133 error::new_at(self.scope, self.cursor, message) in error() 165 pub(crate) fn is_delimiter(cursor [all...] |
H A D | token.rs | 132 fn peek(cursor: Cursor) -> bool; in peek() 159 fn peek(cursor: Cursor) -> bool; in display() 168 fn peek_impl(cursor: Cursor, peek: fn(ParseStream) -> bool) -> bool { in peek_impl() 175 let buffer = crate::parse::new_parse_buffer(scope, cursor, unexpected); in peek_impl() 183 fn peek(cursor: Cursor) -> bool { in peek() 187 peek_impl(cursor, peek) in peek() 215 fn peek(cursor: Cursor) -> bool { in peek() 216 cursor.$get().is_some() in peek() 238 fn peek(cursor: Cursor) -> bool { in peek() 239 <Self as CustomToken>::peek(cursor) in peek() 1053 let mut cursor = *cursor; punct_helper() variables [all...] |
/third_party/libunwind/libunwind/src/ppc32/ |
H A D | Gresume.c | 44 ppc32_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) in ppc32_local_resume() argument 53 cursor C and establishing them as the current machine state. */ 56 establish_machine_state (struct cursor *c) in establish_machine_state() 63 unw_resume (unw_cursor_t *cursor) in unw_resume() argument 65 struct cursor *c = (struct cursor *) cursor; in unw_resume() 68 Debug (1, "(cursor=%p)\n", c); in unw_resume()
|
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/ |
H A D | decoder_test.js | 69 for (var cursor = epsilon; cursor < upperLimit; cursor *= 1.1) { 70 writeValue.call(encoder, filter(cursor)); 81 for (var cursor = epsilon; cursor < upperLimit; cursor *= 1.1) { 82 if (filter(cursor) != readValue.call(decoder)) throw 'fail!'; 115 for (var cursor = lowerLimit; cursor < [all...] |
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/ |
H A D | decoder_test.js | 69 for (var cursor = epsilon; cursor < upperLimit; cursor *= 1.1) { 70 writeValue.call(encoder, filter(cursor)); 81 for (var cursor = epsilon; cursor < upperLimit; cursor *= 1.1) { 82 if (filter(cursor) != readValue.call(decoder)) throw 'fail!'; 115 for (var cursor = lowerLimit; cursor < [all...] |
/third_party/libunwind/libunwind/src/arm/ |
H A D | Gresume.c | 33 arm_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) in arm_local_resume() argument 36 struct cursor *c = (struct cursor *) cursor; in arm_local_resume() 109 establish_machine_state (struct cursor *c) in establish_machine_state() 117 Debug (8, "copying out cursor state\n"); in establish_machine_state() 136 unw_resume (unw_cursor_t *cursor) in unw_resume() argument 138 struct cursor *c = (struct cursor *) cursor; in unw_resume() [all...] |
H A D | Gos-freebsd.c | 38 arm_handle_signal_frame (unw_cursor_t *cursor) in arm_handle_signal_frame() argument 40 struct cursor *c = (struct cursor *) cursor; in arm_handle_signal_frame() 47 fmt = unw_is_signal_frame(cursor); in arm_handle_signal_frame() 73 /* Update the dwarf cursor. in arm_handle_signal_frame() 95 unw_is_signal_frame (unw_cursor_t *cursor) in unw_is_signal_frame() argument 97 struct cursor *c = (struct cursor *) cursor; in unw_is_signal_frame() [all...] |
/third_party/libunwind/libunwind/src/sh/ |
H A D | Gresume.c | 33 sh_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) in sh_local_resume() argument 36 struct cursor *c = (struct cursor *) cursor; in sh_local_resume() 120 establish_machine_state (struct cursor *c) in establish_machine_state() 128 Debug (8, "copying out cursor state\n"); in establish_machine_state() 147 unw_resume (unw_cursor_t *cursor) in unw_resume() argument 149 struct cursor *c = (struct cursor *) cursor; in unw_resume() [all...] |
/third_party/libunwind/libunwind/src/hppa/ |
H A D | Gresume.c | 54 hppa_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) in hppa_local_resume() argument 57 struct cursor *c = (struct cursor *) cursor; in hppa_local_resume() 87 cursor C and establishing them as the current machine state. */ 90 establish_machine_state (struct cursor *c) in establish_machine_state() 105 Debug (8, "copying out cursor state\n"); in establish_machine_state() 125 unw_resume (unw_cursor_t *cursor) in unw_resume() argument 127 struct cursor *c = (struct cursor *) curso in unw_resume() [all...] |
/kernel/linux/linux-5.10/lib/ |
H A D | assoc_array.c | 27 const struct assoc_array_ptr *cursor, *ptr, *parent; in assoc_array_subtree_iterate() local 31 cursor = root; in assoc_array_subtree_iterate() 34 if (assoc_array_ptr_is_shortcut(cursor)) { in assoc_array_subtree_iterate() 36 shortcut = assoc_array_ptr_to_shortcut(cursor); in assoc_array_subtree_iterate() 37 cursor = READ_ONCE(shortcut->next_node); /* Address dependency. */ in assoc_array_subtree_iterate() 40 node = assoc_array_ptr_to_node(cursor); in assoc_array_subtree_iterate() 79 node = assoc_array_ptr_to_node(cursor); in assoc_array_subtree_iterate() 83 cursor = ptr; in assoc_array_subtree_iterate() 97 cursor = parent; in assoc_array_subtree_iterate() 105 cursor in assoc_array_subtree_iterate() 177 struct assoc_array_ptr *cursor, *ptr; assoc_array_walk() local 348 struct assoc_array_ptr *cursor, *parent = NULL; assoc_array_destroy_subtree() local 1462 struct assoc_array_ptr *cursor, *ptr; assoc_array_gc() local [all...] |