/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/ |
H A D | fseek.c | 61 * Seek the given file to the given offset. 62 * Zero extend the offset if SEEK_SET to allow access to 4GB files 67 off_t offset; local 70 offset = (off_t)((UINT64)l_offset); // Coerce to unsigned to prevent sign extension 72 offset = (off_t)l_offset; // OK for this one to be negative 73 return fseeko(fp, offset, whence);
|
H A D | stdio.c | 3 These maintain the `known seek offset' for seek optimisation. 74 /* if the read succeeded, update the current offset */ 101 __sseek(void *cookie, fpos_t offset, int whence) argument 112 ret = lseek(fp->_file, (off_t)offset, whence);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/ |
H A D | bmmap.c | 1 /* -*- Mode: C++; c-basic-offset: 4 -*- */ 55 _PR_MD_MEM_MAP(PRFileMap *fmap, PRInt64 offset, PRUint32 len) argument
|
/vbox/src/VBox/GuestHost/OpenGL/spu_loader/ |
H A D | dispatchheader.py | 35 offset = 0 variable 37 print '#define DISPATCH_OFFSET_%s %d' % (func_name, offset) 38 offset += 1
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/image/ |
H A D | bootsector.c | 54 * @v offset Real-mode offset 58 int call_bootsector ( unsigned int segment, unsigned int offset, argument 62 DBG ( "Booting from boot sector at %04x:%04x\n", segment, offset ); 106 : "b" ( segment ), "D" ( offset ),
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/ |
H A D | bios_smbios.c | 47 static unsigned int offset = 0; local 53 for ( ; offset < 0x10000 ; offset += 0x10 ) { 56 copy_from_real ( &u.entry, BIOS_SEG, offset, 63 copy_from_real ( &u.bytes, BIOS_SEG, offset, len ); 69 BIOS_SEG, offset, sum ); 75 u.entry.major, u.entry.minor, BIOS_SEG, offset );
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/ |
H A D | pcibackup.c | 32 * Check PCI configuration space offset against exclusion list 35 * @v offset Offset within PCI configuration space 39 pci_backup_excluded ( struct pci_device *pci, unsigned int offset, argument 45 if ( offset == *exclude ) { 46 DBGC ( pci, "PCI %p skipping configuration offset " 47 "%02x\n", pci, offset ); 63 unsigned int offset; local 66 for ( offset = 0, dword = backup->dwords ; offset < 0x100 ; 67 offset 82 unsigned int offset; local [all...] |
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/ |
H A D | sym.h | 42 funcptr offset; member in struct:__anon4640
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/ |
H A D | sym.h | 42 funcptr offset; member in struct:__anon4207
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/ |
H A D | prmmap.c | 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 79 PROffset64 offset, 82 return _PR_MD_MEM_MAP(fmap, offset, len); 77 PR_MemMap( PRFileMap *fmap, PROffset64 offset, PRUint32 len) argument
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/ |
H A D | w16fmem.c | 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 64 PRInt64 offset, 62 _MD_MemMap( PRFileMap *fmap, PRInt64 offset, PRUint32 len) argument
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | time.c | 89 static const uint8_t offset[12] = local 96 offset[tm_mon] + tm_mday ) % 7 );
|
/vbox/src/VBox/HostServices/SharedOpenGL/unpacker/ |
H A D | unpack_bufferobject.c | 15 GLintptrARB offset = READ_DATA( 12, GLuint ); local 21 cr_unpackDispatch.GetBufferSubDataARB( target, offset, size, NULL ); 40 GLintptrARB offset = READ_DATA( sizeof(int) + 8, GLuint ); local 44 cr_unpackDispatch.BufferSubDataARB( target, offset, size, data );
|
/vbox/src/VBox/Additions/x11/x11include/libXext-1.3.1/X11/extensions/ |
H A D | XShm.h | 47 unsigned long offset; /* the offset into ShmSeg used in the request */ member in struct:__anon3584
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | bigfile2.c | 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 55 PRInt64 offset, position; local 63 LL_I2L(offset, 1); 64 LL_SHL(offset, offset, 32); 72 position = PR_Seek64(fd, offset, PR_SEEK_SET); 77 PR_ASSERT(LL_EQ(position, offset)); 98 li.QuadPart = offset; 104 PR_ASSERT(li.QuadPart == offset);
|
H A D | bigfile3.c | 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 54 PRInt64 offset, position; local 62 LL_I2L(offset, 1); 63 LL_SHL(offset, offset, 32); 72 li.QuadPart = offset; 78 PR_ASSERT(li.QuadPart == offset); 98 position = PR_Seek64(fd, offset, PR_SEEK_SET); 103 PR_ASSERT(LL_EQ(position, offset));
|
/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/ |
H A D | CircularBuffer.cs | 39 public int Put(byte[] source, int offset, int count) argument 44 _buffer[(_tail+i) % _capacity] = source[offset+i]; 61 public int Get(byte[] destination, int offset, int count) argument 65 destination[offset + i] = _buffer[(_head+i) % _capacity];
|
H A D | Inflater.cs | 51 /// <param name="offset">The index of the first byte to add from <c>data</c></param> 54 public override void Add(byte[] data, int offset, int count) argument 57 if (offset < 0 || count < 0) throw new ArgumentOutOfRangeException(); 58 if ((offset+count) > data.Length) throw new ArgumentException(); 61 int inputIndex = offset;
|
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/ |
H A D | server_bufferobject.c | 52 crServerDispatchGetBufferSubDataARB(GLenum target, GLintptrARB offset, argument 59 cr_server.head_spu->dispatch_table.GetBufferSubDataARB( target, offset, size, b );
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | parseopt.h | 27 uint16_t offset; member in struct:option_descriptor 68 .offset = offsetof ( _struct, _field ), \
|
H A D | xfer.h | 31 * This is an absolute offset if the @c XFER_FL_ABS_OFFSET 32 * flag is set, otherwise a relative offset. (A freshly 34 * relative offset of zero, i.e. no offset from the current 37 off_t offset; member in struct:xfer_metadata 105 extern int xfer_seek ( struct interface *intf, off_t offset );
|
/vbox/src/VBox/Devices/PC/ipxe/src/interface/smbios/ |
H A D | smbios.c | 42 * @v offset Offset to start of strings 43 * @ret offset Offset to strings terminator, or 0 if not found 45 static size_t find_strings_terminator ( size_t offset ) { 49 for ( ; offset <= max_offset ; offset++ ) { 50 copy_from_user ( &nulnul, smbios.address, offset, 2 ); 52 return ( offset + 1 ); 67 size_t offset = 0; local 79 while ( ( ( offset + sizeof ( structure->header ) ) < smbios.len ) 83 copy_from_user ( &structure->header, smbios.address, offset, 153 size_t offset; local [all...] |
/vbox/src/VBox/GuestHost/OpenGL/packer/ |
H A D | pack_bufferobject.c | 64 crPackBufferSubDataARB( GLenum target, GLintptrARB offset, GLsizeiptrARB size, argument 79 WRITE_DATA_AI(GLuint, (GLuint) offset); 88 crPackGetBufferSubDataARB( GLenum target, GLintptrARB offset, GLsizeiptrARB size, void * data, int * writeback ) argument 97 WRITE_DATA( 12, GLuint, (GLuint) offset );
|
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/ |
H A D | utils.h | 61 * Location in the remap table where the dispatch offset should be 69 int offset; member in struct:dri_extension_function
|
/vbox/src/libs/xpcom18a4/ipc/ipcd/shared/src/ |
H A D | ipcm.cpp | 142 // compute target array starting offset 158 PRUint32 offset = sizeof(hdr); 162 SetData(offset, names[i], len); 163 offset += len; 168 SetData(offset, (const char *) targets[i], len); 169 offset += len; 274 ipcmMessageForward::SetInnerData(PRUint32 offset, const char *data, PRUint32 dataLen) argument 276 SetData(sizeof(ipcmMessageHeader) + 4 + IPC_MSG_HEADER_SIZE + offset, data, dataLen); local
|