Searched refs:pos (Results 1 - 25 of 239) sorted by relevance

12345678910

/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/
H A Dcursor.h20 * @v *pos pointer to struct in which original cursor position is stored
22 static inline void _restore_curs_pos ( WINDOW *win, struct cursor_pos *pos ) {
23 wmove ( win, pos->y, pos->x );
30 * @v *pos pointer to struct in which to store cursor position
32 static inline void _store_curs_pos ( WINDOW *win, struct cursor_pos *pos ) {
33 pos->y = win->curs_y;
34 pos->x = win->curs_x;
H A Dclear.c20 struct cursor_pos pos; local
22 _store_curs_pos( win, &pos );
26 _restore_curs_pos( win, &pos );
38 struct cursor_pos pos; local
40 _store_curs_pos( win, &pos );
41 while ( ( win->curs_y - pos.y ) == 0 ) {
44 _restore_curs_pos( win, &pos );
69 struct cursor_pos pos; local
71 _store_curs_pos( win, &pos );
76 _restore_curs_pos( win, &pos );
[all...]
H A Dprint_nadv.c20 struct cursor_pos pos; local
22 _store_curs_pos( win, &pos );
24 _restore_curs_pos( win, &pos );
H A Dedging.c44 struct cursor_pos pos; local
46 _store_curs_pos( win, &pos );
67 _restore_curs_pos( win, &pos );
81 struct cursor_pos pos; local
83 _store_curs_pos ( win, &pos );
87 _restore_curs_pos ( win, &pos );
101 struct cursor_pos pos; local
103 _store_curs_pos ( win, &pos );
106 wmove( win, ++(win->curs_y), pos.x);
108 _restore_curs_pos ( win, &pos );
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dfgetpos.c54 fgetpos(FILE *fp, fpos_t *pos) argument
57 _DIAGASSERT(pos != NULL);
59 if((fp == NULL) || (pos == NULL)) {
64 return((*pos = (off_t)ftello(fp)) == (off_t)-1);
H A Dftell.c60 fpos_t pos; local
76 pos = fp->_offset;
78 pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR);
79 if (pos == -1L) {
81 return (long)(pos);
90 pos -= fp->_r;
92 pos -= fp->_ur;
99 pos += fp->_p - fp->_bf._base;
102 return (long)(pos);
H A Dftello.c57 fpos_t pos; local
73 pos = fp->_offset;
75 pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR);
76 if (pos == (fpos_t)-1) {
78 return (pos);
87 pos -= fp->_r;
89 pos -= fp->_ur;
96 pos += fp->_p - fp->_bf._base;
99 return (pos);
H A Dfsetpos.c57 fsetpos(FILE *iop, const fpos_t *pos) argument
60 _DIAGASSERT(pos != NULL);
62 return (fseeko(iop, (off_t)*pos, SEEK_SET));
/vbox/src/VBox/RDP/client-1.8.3/keymaps/
H A Dconvert-map38 for pos in range(1, len(fields)):
39 keysym = fields[pos]
41 if pos == 1:
43 elif pos == 2:
45 elif pos == 3:
47 elif pos == 4:
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dlist.h92 #define list_for_each_entry(pos, head, member) \
93 for (pos = __container_of((head)->next, pos, member); \
94 &pos->member != (head); \
95 pos = __container_of(pos->member.next, pos, member))
97 #define list_for_each_entry_safe(pos, tmp, head, member) \
98 for (pos = __container_of((head)->next, pos, membe
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dlist.h92 #define list_for_each_entry(pos, head, member) \
93 for (pos = __container_of((head)->next, pos, member); \
94 &pos->member != (head); \
95 pos = __container_of(pos->member.next, pos, member))
97 #define list_for_each_entry_safe(pos, tmp, head, member) \
98 for (pos = __container_of((head)->next, pos, membe
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dlist.h247 * Loop through the list given by head and set pos to struct in the list.
258 * @param pos Iterator variable of the type of the list elements.
263 #define list_for_each_entry(pos, head, member) \
264 for (pos = __container_of((head)->next, pos, member); \
265 &pos->member != (head); \
266 pos = __container_of(pos->member.next, pos, member))
275 #define list_for_each_entry_safe(pos, tm
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/
H A Dpciextra.c20 uint8_t pos, id; local
33 pci_read_config_byte ( pci, PCI_CAPABILITY_LIST, &pos );
36 pci_read_config_byte ( pci, PCI_CB_CAPABILITY_LIST, &pos );
39 while ( ttl-- && pos >= 0x40 ) {
40 pos &= ~3;
41 pci_read_config_byte ( pci, pos + PCI_CAP_LIST_ID, &id );
46 return pos;
47 pci_read_config_byte ( pci, pos + PCI_CAP_LIST_NEXT, &pos );
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dlist.h343 * @v pos Iterator
346 #define list_for_each( pos, head ) \
348 pos = (head)->next; \
349 pos != (head); \
350 pos = (pos)->next )
355 * @v pos Iterator
359 #define list_for_each_entry( pos, head, member ) \
361 pos = list_entry ( (head)->next, typeof ( *pos ), membe
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dlist.h92 #define list_for_each_entry(pos, head, member) \
93 for (pos = __container_of((head)->next, pos, member); \
94 &pos->member != (head); \
95 pos = __container_of(pos->member.next, pos, member))
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dfold.c98 int pos = (low + high) / 2; local
99 if (wine_ligatures[pos] < wc)
100 low = pos + 1;
101 else if (wine_ligatures[pos] > wc)
102 high = pos - 1;
104 return wine_expanded_ligatures[pos][3];
115 int pos = (low + high) / 2; local
116 if (wine_ligatures[pos] < wc)
117 low = pos + 1;
118 else if (wine_ligatures[pos] > w
[all...]
/vbox/src/libs/xpcom18a4/xpcom/tests/windows/
H A DnsStringTest.h159 PRInt32 pos=theDest.Find(pbuf); local
160 NS_ASSERTION(pos==4,"Error: Find routine");
162 pos=theDest.Find(pbuf2,PR_FALSE,-1);
163 NS_ASSERTION(pos==0,"Error: Find routine");
165 pos=theDest.Find(pbuf2,PR_FALSE,pos+1);
166 NS_ASSERTION(pos==11,"Error: Find routine");
168 pos=theDest.FindChar('a');
169 NS_ASSERTION(pos==0,"Error: Find routine");
171 pos
227 PRInt32 pos=s1.FindChar('r'); //this will search from the beginning, and for the length of the string. local
269 PRInt32 pos=s1.RFindChar('o'); //this will search from the end, and for the length of the string. local
319 PRInt32 pos= s1.Find("there",PR_FALSE,0,4); //first search from front using offset local
353 PRInt32 pos= s1.RFind("ghi"); //first search from end using count local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dxferbuf.c53 xferbuf->pos = 0;
99 xferbuf->pos = 0;
100 xferbuf->pos += meta->offset;
104 max = ( xferbuf->pos + len );
109 memcpy ( ( xferbuf->data + xferbuf->pos ), iobuf->data, len );
112 xferbuf->pos += len;
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dlist.h291 * Loop through the list given by head and set pos to struct in the list.
302 * @param pos Iterator variable of the type of the list elements.
307 #define xorg_list_for_each_entry(pos, head, member) \
308 for (pos = __container_of((head)->next, pos, member); \
309 &pos->member != (head); \
310 pos = __container_of(pos->member.next, pos, member))
319 #define xorg_list_for_each_entry_safe(pos, tm
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dlist.h291 * Loop through the list given by head and set pos to struct in the list.
302 * @param pos Iterator variable of the type of the list elements.
307 #define xorg_list_for_each_entry(pos, head, member) \
308 for (pos = __container_of((head)->next, pos, member); \
309 &pos->member != (head); \
310 pos = __container_of(pos->member.next, pos, member))
319 #define xorg_list_for_each_entry_safe(pos, tm
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dlist.h280 * Loop through the list given by head and set pos to struct in the list.
291 * @param pos Iterator variable of the type of the list elements.
296 #define xorg_list_for_each_entry(pos, head, member) \
297 for (pos = __container_of((head)->next, pos, member); \
298 &pos->member != (head); \
299 pos = __container_of(pos->member.next, pos, member))
308 #define xorg_list_for_each_entry_safe(pos, tm
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Dlist.h291 * Loop through the list given by head and set pos to struct in the list.
302 * @param pos Iterator variable of the type of the list elements.
307 #define xorg_list_for_each_entry(pos, head, member) \
308 for (pos = __container_of((head)->next, pos, member); \
309 &pos->member != (head); \
310 pos = __container_of(pos->member.next, pos, member))
319 #define xorg_list_for_each_entry_safe(pos, tm
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dlist.h291 * Loop through the list given by head and set pos to struct in the list.
302 * @param pos Iterator variable of the type of the list elements.
307 #define xorg_list_for_each_entry(pos, head, member) \
308 for (pos = __container_of((head)->next, pos, member); \
309 &pos->member != (head); \
310 pos = __container_of(pos->member.next, pos, member))
319 #define xorg_list_for_each_entry_safe(pos, tm
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dlist.h291 * Loop through the list given by head and set pos to struct in the list.
302 * @param pos Iterator variable of the type of the list elements.
307 #define xorg_list_for_each_entry(pos, head, member) \
308 for (pos = __container_of((head)->next, pos, member); \
309 &pos->member != (head); \
310 pos = __container_of(pos->member.next, pos, member))
319 #define xorg_list_for_each_entry_safe(pos, tm
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/pragma/
H A Dtst.libdepfullyconnected.ksh75 \$pos = length \$_;
77 \$pos = rindex(\$_, "/", \$pos);
78 \$pos--;
81 push(@new, substr(\$_, \$pos+2, 4));

Completed in 98 milliseconds

12345678910