Home
last modified time | relevance | path

Searched refs:cursor (Results 1 – 24 of 24) sorted by relevance

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/
Dsorlist.c54 slist_iterate(SList *list, SList **cursor) in slist_iterate() argument
56 slist_iterate(list, cursor) in slist_iterate()
57 SList *list, **cursor; in slist_iterate()
62 if ( list==NULL || cursor == NULL || *cursor==NULL ) return NULL;
63 if ( list== *cursor ) { *cursor = (*cursor)->next; }
64 e = (*cursor)->elem;
65 (*cursor) = (*cursor)->next;
Dastlib.c237 ast_find_all(SORAST *t, SORAST *u, SORAST **cursor) in ast_find_all() argument
239 ast_find_all(t, u, cursor) in ast_find_all()
240 SORAST *t, *u, **cursor; in ast_find_all()
247 if ( *cursor == NULL ) return NULL;
248 if ( *cursor!=t ) sib = *cursor;
261 if ( sib == NULL ) { *cursor = NULL; return NULL; }
285 *cursor = sib->ast_down;
287 else if ( sib->ast_right!=NULL ) *cursor = sib->ast_right;
288 else *cursor = _pop(template_stack, &tsp);
/device/linaro/bootloader/arm-trusted-firmware/lib/aarch64/
Dmisc_helpers.S187 cursor .req x0 /* Start address and then current address */
212 add stop_address, cursor, length
264 tst cursor, block_mask
272 orr tmp1, cursor, block_mask
293 tst cursor, #0xf
297 orr tmp2, cursor, #0xf
308 strb wzr, [cursor], #1
309 cmp cursor, tmp2
318 cmp cursor, tmp1
321 stp xzr, xzr, [cursor], #16
[all …]
/device/linaro/bootloader/arm-trusted-firmware/lib/aarch32/
Dmisc_helpers.S45 cursor .req r0 /* Start address and then current address */
59 add stop_address, cursor, length
70 tst cursor, #(8-1)
74 orr tmp, cursor, #(8-1)
84 strb zeroreg1, [cursor], #1
85 cmp cursor, tmp
94 cmp cursor, tmp
99 stmia cursor!, {zeroreg1, zeroreg2}
100 cmp cursor, tmp
106 cmp cursor, stop_address
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
Dslist.cpp47 iterate(SListNode **cursor) in iterate() argument
51 if ( cursor == NULL || *cursor==NULL ) return NULL; in iterate()
52 if ( head == *cursor ) { *cursor = (*cursor)->next(); } in iterate()
53 e = (*cursor)->elem(); in iterate()
54 (*cursor) = (*cursor)->next(); in iterate()
DPCCTSAST.cpp145 ast_find_all(PCCTS_AST *u, PCCTS_AST **cursor) in ast_find_all() argument
152 if ( *cursor == NULL ) return NULL; in ast_find_all()
153 if ( *cursor!=this ) sib = *cursor; in ast_find_all()
166 if ( sib == NULL ) { *cursor = NULL; return NULL; } in ast_find_all()
190 *cursor = sib->down(); in ast_find_all()
192 else if ( sib->right()!=NULL ) *cursor = sib->right(); in ast_find_all()
193 else *cursor = _pop(template_stack, &tsp); in ast_find_all()
DPCCTSAST.h124 virtual PCCTS_AST *ast_find_all(PCCTS_AST *u, PCCTS_AST **cursor);
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
Dslist.cpp48 iterate(SListNode **cursor) in iterate() argument
52 if ( cursor == NULL || *cursor==NULL ) return NULL; in iterate()
53 if ( head == *cursor ) { *cursor = (*cursor)->next(); } in iterate()
54 e = (*cursor)->elem(); in iterate()
55 (*cursor) = (*cursor)->next(); in iterate()
DPCCTSAST.cpp145 ast_find_all(PCCTS_AST *u, PCCTS_AST **cursor) in ast_find_all() argument
153 if ( *cursor == NULL ) return NULL; in ast_find_all()
154 if ( *cursor!=this ) sib = *cursor; in ast_find_all()
167 if ( sib == NULL ) { *cursor = NULL; return NULL; } in ast_find_all()
191 *cursor = sib->down(); in ast_find_all()
193 else if ( sib->right()!=NULL ) *cursor = sib->right(); in ast_find_all()
194 else *cursor = _pop(template_stack, &tsp); in ast_find_all()
DPCCTSAST.h124 virtual PCCTS_AST *ast_find_all(PCCTS_AST *u, PCCTS_AST **cursor);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dconnection.c240 pysqlite_Cursor* cursor; in pysqlite_do_all_statements() local
257 cursor = (pysqlite_Cursor*)PyWeakref_GetObject(weakref); in pysqlite_do_all_statements()
258 if ((PyObject*)cursor != Py_None) { in pysqlite_do_all_statements()
259 cursor->reset = 1; in pysqlite_do_all_statements()
301 int pysqlite_connection_register_cursor(pysqlite_Connection* connection, PyObject* cursor) in pysqlite_connection_register_cursor() argument
305 weakref = PyWeakref_NewRef((PyObject*)cursor, NULL); in pysqlite_connection_register_cursor()
326 PyObject* cursor; in pysqlite_connection_cursor() local
341 cursor = PyObject_CallFunction(factory, "O", self); in pysqlite_connection_cursor()
345 if (cursor && self->row_factory != Py_None) { in pysqlite_connection_cursor()
346 Py_XDECREF(((pysqlite_Cursor*)cursor)->row_factory); in pysqlite_connection_cursor()
[all …]
Drow.c39 pysqlite_Cursor* cursor; in pysqlite_row_init() local
44 if (!PyArg_ParseTuple(args, "OO", &cursor, &data)) { in pysqlite_row_init()
48 if (!PyObject_IsInstance((PyObject*)cursor, (PyObject*)&pysqlite_CursorType)) { in pysqlite_row_init()
61 Py_INCREF(cursor->description); in pysqlite_row_init()
62 self->description = cursor->description; in pysqlite_row_init()
Dconnection.h132 int pysqlite_connection_register_cursor(pysqlite_Connection* connection, PyObject* cursor);
/device/google/cuttlefish_common/guest/libs/remoter/
Dremoter_framework_pkt.h156 uint8_t* cursor = ((uint8_t*)request) + sizeof(request->length); in remoter_read_request() local
157 if ((len = socket->Read(cursor, remaining_data)) < 0) { in remoter_read_request()
198 uint8_t* cursor = ((uint8_t*)response) + sizeof(response->length); in remoter_read_response() local
203 if ((len = TEMP_FAILURE_RETRY(read(socket, cursor, remaining_data))) < 0) { in remoter_read_response()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/h/
Dastlib.h40 extern SORAST *ast_find_all(SORAST *t, SORAST *u, SORAST **cursor);
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DDatabase.py51 self.Cur = self.Conn.cursor()
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dmisc.c891 unsigned *cursor; /* MR10 */ local
915 /* MR10 */ for (cursor=origin; *cursor != nil; cursor++) {
916 /* MR10 */ r=*cursor;
Dmrhoist.c3015 unsigned *cursor; local
3023 for (cursor=origin; *cursor != nil ; cursor++) {
3025 fprintf(stderr," %s",RulePtr[*cursor]->rname);
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
DDatabase.py88 self.Cur = self.Conn.cursor()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
DDatabase.py87 self.Cur = self.Conn.cursor()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
DIpiDb.py50 self.Cur = self.Conn.cursor()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
DWorkspaceDatabase.py2998 self.Cur = self.Conn.cursor()
/device/linaro/bootloader/edk2/EdkShellPkg/
DShellR64.patch4858 // this is a selection prompt, cursor will stay in edit area
5005 // restore edit area cursor position
5836 // this is a selection prompt, cursor will stay in edit area
DShellR33.patch7565 - // Don't need to SetCursorPosition() if the current cursor position is not changed
7579 - // Set the cursor position for this key
7584 + // Set the cursor position for this key