/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/ |
H A D | cursor.h | 20 * @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 D | clear.c | 20 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 D | print_nadv.c | 20 struct cursor_pos pos; local 22 _store_curs_pos( win, &pos ); 24 _restore_curs_pos( win, &pos );
|
H A D | edging.c | 44 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 D | fgetpos.c | 54 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 D | ftell.c | 60 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 D | ftello.c | 57 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 D | fsetpos.c | 57 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 D | convert-map | 38 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 D | list.h | 92 #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 D | list.h | 92 #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 D | list.h | 247 * 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 D | pciextra.c | 20 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 D | list.h | 343 * @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 D | list.h | 92 #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 D | fold.c | 98 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 D | nsStringTest.h | 159 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 D | xferbuf.c | 53 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 D | list.h | 291 * 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 D | list.h | 291 * 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 D | list.h | 280 * 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 D | list.h | 291 * 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 D | list.h | 291 * 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 D | list.h | 291 * 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 D | tst.libdepfullyconnected.ksh | 75 \$pos = length \$_; 77 \$pos = rindex(\$_, "/", \$pos); 78 \$pos--; 81 push(@new, substr(\$_, \$pos+2, 4));
|