Searched refs:binary (Results 1 - 25 of 51) sorted by relevance

123

/haiku-fatelf/src/add-ons/media/plugins/matroska/libebml/ebml/
H A DEbmlBinary.h56 \brief Handle all operations on an EBML element that contains "unknown" binary data
70 void SetBuffer(const binary *Buffer, const uint32 BufferSize) {
71 Data = (binary *) Buffer;
76 binary *GetBuffer() const {return Data;}
78 void CopyBuffer(const binary *Buffer, const uint32 BufferSize) {
81 Data = (binary *)malloc(BufferSize * sizeof(binary));
88 operator const binary &() const {return *Data;}
97 binary *Data; // the binary dat
[all...]
H A DEbmlId.h51 EbmlId(const binary aValue[4], const unsigned int aLength)
74 inline void Fill(binary * Buffer) const {
H A DMemIOCallback.h87 binary *GetDataBuffer() const {return dataBuffer;};
101 binary *dataBuffer;
H A DEbmlEndian.h69 inline Endian & Eval(const binary *endian_buffer)
77 inline void Fill(binary *endian_buffer) const
87 inline bool operator!=(const binary *buffer) const {return *((TYPE*)buffer) == platform_value;}
H A DEbmlCrc32.h86 static bool CheckCRC(uint32 inputCRC, const binary *input, uint32 length);
90 void FillCRC32(const binary *input, uint32 length);
94 void Update(const binary *input, uint32 length);
112 void UpdateByte(binary b) {m_crc = m_tab[CRC32_INDEX(m_crc) ^ b] ^ CRC32_SHIFTED(m_crc);}
H A DEbmlTypes.h41 #include "EbmlEndian.h" // binary needs to be defined
49 typedef binary bits80[10];
H A DEbmlElement.h54 int EBML_DLL_API CodedValueLength(uint64 Length, int CodedSize, binary * OutBuffer);
60 uint64 EBML_DLL_API ReadCodedSizeValue(const binary * InBuffer, uint32 & BufferSize, uint64 & SizeUnknown);
71 int EBML_DLL_API CodedValueLengthSigned(int64 Length, int CodedSize, binary * OutBuffer);
77 int64 EBML_DLL_API ReadCodedSizeSignedValue(const binary * InBuffer, uint32 & BufferSize, uint64 & SizeUnknown);
/haiku-fatelf/src/tests/system/libroot/posix/bonnie++-1.03d/debian/
H A Drules46 binary-indep: build install
50 binary-arch: build install
79 binary: binary-indep binary-arch
80 .PHONY: build clean binary-indep binary-arch binary install
/haiku-fatelf/src/add-ons/media/plugins/matroska/libebml/
H A DEbmlBinary.cpp53 Data = (binary *)malloc(Size * sizeof(binary));
72 \note no Default binary value handled
90 Data = (binary *)malloc(Size * sizeof(binary));
H A DEbmlSInteger.cpp63 binary FinalData[8]; // we don't handle more than 64 bits integers
71 FinalData[Size-i-1] = binary(TempValue & 0xFF);
117 binary Buffer[8];
H A DMemIOCallback.cpp44 dataBuffer = (binary *)malloc(DefaultSize);
101 dataBuffer = (binary *)realloc((void *)dataBuffer, dataBufferPos + Size);
116 dataBuffer = (binary *)realloc((void *)dataBuffer, dataBufferPos + Size);
H A DEbmlUInteger.cpp65 binary FinalData[8]; // we don't handle more than 64 bits integers
115 binary Buffer[8];
H A DEbmlDate.cpp54 binary Buffer[8];
H A DEbmlString.cpp84 binary *Pad = new binary[DefaultSize - Result];
H A DEbmlElement.cpp110 int CodedValueLength(uint64 Length, int CodedSize, binary * OutBuffer)
124 int CodedValueLengthSigned(int64 Length, int CodedSize, binary * OutBuffer)
138 uint64 ReadCodedSizeValue(const binary * InBuffer, uint32 & BufferSize, uint64 & SizeUnknown)
140 binary SizeBitMask = 1 << 7;
143 binary PossibleSize[8];
178 int64 ReadCodedSizeSignedValue(const binary * InBuffer, uint32 & BufferSize, uint64 & SizeUnknown)
236 binary PossibleId[4];
238 binary PossibleSize[8]; // we don't support size stored in more than 64 bits
244 binary BitMask;
333 binary PossibleIdNSiz
[all...]
H A DEbmlCrc32.cpp206 binary *Pad = new binary[DefaultSize - Result];
223 binary *Buffer = new binary[Size];
239 bool EbmlCrc32::CheckCRC(uint32 inputCRC, const binary *input, uint32 length)
269 void EbmlCrc32::FillCRC32(const binary *s, uint32 n)
303 void EbmlCrc32::Update(const binary *input, uint32 length)
/haiku-fatelf/src/kits/network/libbind/inet/
H A Dnsap_addr.c44 inet_nsap_addr(const char *ascii, u_char *binary, int maxlen) { argument
65 *binary++ = (nib << 4) | xtob(c);
80 inet_nsap_ntoa(int binlen, const u_char *binary, char *ascii) { argument
100 nib = *binary >> 4;
102 nib = *binary++ & 0x0f;
/haiku-fatelf/src/bin/coreutils/src/
H A Dmd5sum.c101 + 2 /* blank and binary indicator */ \
134 { "binary", no_argument, NULL, 'b' },
164 -b, --binary read in binary mode (default unless reading tty stdin)\n\
168 -b, --binary read in binary mode\n\
195 a line with checksum, a character indicating type (`*' for binary, ` ' for\n\
247 a hexadecimal digest, binary flag, and the file name.
252 unsigned char **hex_digest, int *binary, char **file_name)
269 *binary
251 split_3(char *s, size_t s_len, unsigned char **hex_digest, int *binary, char **file_name) argument
381 digest_file(const char *filename, int *binary, unsigned char *bin_result) argument
464 int binary; local
609 int binary = -1; local
[all...]
/haiku-fatelf/src/add-ons/print/drivers/canon_lips/lips3/
H A DCompress3.cpp78 ifstream ifs(*++argv, ios::binary | ios::nocreate);
93 ofstream ofs("test.bin", ios::binary);
/haiku-fatelf/src/bin/gdb/gdb/config/djgpp/
H A Ddjcheck.sh28 if diff --binary -u ${base}.out ${base}.tst ; then
/haiku-fatelf/src/add-ons/media/plugins/matroska/libmatroska/matroska/
H A DFileKax.h104 bool AddFrame(Track * aTrack, const uint32 aTimecode, const binary *aFrame, const uint32 aFrameSize,
110 bool ReadFrame(Track * & aTrack, uint32 & aTimecode, const binary * & aFrame, uint32 & aFrameSize,
132 binary * myCurrReadBlock; ///< The buffer containing the current read block
H A DKaxBlock.h56 binary * myBuffer;
62 DataBuffer(binary * aBuffer, uint32 aSize, bool (*aFreeBuffer)(const DataBuffer & aBuffer) = NULL)
69 virtual binary * Buffer() {return myBuffer;}
71 virtual const binary * Buffer() const {return myBuffer;}
88 SimpleDataBuffer(binary * aBuffer, uint32 aSize, uint32 aOffset, bool (*aFreeBuffer)(const DataBuffer & aBuffer) = myFreeBuffer)
99 binary * BaseBuffer;
103 binary *_Buffer = static_cast<const SimpleDataBuffer*>(&aBuffer)->BaseBuffer;
117 NotSoSimpleDataBuffer(binary * aBuffer, uint32 aSize, uint32 aOffset)
118 :SimpleDataBuffer(new binary[aSize - aOffset], aSize, 0)
213 \note override this function to generate the Data/Size on the fly, unlike the usual binary element
[all...]
/haiku-fatelf/src/add-ons/print/transports/shared/
H A DSocketStream.cpp48 ofstream ofs("recv.log", ios::binary | ios::app);
86 ofstream ofs("send.log", ios::binary | ios::app);
/haiku-fatelf/src/add-ons/translators/exr/openexr/ilmimf/
H A DImfStdIO.cpp8 // Redistribution and use in source and binary forms, with or without
13 // * Redistributions in binary form must reproduce the above
90 _is (new ifstream (fileName, ios_base::binary)),
153 _os (new ofstream (fileName, ios_base::binary)),
/haiku-fatelf/src/add-ons/media/plugins/matroska/libmatroska/
H A DKaxBlock.cpp118 binary *ClonedData = (binary *)malloc(mySize * sizeof(binary));
128 :DataBuffer((binary *)malloc(ToClone.mySize * sizeof(binary)), ToClone.mySize, myFreeBuffer)
309 binary *cursor = Data;
340 binary BlockHead[5], *cursor = BlockHead;
405 binary tmpValue;
422 tmpValue = binary(tmpSize);
435 binary _FinalHea
[all...]

Completed in 199 milliseconds

123