search for: __int8

Displaying 9 results from an estimated 9 matches for "__int8".

2012 Feb 09
2
[PATCH] Remove even more CPP hackery
...etc). Erik I would recommend including with the distribution a file for windows developers to use. It's fairly simple /* since windows doesn't have stdint.h */ typedef unsigned __int64 uint64_t; typedef unsigned __int32 uint32_t; typedef unsigned __int16 uint16_t; typedef unsigned __int8 uint8_t; typedef __int64 int64_t; typedef __int32 int32_t; typedef __int16 int16_t; typedef __int8 int8_t; #if defined(_M_IX64) typedef unsigned __int128 uint128_t; typedef __int128 int128_t; #endif
2009 Jan 08
1
[LLVMdev] Integer typedefs for MSVC
...int64_t; typedef unsigned __int64 uint64_t; typedef signed int int32_t; typedef unsigned int uint32_t; typedef short int16_t; typedef unsigned short uint16_t; typedef signed char int8_t; typedef unsigned char uint8_t; typedef signed int ssize_t; #endif it would be preferable to use these: typedef __int8 int8_t; typedef __int16 int16_t; typedef __int32 int32_t; typedef __int64 int64_t; typedef unsigned __int8 uint8_t; typedef unsigned __int16 uint16_t; typedef unsigned __int32 uint32_t; typedef unsigned __int64 uint64_t; Does anyone feel strongly about this? - Mark Leone -------------- next part...
2012 Feb 09
1
[PATCH] Remove even more CPP hackery
...distribution a file for >> windows developers to use. It's fairly simple >> >> >> /* since windows doesn't have stdint.h */ typedef unsigned >> __int64 uint64_t; typedef unsigned __int32 uint32_t; typedef >> unsigned __int16 uint16_t; typedef unsigned __int8 uint8_t; >> typedef __int64 int64_t; typedef __int32 int32_t; typedef __int16 >> int16_t; typedef __int8 int8_t; #if defined(_M_IX64) typedef >> unsigned __int128 uint128_t; typedef __int128 int128_t; #endif > > Also, I agree with the consensus that developers have to #in...
2005 Dec 12
0
Real time in ARM - please help
...urce code is patterned after sampleenc and I haven't tried using Ogg.. my source code is attached below in case anyone's interested. I wonder what I'm doing wrong.. Appreciate any help, thanks a lot. Mon int PCMToSpx (BSTR FileOpen, BSTR FileSave, bool VAD, short BitRateChoice) { __int8 Speex [6]; __int16 SamplingRate = 8000; __int8 BitsPerSampleX8 = 2 /* ie 2*8=16-bit */, NumBytes /*aka nBytes or nbBytes */; FILE *fin, *fout; void *state; int FrameSize, NumFrames = 0; int BitRate, temp; __int16 in [MaxFrameSize]; __int8 cbits [MaxFrameBytes];...
2012 Feb 09
0
[PATCH] Remove even more CPP hackery
...ng with the distribution a file for windows > developers to use. It's fairly simple > > > /* since windows doesn't have stdint.h */ > typedef unsigned __int64 uint64_t; > typedef unsigned __int32 uint32_t; > typedef unsigned __int16 uint16_t; > typedef unsigned __int8 uint8_t; > typedef __int64 int64_t; > typedef __int32 int32_t; > typedef __int16 int16_t; > typedef __int8 int8_t; > #if defined(_M_IX64) > typedef unsigned __int128 uint128_t; > typedef __int128 int128_t; > #endif Also, I agree with the consensus that developers hav...
2015 Jun 03
5
[PATCH 1/1] Updated opus_types.h to correctly support 8 and 64 bit types.
...ed short opus_uint16; + typedef int opus_int32; + typedef unsigned int opus_uint32; + typedef long long opus_int64; + typedef unsigned long long opus_uint64; # else /* MSVC/Borland */ - typedef __int32 opus_int32; - typedef unsigned __int32 opus_uint32; + typedef __int8 opus_int8; + typedef unsigned __int8 opus_uint8; typedef __int16 opus_int16; typedef unsigned __int16 opus_uint16; + typedef __int32 opus_int32; + typedef unsigned __int32 opus_uint32; + typedef __int64 opus_int64; + typedef unsigned __int64 opus_uint64; # end...
2017 Apr 22
2
LLVM Optimizations strange behavior/bug
...imization (>= -O1) then the code will be optimized into some constants which sounds great at the beginning but this is not right. I can reproduce this with clang 3.9 and 4.0. GCC 5.4 and VS CL >=2015 do not show this behavior. .text:0000000000400570 ; __int64 __fastcall DecryptBlock(unsigned __int8 *) .text:0000000000400570 public DecryptBlock(unsigned char *) .text:0000000000400570 DecryptBlock(unsigned char *) proc near ; CODE XREF: main+5p .text:0000000000400570 mov cs:byte_60106F, 54h .text:0000000000400577 mov cs:byte_60106E, 0CDh ....
2012 Jun 23
9
[PATCH 0/5] btrfs: lz4/lz4hc compression
WARNING: This is not compatible with the previous lz4 patchset. If you''re using experimental compression that isn''t in mainline kernels, be prepared to backup and restore or decompress before upgrading, and have backups in case it eats data (which appears not to be a problem any more, but has been during development). These patches add lz4 and lz4hc compression
2012 Feb 13
10
[RFB] add LZ4 compression method to btrfs
Hi, so here it is, LZ4 compression method inside btrfs. The patchset is based on top of current Chris'' for-linus + Andi''s snappy implementation + the fixes from Li Zefan. Passes xfstests and stresstests. I haven''t measured performance on wide range of hardware or workloads, rather wanted to publish the patches before I get distracted again. I''d like to ask