Searched defs:cursor (Results 1 - 2 of 2) sorted by relevance

/system/extras/tests/bionic/libc/other/
H A Dtest_jpeg.c52 char* cursor; member in struct:__anon279
107 src->cursor = base;
/system/core/libcorkscrew/arch-x86/
H A Dbacktrace-x86.c117 /* Read byte through 4 byte cache. Usually we read byte by byte and updating cursor. */
118 static bool try_get_byte(const memory_t* memory, uintptr_t ptr, uint8_t* out_value, uint32_t* cursor) { argument
122 ptr += *cursor;
131 ++*cursor;
136 static bool try_get_xbytes(const memory_t* memory, uintptr_t ptr, uint32_t* out_value, uint8_t bytes, uint32_t* cursor) { argument
144 if (!try_get_byte(memory, ptr, &buf, cursor)) {
154 static bool try_get_leb128(const memory_t* memory, uintptr_t ptr, uint32_t* out_value, uint32_t* cursor, bool sign_extend) { argument
159 if (!try_get_byte(memory, ptr, &buf, cursor)) {
179 static bool try_get_sleb128(const memory_t* memory, uintptr_t ptr, uint32_t* out_value, uint32_t* cursor) { argument
180 return try_get_leb128(memory, ptr, out_value, cursor, tru
184 try_get_uleb128(const memory_t* memory, uintptr_t ptr, uint32_t* out_value, uint32_t* cursor) argument
189 read_dwarf(const memory_t* memory, uintptr_t ptr, uint32_t* out_value, uint8_t encoding, uint32_t* cursor) argument
319 execute_dwarf(const memory_t* memory, uintptr_t ptr, cie_info_t* cie_info, dwarf_state_t* dstate, uint32_t* cursor, dwarf_state_t* stack, uint8_t* stack_ptr) argument
[all...]

Completed in 74 milliseconds