Searched refs:size (Results 226 - 250 of 2734) sorted by relevance

1234567891011>>

/haiku/src/add-ons/print/transports/lpr/
H A DLpsClient.cpp103 LpsClient::receiveControlFile(int size, const char *name) argument
111 *fOutput << LPS_RECEIVE_CONTROL_FILE << size << ' ' << cfname << '\n' << flush;
118 LpsClient::receiveDataFile(int size, const char *name) argument
126 *fOutput << LPS_RECEIVE_DATA_FILE << size << ' ' << dfname << '\n' << flush;
134 LpsClient::transferData(const char *buffer, int size) argument
138 if (size < 0) {
139 size = strlen(buffer);
142 if (!fOutput->write(buffer, size)) {
151 LpsClient::transferData(istream &is, int size) argument
155 if (size <
[all...]
/haiku/headers/private/kernel/
H A Dheap.h62 void* memalign_etc(size_t alignment, size_t size, uint32 flags) _ALIGNED_BY_ARG(1);
66 void* memalign(size_t alignment, size_t size) _ALIGNED_BY_ARG(1);
71 size_t size);
73 size_t size, const heap_class* heapClass, bool allocateOnHeap);
74 void* heap_memalign(heap_allocator* heap, size_t alignment, size_t size) _ALIGNED_BY_ARG(2);
92 malloc_etc(size_t size, uint32 flags) argument
94 return memalign_etc(0, size, flags);
123 operator new(size_t size, const malloc_flags& flags) throw() argument
125 return malloc_etc(size, flags.flags);
130 operator new[](size_t size, cons argument
[all...]
H A Dcommpage.h20 void* allocate_commpage_entry(int entry, size_t size);
21 addr_t fill_commpage_entry(int entry, const void* copyFrom, size_t size);
H A DMessagingServiceDefs.h21 int32 size; // set to 0, when area is discarded member in struct:messaging_area_header
32 int32 size; // == sizeof(messaging_command) + dataSize member in struct:messaging_command
H A Dcommpage_compat.h23 void* allocate_commpage_compat_entry(int entry, size_t size);
25 size_t size);
/haiku/headers/libs/agg/
H A Dagg_span_allocator.h32 if(span_len > m_span.size())
44 AGG_INLINE unsigned max_span_len() const { return m_span.size(); }
/haiku/headers/os/drivers/
H A Dio_requests.h27 size_t size);
29 size_t size);
/haiku/headers/private/kernel/boot/platform/routerboard_mipsel/
H A Dplatform_arch.h21 extern void *arch_mmu_allocate(void *address, size_t size, uint8 protection,
23 extern status_t arch_mmu_free(void *address, size_t size);
/haiku/headers/private/system/arch/arm/
H A Dasm_defs.h13 #define SYMBOL_END(name) 1: .size name, 1b - name
16 #define FUNCTION_END(name) 1: .size name, 1b - name
/haiku/headers/private/system/arch/m68k/
H A Dasm_defs.h10 #define SYMBOL_END(name) 1: .size name, 1b - name
13 #define FUNCTION_END(name) 1: .size name, 1b - name
/haiku/headers/private/system/arch/mipsel/
H A Dasm_defs.h10 #define SYMBOL_END(name) 1: .size name, 1b - name
13 #define FUNCTION_END(name) 1: .size name, 1b - name
/haiku/headers/private/system/arch/x86/
H A Dasm_defs.h10 #define SYMBOL_END(name) 1: .size name, 1b - name
13 #define FUNCTION_END(name) 1: .size name, 1b - name
/haiku/headers/private/system/arch/x86_64/
H A Dasm_defs.h10 #define SYMBOL_END(name) 1: .size name, 1b - name
13 #define FUNCTION_END(name) 1: .size name, 1b - name
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPJob.h43 void FillRow(GPBand* band, unsigned char* data, size_t size,
45 void FillWhite(unsigned char* data, size_t size);
51 stp_image_status_t GetRow(unsigned char* data, size_t size, int row);
54 void Write(const char* data, size_t size);
55 void ReportError(const char* data, size_t size);
62 unsigned char* data, size_t size, int row);
66 size_t size);
68 size_t size);
/haiku/src/bin/debug/strace/
H A DMemoryReader.cpp51 MemoryReader::Read(void *_address, void *_buffer, int32 size, int32 &bytesRead) argument
57 while (size > 0) {
58 int32 toRead = size;
75 size -= actuallyRead;
83 MemoryReader::_Read(void *address, void *buffer, int32 size, int32 &bytesRead) argument
89 message.size = size;
115 bytesRead = reply.size;
H A DMemoryReader.h19 status_t Read(void *address, void *buffer, int32 size,
23 status_t _Read(void *address, void *buffer, int32 size,
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRequestInterpreter.cpp37 uint32 size;
38 const void* ptr = fRequest->Stream().GetOpaque(&size);
39 handle->fSize = size;
40 memcpy(handle->fData, ptr, size);
79 uint32 size; local
80 const void* ptr = fRequest->Stream().GetOpaque(&size);
81 handle->fSize = size;
82 memcpy(handle->fData, ptr, size);
/haiku/src/add-ons/translators/gif/
H A DSFHash.h34 SFHash(int size = 4096);
46 int size; member in class:SFHash
/haiku/headers/os/support/
H A DFlattenable.h17 virtual status_t Flatten(void* buffer, ssize_t size) const = 0;
20 ssize_t size) = 0;
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DInsecureChannel.h17 virtual status_t Send(const void* buffer, int32 size);
18 virtual status_t Receive(void* buffer, int32 size);
/haiku/src/system/boot/loader/file_systems/amiga_ffs/
H A DVolume.cpp56 if (get_root_block(fDevice, buffer, blockSize, partition->size) != B_OK) {
58 // block size was incorrectly passed from the partitioning
60 for (int32 size = 512; size <= 4096; size <<= 1) {
61 if (get_root_block(fDevice, buffer, size, partition->size) == B_OK) {
62 blockSize = size;
64 } else if (size >= 4096) {
/haiku/headers/private/kernel/boot/platform/openfirmware/
H A Dplatform_arch.h20 extern void *arch_mmu_allocate(void *address, size_t size, uint8 protection,
22 extern status_t arch_mmu_free(void *address, size_t size);
/haiku/headers/private/kernel/boot/platform/u-boot/
H A Dplatform_arch.h20 extern void *arch_mmu_allocate(void *address, size_t size, uint8 protection,
22 extern status_t arch_mmu_free(void *address, size_t size);
/haiku/headers/private/system/arch/riscv64/
H A Dasm_defs.h13 #define SYMBOL_END(name) 1: .size name, 1b - name
16 #define FUNCTION_END(name) 1: .size name, 1b - name
/haiku/headers/private/system/arch/sparc/
H A Dasm_defs.h13 #define SYMBOL_END(name) 1: .size name, 1b - name
16 #define FUNCTION_END(name) 1: .size name, 1b - name

Completed in 177 milliseconds

1234567891011>>