A short integer is an integer number which may take less storage, while having a smaller range, than a standard integer on the same machine.
8
votes
7answers
170 views
What numeric type to choose for small loop counters? [closed]
Consider that int take 4 bytes in memory.
to understand what I'm looking for take this example :
for(x=0;x<10;x++)
//do something
in this for instruction I know that the value of x is less ...
5
votes
1answer
106 views
Convert a 2D numpy array to C++ short**?
So I am using python to call methods in a shared C++ library. I am having an issue converting a numpy 2D array to a C++ 2D array of shorts as a function input. I have a created a toy example that ...
0
votes
3answers
58 views
Bug in for loop with short primitive in Java?
I've found a very odd thing in Java which seems to be a bug. A for loop doesn't to correctly evaluate the condition for a short value at 32767 (the maximum value, see here). See the example code ...
0
votes
1answer
35 views
Save short array to MySQL db with JDBC?
Title pretty much says everything.
This is what I tried;
Short[] messageObj = new Short[] { 1, 2, 3 };
PreparedStatement stmt = conn.prepareStatement("INSERT INTO table (audioData) VALUES (?)");
...
2
votes
3answers
59 views
Whats wrong with my division?
I have a 16-bits sample between -32768 and 32767.
To save space I want to convert it to a 8-bits sample, so I divide the sample by 256, and add 128.
-32768 / 256 = -128 + 128 = 0
32767 / 256 = ...
0
votes
7answers
108 views
Is `short` the same as `int` in C++?
I've looked at some answers that use short in C#, but I'm not sure if they really answer my question here. Is short in C++ another name for int? I know you can make short int, which seems to be able ...
0
votes
1answer
38 views
C# datatypes in AS3
I'm porting some C# decompression code to AS3, and since it's doing some pretty complex stuff, it's using a range of datatypes such as byte and short. The problem is, AS3 doesn't have those datatypes.
...
-2
votes
1answer
35 views
Python join 2 char into the same short
I would like to do 2 char into a short.
I want to do that (c syntax):
short var = (msg[4:5]<<8) | (msg[5:6])
algo:
ord(msg[4:5) = 105 -> 0b1101001
ord(msg[5:6) = 135 -> 0b10000111
...
0
votes
0answers
24 views
Partial Mixing / overlapping of 2 wave files to get one contiguous wave file - non overlapped portion plays ok, overlapped portion gets loud hiss
I am trying to build a tts processor using c# winforms, I have the basic sounds for a certain language pre-recorded the tts part works fine but there ius a gap of about 50ms in the individual sounds ...
2
votes
1answer
53 views
Why are x and z evaluating differently if “x=(date<<7)>>12” and {y=date<<7;z=y>>12;}?
It is really frustrating.What is the possible reason that (date<<7)>>12 is giving a different result from y>>12 where y is date<<7?.I should add that the latter is working ...
0
votes
3answers
30 views
Short Casting Error in C#
I am trying to get short variables value from my database and need to cast it but it gives an casting error at debugging how can I solve this problem ?Can you help me?
...
-1
votes
1answer
56 views
How can i short a “foreach” so it display only 3 things?
Im trying to display only 3 videos(the 2nd, 3rd and 4th) from my database but I really cant make it work.
I try adding this if ($i++%2==1) { to the code but i doest work
<?php foreach ($articles ...
0
votes
1answer
166 views
Android: Sort List View data
I have some JSON data which I am pulling down from a server. One of the fields in this data is a distance value. I need to have the data sorted by distance from lowest to highest in the ListView. I am ...
2
votes
2answers
74 views
How to change bits inside Short
I have a short-variable in C# and want to change a specific bit. How can I do it the easiest way?
0
votes
1answer
68 views
LPWSTR, wchar_t* and unsigned short pointer in C++
I'm trying to understand if these types are all the same. I have this function from windows.h: GetCommandLine(), in UNICODE mode, and it returns a LPWSTR. Now, if I dig deeper I can see how LPWSTR is ...
0
votes
1answer
71 views
0x378 port address in short int
I have two methods:
short _stdcall Inp32(short portaddr);
void _stdcall Out32(short portaddr, short datum);
These are to access the ports of the ECP Parallel port. The problem is my data ...
-1
votes
1answer
79 views
C++: Bitshifting an unsigned short
I'm trying to save 2 unsigned char into a single unsigned short.
So what I do is save the 1st char, bitshift it then OR with the 2nd char.
Code:
unsigned char a = 8;
unsigned char b = 2;
unsigned ...
0
votes
0answers
15 views
Creating a page of url's that can be changed
I would like to be able to install affiliate links in a document that can be directed to my website, and like a url shortener, forwarded to the site I want readers to go to. But I would like to be ...
0
votes
1answer
59 views
Short to Int conversion
I am looking for a way to convert a Short to an Int. I tried to cast it with
short i = 5;
int t = (int) i;
But this doesn't work. Also in the Short function itself I cannot see something like an ...
0
votes
1answer
85 views
can't copy shorts into dynamic array C++
I've been trying to load a 3d model format into C++, but I'm having a problem with it. Everything goes okay except for the indicies array of shorts... When I try and load one model, the first 2 spaces ...
0
votes
1answer
153 views
Convert Long date to specific short date format
Convert Long date format to specific short date format.
I want to get the Date from Datepicker(Jcalander) , format to dd-mm-yyyy format and assign to String variable. I tried using codes shown below. ...
1
vote
1answer
31 views
Change in the audio samples when reading directly from the file using RandomAcessFile?
Iam trying to draw a graph of a sound file. I am doing in such a way that i take the bytes of the sound file using Fileinputstream and change it to the shorts and take the samples of of the sound and ...
1
vote
1answer
120 views
What's the result of assign a short to a unsigned char in an array?
I got a short value(which can just be limited to a UINT8) and want to assign it to a UINT8(/unsigned char).
But I thought of no better choices, but to do this:
unlatch.FaultBits.Value[0] = ...
-3
votes
3answers
76 views
fraction shortening C++
I need to short fraction :
4/5 * 3/4 = 12/20 , but i need to short it so answer must be: 3/5.
I know that I must to use this function:
int NWD(int m1,int m2){
int d;
...
1
vote
1answer
119 views
What is the 'short' data type in C?
In the following function:
void AddWordData(FILE* dataFile, short word, int* dc)
{
fprintf(dataFile, "%06o\n", word);
++(*dc);
}
the function is getting a short type.
I did some search in ...
0
votes
4answers
872 views
unsigned short vs unsigned int - sometimes they are the same range? [closed]
What's the difference between unsigned short and unsigned int? I found that unsigned short is 0-65,535 and unsigned int is 0-65,535 or 0-4,294,967,295. I don't understand the difference very well. How ...
1
vote
3answers
79 views
What is the difference between signed and normal short
What is the difference between signed and normal short in c++? Is the range is different?
-5
votes
1answer
76 views
python is inexplicably shortening the step size with each iteration of a sliding window analysis
I am working on a program that estimates the statistic Tajima's D in a series of sliding windows across a chromosome. The chromosome itself is also divided into a number of different regions with ...
3
votes
5answers
60 views
Short object creation
I had a look to this post Java instantiate Short object in Java but did not exactly respond to what I am looking for.
Does anybody know why the first line (//1) gives an error whereas the second line ...
0
votes
1answer
37 views
Transform hex to short and long
How can I transform a value like OxFF to short and long types. is there a standard function for this use?
0
votes
2answers
391 views
quick sort an Array of characters (string) C programming
I have a character array
char word[30];
that keeps a word that the user will input and i want to sort the letters
for example if the word is "cat"
i want it to make it a "act"
I suppose is rather ...
-1
votes
1answer
77 views
How to work with left and right bytes of a short int? [closed]
I have a short int, which is 2 bytes, but I only want to output the left byte to a file. How do I do this? I'm using binary functions open(), read(), write(), etc.
I would also like to shift the ...
0
votes
1answer
51 views
Int16 from buffer help (BE)
Alright so here is my issue. I read two bytes from a file.
Lets say those bytes are "FD 37" - That should be: 64823
I am reading in big endian so I tried array reversing little endian and then ...
0
votes
0answers
32 views
mod_rewrite for wordpress and url shortning
I am running on my Domain Wordpress and a shortning Service.
If I use Wordpress Permalinks with /%postname%/ and use my shortning URL service than one of them will not work.
The shortning URL can ...
1
vote
0answers
192 views
Shorten URL with Javascript using JSON
I am trying to short a Link over API and get the result with JSON
Some information about the API
Sample Response
{"error":0,"short":"http:\/\/doma.in\/sf0x6"}
Sample Usage in PHP
...
0
votes
1answer
46 views
Read a list of signed shorts from a binary file using the >> operator
Isn't this possible through the >> operator ?
Sources :
http://en.cppreference.com/w/cpp/io/basic_istream/operator_gtgt
http://www.cplusplus.com/reference/istream/istream/operator%3E%3E/
The value ...
1
vote
1answer
234 views
302 Redirect from http to https in Android using Dropbox short Hyperlinks
I have an app which loads and plays music from cloud storage without problems in normal circumstances, except when it comes to Dropbox short links.
These links use a 302 header to redirect to an https ...
0
votes
1answer
31 views
short narrowing conversion in a method
Hi as this question answered explains: Eclipse bug? When is a short not a short?
It is not legal in method to implicitly narrow convert an int to a short. And that was related to passing an int as an ...
0
votes
1answer
40 views
changing a Char to the short with the same bit structure. (2's complement issue)
I want to Change a Char to the short with the same bit structure.
Both are 16 bits
I understand that short are 2s complement if they were 1s complement I could use
if a < 0 {return (short) ...
2
votes
1answer
88 views
What is the difference between short/byte inside a parameter and inside a block [duplicate]
Possible Duplicate:
Eclipse bug? When is a short not a short?
In Java I can assign a short or a byte inside blocks like this:
short s = 20000;
byte b = 120;
Because 20000 is a short ...
0
votes
2answers
466 views
Precisly convert float 32 to unsigned short or unsigned char
First of all sorry if this is a duplicate, I couldn't find any subject answering my question.
I'm coding a little program that will be used to convert 32-bit floating point values to short int (16 ...
0
votes
1answer
67 views
programatically define a TextView within a LinearLayout in one line
I know this is possible to do in multiple lines like this:
LinearLayout table=new LinearLayout(this);
TextView titleText = new TextView(this);
titleText.setText("Med Info");
...
10
votes
1answer
163 views
Am I doing this correctly?
Before I ask for help, let me tell you what I did:
Assuming I have a sampling rate of 8000Hz and sample size of 16 bits (2 bytes), at the end of the second I need 16000 byte or 8000 short.
Now I ...
0
votes
3answers
182 views
JQuery keydown event changes removed when letting go of key
I am trying to create an auto-suggest box. When a user starts typing in the #tagSelection input field, JQuery fetches suggestions from the database through Ajax and display these in the #suggestBox ...
0
votes
5answers
116 views
Short Vs Int Gcc
I was expecting Loop2 in the following program to take more time compared to Loop1.
But even after enabling optimizations (gcc -O2) I see that both of the loops takes almost same time. Why is that so ...
0
votes
3answers
251 views
How to convert char buffer (with pcm audio data) to short buffer
I have char pAudioBuffer buffer which i got from function ffmpeg:
int len = avcodec_decode_audio3(av_codec_context,
(int16_t *) pAudioBuffer, &out_size, &packet);
I know that ...
1
vote
2answers
221 views
adding number to a QByteArray
i have a QbyteArray named "B2",
and i want to add to this a 2byte number like 300.
but when i do that mybyte.size() become 3byte!!!!
my code is :
i want to it become 2byte.
QByteArray ...
0
votes
0answers
187 views
Input Value - jQuery Copy Text
I am trying to add to an Input some value but getting Problem with it. Ok will start here
A Script should shorten the Link of the current Page (this is OK)
{php}$shortenedurl = ...
0
votes
0answers
193 views
Developer tools cause a freeze in google chrome
I have just installed Google Chrome and started to check my web application. Since I have a bug either in HTML or in Javascript I set a breakpoint in the function to be called ... or at least I think ...
0
votes
3answers
60 views
2-D and 1-D arrays
First of all, here's the code:
public class Test{
public static void main(String args[]){
short[][] b = new short[4][4];
short[][] big = new short[2][2];
short b3 = 8;
short b2 ...






