Home
last modified time | relevance | path

Searched refs:cursor (Results 226 - 250 of 915) sorted by relevance

12345678910>>...37

/foundation/communication/ipc/ipc/native/test/fuzztest/core/bufferobject_fuzzer/
H A Dbufferobject_fuzzer.cpp92 ssize_t cursor = *(reinterpret_cast<const ssize_t*>(data)); in SetReceiveBufferWriteCursorTest() local
94 object.SetReceiveBufferWriteCursor(cursor); in SetReceiveBufferWriteCursorTest()
117 ssize_t cursor = *(reinterpret_cast<const ssize_t*>(data)); in SetReceiveBufferReadCursorTest() local
118 object.SetReceiveBufferReadCursor(cursor); in SetReceiveBufferReadCursorTest()
141 ssize_t cursor = *(reinterpret_cast<const ssize_t*>(data)); in SetSendBufferWriteCursorTest() local
142 object.SetSendBufferWriteCursor(cursor); in SetSendBufferWriteCursorTest()
165 ssize_t cursor = *(reinterpret_cast<const ssize_t*>(data)); in SetSendBufferReadCursorTest() local
166 object.SetSendBufferReadCursor(cursor); in SetSendBufferReadCursorTest()
/third_party/rust/crates/bindgen/bindgen/ir/
H A Denum_ty.rs92 definition.visit(|cursor| { in from_ty()
93 if cursor.kind() == CXCursor_EnumConstantDecl { in from_ty()
95 cursor.enum_val_boolean().map(EnumVariantValue::Boolean) in from_ty()
97 cursor.enum_val_signed().map(EnumVariantValue::Signed) in from_ty()
99 cursor.enum_val_unsigned().map(EnumVariantValue::Unsigned) in from_ty()
102 let name = cursor.spelling(); in from_ty()
103 let annotations = Annotations::new(&cursor); in from_ty()
135 let comment = cursor.raw_comment(); in from_ty()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_builder.c57 b.cursor = nir_after_cf_list(&b.impl->body); in nir_builder_init_simple_shader()
302 nir_instr_insert(build->cursor, instr); in nir_builder_instr_insert()
307 /* Move the cursor forward. */ in nir_builder_instr_insert()
308 build->cursor = nir_after_instr(instr); in nir_builder_instr_insert()
314 nir_cf_node_insert(build->cursor, cf); in nir_builder_cf_insert()
320 nir_block *block = nir_cursor_current_block(build->cursor); in nir_builder_is_inside_cf()
334 build->cursor = nir_before_cf_list(&nif->then_list); in nir_push_if_src()
350 nir_block *block = nir_cursor_current_block(build->cursor); in nir_push_else()
353 build->cursor = nir_before_cf_list(&nif->else_list); in nir_push_else()
363 nir_block *block = nir_cursor_current_block(build->cursor); in nir_pop_if()
[all...]
/third_party/mesa3d/src/asahi/compiler/
H A Dagx_compiler.h635 * Get a cursor inserting at the logical end of the block. In particular, this
652 /* IR builder in terms of cursor infrastructure */
656 agx_cursor cursor; member
660 agx_init_builder(agx_context *ctx, agx_cursor cursor) in agx_init_builder() argument
664 .cursor = cursor in agx_init_builder()
668 /* Insert an instruction at the cursor and move the cursor */
671 agx_builder_insert(agx_cursor *cursor, agx_instr *I) in agx_builder_insert() argument
673 switch (cursor in agx_builder_insert()
[all...]
/third_party/skia/third_party/externals/freetype/src/gzip/
H A Dftgzip.c193 FT_Byte* cursor; member
297 zip->cursor = zip->limit; in ft_gzip_file_init()
371 zip->cursor = zip->limit; in ft_gzip_file_reset()
393 zip->limit = zip->cursor; in ft_gzip_file_fill_input()
405 zip->limit = zip->cursor; in ft_gzip_file_fill_input()
427 zip->cursor = zip->buffer; in ft_gzip_file_fill_output()
428 zstream->next_out = zip->cursor; in ft_gzip_file_fill_output()
448 if ( zip->limit == zip->cursor ) in ft_gzip_file_fill_output()
454 zip->limit = zip->cursor; in ft_gzip_file_fill_output()
474 FT_ULong delta = (FT_ULong)( zip->limit - zip->cursor ); in ft_gzip_file_skip_output()
[all...]
/third_party/skia/third_party/externals/freetype/src/type1/
H A Dt1parse.c123 if ( ft_memcmp( stream->cursor, header_string, header_length ) != 0 ) in check_type1_format()
231 parser->root.cursor = parser->base_dict; in FT_LOCAL_DEF()
232 parser->root.limit = parser->root.cursor + parser->base_len; in FT_LOCAL_DEF()
366 parser->root.cursor = parser->base_dict; in FT_LOCAL_DEF()
370 cur = parser->root.cursor; in FT_LOCAL_DEF()
389 cur = parser->root.cursor; in FT_LOCAL_DEF()
416 cur = parser->root.cursor; in FT_LOCAL_DEF()
481 parser->root.cursor = cur; in FT_LOCAL_DEF()
515 parser->root.cursor = parser->private_dict; in FT_LOCAL_DEF()
516 parser->root.limit = parser->root.cursor in FT_LOCAL_DEF()
[all...]
/third_party/skia/third_party/externals/freetype/src/psaux/
H A Dpsobjs.c90 table->cursor = 0; in FT_LOCAL_DEF()
188 if ( table->cursor + length > table->capacity ) in FT_LOCAL_DEF()
199 while ( new_size < table->cursor + length ) in FT_LOCAL_DEF()
216 table->elements[idx] = FT_OFFSET( table->block, table->cursor ); in FT_LOCAL_DEF()
218 FT_MEM_COPY( table->block + table->cursor, object, length ); in FT_LOCAL_DEF()
220 table->cursor += length; in FT_LOCAL_DEF()
232 * cursor).
250 /* should never fail, because rec.cursor <= rec.size */ in ps_table_done()
254 if ( FT_QALLOC( table->block, table->cursor ) ) in ps_table_done()
256 FT_MEM_COPY( table->block, old_base, table->cursor ); in ps_table_done()
[all...]
/third_party/libunwind/libunwind/src/unwind/
H A DRaiseException.c49 if ((ret = unw_step (&context.cursor)) <= 0) in _Unwind_RaiseException()
60 if (unw_get_proc_info (&context.cursor, &pi) < 0) in _Unwind_RaiseException()
87 if (unw_get_reg (&context.cursor, UNW_REG_IP, &ip) < 0) in _Unwind_RaiseException()
94 /* Reset the cursor to the first frame: */ in _Unwind_RaiseException()
95 if (unw_init_local (&context.cursor, &uc) < 0) in _Unwind_RaiseException()
/third_party/libunwind/libunwind/src/x86_64/
H A Dunwind_i.h80 extern int x86_64_local_resume (unw_addr_space_t as, unw_cursor_t *cursor,
85 extern dwarf_loc_t x86_64_scratch_loc (struct cursor *c, unw_regnum_t reg);
89 extern NORETURN void x86_64_sigreturn (unw_cursor_t *cursor);
91 extern int x86_64_handle_signal_frame(unw_cursor_t *cursor);
H A DGget_save_loc.c31 unw_get_save_loc (unw_cursor_t *cursor, int reg, unw_save_loc_t *sloc) in unw_get_save_loc() argument
33 struct cursor *c = (struct cursor *) cursor; in unw_get_save_loc()
H A DGtrace.c213 unw_cursor_t *cursor, in trace_init_addr()
219 struct cursor *c = (struct cursor *) cursor; in trace_init_addr()
232 /* Reinitialise cursor to this instruction - but undo next/prev RIP in trace_init_addr()
249 && likely((ret = unw_step (cursor)) >= 0)) in trace_init_addr()
274 trace_lookup (unw_cursor_t *cursor, in trace_lookup() argument
331 return trace_init_addr (frame, cursor, cfa, rip, rbp, rsp); in trace_lookup()
398 tdep_trace (unw_cursor_t *cursor, void **buffer, int *size) in tdep_trace() argument
400 struct cursor * in tdep_trace()
212 trace_init_addr(unw_tdep_frame_t *f, unw_cursor_t *cursor, unw_word_t cfa, unw_word_t rip, unw_word_t rbp, unw_word_t rsp) trace_init_addr() argument
[all...]
/third_party/libunwind/libunwind/src/hppa/
H A DGis_signal_frame.c29 unw_is_signal_frame (unw_cursor_t *cursor) in unw_is_signal_frame() argument
32 struct cursor *c = (struct cursor *) cursor; in unw_is_signal_frame()
68 Debug (1, "(cursor=%p, ip=0x%08lx) -> %d\n", c, (unsigned) ip, ret); in unw_is_signal_frame()
/third_party/python/Modules/_sqlite/clinic/
H A Drow.c.h6 pysqlite_row_new_impl(PyTypeObject *type, pysqlite_Cursor *cursor,
13 pysqlite_Cursor *cursor; in pysqlite_row_new() local
28 cursor = (pysqlite_Cursor *)PyTuple_GET_ITEM(args, 0); in pysqlite_row_new()
34 return_value = pysqlite_row_new_impl(type, cursor, data); in pysqlite_row_new()
/third_party/libdrm/
H A Dxf86drmMode.c1327 uint32_t cursor; member
1331 uint32_t cursor; member
1345 req->cursor = 0; in drmModeAtomicAlloc()
1362 new->cursor = old->cursor; in drmModeAtomicDuplicate()
1372 old->cursor * sizeof(*new->items)); in drmModeAtomicDuplicate()
1388 if (!augment || augment->cursor == 0) in drmModeAtomicMerge()
1391 if (base->cursor + augment->cursor >= base->size_items) { in drmModeAtomicMerge()
1395 base->size_items = base->cursor in drmModeAtomicMerge()
1421 drmModeAtomicSetCursor(drmModeAtomicReqPtr req, int cursor) drmModeAtomicSetCursor() argument
[all...]
/third_party/libunwind/libunwind/src/x86/
H A DGos-freebsd.c39 unw_is_signal_frame (unw_cursor_t *cursor) in unw_is_signal_frame() argument
41 struct cursor *c = (struct cursor *) cursor; in unw_is_signal_frame()
105 x86_handle_signal_frame (unw_cursor_t *cursor) in x86_handle_signal_frame() argument
107 struct cursor *c = (struct cursor *) cursor; in x86_handle_signal_frame()
152 x86_get_scratch_loc (struct cursor *c, unw_regnum_t reg) in x86_get_scratch_loc()
345 x86_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, voi argument
[all...]
/third_party/libunwind/libunwind/src/aarch64/
H A DGtrace.c217 unw_cursor_t *cursor, in trace_init_addr()
223 struct cursor *c = (struct cursor *) cursor; in trace_init_addr()
237 /* Reinitialise cursor to this instruction - but undo next/prev PC in trace_init_addr()
251 && likely((ret = unw_step (cursor)) >= 0)) in trace_init_addr()
276 trace_lookup (unw_cursor_t *cursor, in trace_lookup() argument
333 return trace_init_addr (frame, cursor, cfa, pc, fp, sp); in trace_lookup()
400 tdep_trace (unw_cursor_t *cursor, void **buffer, int *size) in tdep_trace() argument
402 struct cursor * in tdep_trace()
216 trace_init_addr(unw_tdep_frame_t *f, unw_cursor_t *cursor, unw_word_t cfa, unw_word_t pc, unw_word_t fp, unw_word_t sp) trace_init_addr() argument
[all...]
/third_party/libunwind/libunwind/src/arm/
H A DGtrace.c218 unw_cursor_t *cursor, in trace_init_addr()
224 struct cursor *c = (struct cursor *) cursor; in trace_init_addr()
238 /* Reinitialise cursor to this instruction - but undo next/prev RIP in trace_init_addr()
252 && likely((ret = unw_step (cursor)) >= 0)) in trace_init_addr()
277 trace_lookup (unw_cursor_t *cursor, in trace_lookup() argument
334 return trace_init_addr (frame, cursor, cfa, pc, r7, sp); in trace_lookup()
401 tdep_trace (unw_cursor_t *cursor, void **buffer, int *size) in tdep_trace() argument
403 struct cursor * in tdep_trace()
217 trace_init_addr(unw_tdep_frame_t *f, unw_cursor_t *cursor, unw_word_t cfa, unw_word_t pc, unw_word_t r7, unw_word_t sp) trace_init_addr() argument
[all...]
/third_party/protobuf/js/binary/
H A Dutils_test.js395 var cursor = f32_eps * 10;
396 while (cursor != Infinity) {
397 test(cursor);
398 cursor *= 1.1;
402 cursor = -f32_eps * 10;
403 while (cursor != -Infinity) {
404 test(cursor);
405 cursor *= 1.1;
481 var cursor = f64_eps * 10;
482 while (cursor !
[all...]
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
H A Dutils_test.js388 var cursor = f32_eps * 10;
389 while (cursor != Infinity) {
390 test(cursor);
391 cursor *= 1.1;
395 cursor = -f32_eps * 10;
396 while (cursor != -Infinity) {
397 test(cursor);
398 cursor *= 1.1;
458 var cursor = f64_eps * 10;
459 while (cursor !
[all...]
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
H A Dutils_test.js388 var cursor = f32_eps * 10;
389 while (cursor != Infinity) {
390 test(cursor);
391 cursor *= 1.1;
395 cursor = -f32_eps * 10;
396 while (cursor != -Infinity) {
397 test(cursor);
398 cursor *= 1.1;
458 var cursor = f64_eps * 10;
459 while (cursor !
[all...]
/third_party/libunwind/libunwind/tests/
H A DGtest-bt.c55 unw_cursor_t cursor; variable
69 if (unw_init_local (&cursor, &uc) < 0) in do_backtrace()
74 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace()
75 unw_get_reg (&cursor, UNW_REG_SP, &sp); in do_backtrace()
77 if (unw_get_proc_name (&cursor, name, sizeof (name), &off) == 0) in do_backtrace()
88 if (unw_get_proc_info (&cursor, &pi) == 0) in do_backtrace()
99 unw_get_reg (&cursor, UNW_IA64_BSP, &bsp); in do_backtrace()
106 ret = unw_step (&cursor); in do_backtrace()
109 unw_get_reg (&cursor, UNW_REG_IP, &ip); in do_backtrace()
/third_party/rust/crates/syn/src/
H A Dbuffer.rs2 //! cheaply copyable cursor.
75 /// Creates a cursor referencing the first token in the buffer and able to
83 /// A cheaply copyable cursor into a `TokenBuffer`.
85 /// This cursor holds a shared reference into the immutable data which is used
90 /// object and get a cursor to its first token with `begin()`.
94 // This is the only `Entry::End` object which this cursor is allowed to
103 /// Creates a cursor referencing a static empty TokenStream.
124 /// `None`-delimited scopes when the cursor reaches the end of them,
127 // NOTE: If we're looking at a `End`, we want to advance the cursor in create()
129 // our cursor' in create()
282 let mut cursor = self; token_stream() variables
[all...]
/third_party/node/deps/v8/src/strings/
H A Dunicode-inl.h84 uchar Utf8::ValueOfIncremental(const byte** cursor, State* state, in ValueOfIncremental() argument
88 byte next = **cursor; in ValueOfIncremental()
89 *cursor += 1; in ValueOfIncremental()
120 *cursor -= 1; in ValueOfIncremental()
178 uchar Utf8::ValueOf(const byte* bytes, size_t length, size_t* cursor) { in ValueOf() argument
183 *cursor += 1; in ValueOf()
186 return CalculateValue(bytes, length, cursor); in ValueOf()
/third_party/skia/third_party/externals/brotli/java/org/brotli/enc/
H A DPreparedDictionaryGenerator.java168 int cursor = slotSize[slot]; in generate()
169 heads.put(i, (short) cursor); in generate()
170 cursor += slotOffsets.get(slot); in generate()
174 items.put(cursor++, pos); in generate()
177 cursor--; in generate()
178 items.put(cursor, items.get(cursor) | 0x80000000); in generate()
/third_party/ffmpeg/libavformat/
H A Dsbgdec.c130 char *cursor; member
226 char *c = p->cursor; in lex_space()
228 while (p->cursor < p->end && is_space(*p->cursor)) in lex_space()
229 p->cursor++; in lex_space()
230 return p->cursor > c; in lex_space()
235 int r = p->cursor < p->end && *p->cursor == c; in lex_char()
237 p->cursor += r; in lex_char()
246 if (p->cursor in lex_double()
[all...]

Completed in 233 milliseconds

12345678910>>...37