/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/platform/ |
OSMemoryTest.java | 127 short[] values = { 0x0001, 0x0020, 0x0300, 0x4000 }; 128 short[] swappedValues = { 0x0100, 0x2000, 0x0003, 0x0040 }; 154 private void assertShortsEqual(short[] expectedValues, int ptr) { 161 private static short swapShort(short n) { 162 return (short) ((((n >> 0) & 0xff) << 8) | (((n >> 8) & 0xff) << 0));
|
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/ |
DirectShortBufferTest.java | 49 args = {short[].class, int.class, int.class} 56 short[] source = { 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }; 133 short[] myShorts = new short[BUFFER_LENGTH]; 135 for (short i = 0; i < BUFFER_LENGTH; i++) { 136 myShorts[i] = (short) (1000 + i);
|
/external/icu4c/tools/toolutil/ |
uoptions.h | 86 * Each UOption defines a long and a short name (a string and a character) 91 * the same argv[] entry for short options, or it may always follow 94 * An argument is in the next argv[] entry for both long and short name 95 * options, except it is taken from directly behind the short name in 99 * argument format if it is part of the short name options's argv[] entry. 105 * Short name options without arguments can be collapsed into a single
|
/external/kernel-headers/original/linux/ |
sem.h | 31 unsigned short sem_nsems; /* no. of semaphores in array */ 39 unsigned short sem_num; /* semaphore index in array */ 40 short sem_op; /* semaphore operation */ 41 short sem_flg; /* operation flags */ 48 unsigned short __user *array; /* array for GETALL & SETALL */ 125 short * semadj; /* array of adjustments, one per semaphore */
|
/external/qemu/distrib/sdl-1.2.12/src/cdrom/macos/ |
SDL_syscdrom_c.h | 101 short qType; 102 short ioTrap; 107 short ioVRefNum; 108 short ioCRefNum; 109 short csCode; 113 short words[11];
|
/external/srec/srec/include/ |
pre_desc.h | 52 unsigned short sigma; 54 short *pdf; 63 unsigned short num_dev8_index; 65 unsigned short *wt_index; 66 short *gauss_dist_table; 67 short **dist_ptr;
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-57572.js | 61 string = 'Stupid phrase, with six - (short) words'; 63 expectedmatch = Array(string, 'Stupid', ' phrase, with six - (short) words'); //single space in front of 'phrase' 68 string = 'Stupid phrase, with six - (short) words'; 70 expectedmatch = Array(string, 'Stupid', 'phrase, with six - (short) words'); //NO space in front of 'phrase' 77 string = 'Stupid phrase, with six - (short) words'; 79 expectedmatch = Array(string, 'Stupid', cnSingleSpace, 'phrase, with six - (short) words');
|
/external/webkit/JavaScriptCore/wtf/ |
TypeTraits.cpp | 33 COMPILE_ASSERT(IsInteger<short>::value, WTF_IsInteger_short_true); 34 COMPILE_ASSERT(IsInteger<unsigned short>::value, WTF_IsInteger_unsigned_short_true); 54 COMPILE_ASSERT(IsPod<short>::value, WTF_IsPod_short_true); 55 COMPILE_ASSERT(IsPod<unsigned short>::value, WTF_IsPod_unsigned_short_true); 79 COMPILE_ASSERT(IsConvertibleToInteger<short>::value, WTF_IsConvertibleToInteger_short_true); 80 COMPILE_ASSERT(IsConvertibleToInteger<unsigned short>::value, WTF_IsConvertibleToInteger_unsigned_short_true);
|
/frameworks/base/awt/java/awt/image/ |
DataBufferByte.java | 38 * Instantiates a new data buffer of type unsigned short. 54 * Instantiates a new data buffer of type unsigned short. 67 * Instantiates a new data buffer of type unsigned short with a single 84 * Instantiates a new data buffer of type unsigned short with a single 99 * Instantiates a new empty data buffer of type unsigned short with offsets 117 * Instantiates a new empty data buffer of type unsigned short with a single
|
/packages/apps/Mms/src/com/android/mms/dom/smil/ |
SmilDocumentImpl.java | 86 public short getFill() { 90 public short getFillDefault() { 102 public short getRestart() { 130 public void setFill(short fill) throws DOMException { 134 public void setFillDefault(short fillDefault) throws DOMException { 146 public void setRestart(short restart) throws DOMException {
|
SmilParElementImpl.java | 154 public short getFill() { 158 public short getFillDefault() { 170 public short getRestart() { 198 public void setFill(short fill) throws DOMException { 202 public void setFillDefault(short fillDefault) throws DOMException { 214 public void setRestart(short restart) throws DOMException {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/ |
DeclareStyleableInfo.java | 30 /** Short javadoc. Can be null. */ 58 /** Short javadoc (i.e. the first sentence). */ 77 * @param javadoc Short javadoc (i.e. the first sentence). 111 /** Returns a short javadoc, .i.e. the first sentence. */ 128 /** Sets a short javadoc, .i.e. the first sentence. */ 167 /** Returns a short javadoc */
|
ViewClassInfo.java | 31 /** Short class name, e.g. View, never null. */ 35 /** Short javadoc. Can be null. */ 41 /** Short class name, e.g. LayoutData, never null. */ 58 /** Returns short class name, e.g. "LayoutData" */ 103 /** Returns short class name, e.g. "View" */ 113 /** Returns a short javadoc */
|
/external/qemu/distrib/zlib-1.2.3/ |
inftrees.c | 34 unsigned short FAR *lens; 38 unsigned short FAR *work; 55 const unsigned short FAR *base; /* base value table to use */ 56 const unsigned short FAR *extra; /* extra bits table to use */ 58 unsigned short count[MAXBITS+1]; /* number of codes of each length */ 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ 60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ 63 static const unsigned short lext[31] = { /* Length codes 257..285 extra */ 66 static const unsigned short dbase[32] = { /* Distance codes 0..29 base */ 70 static const unsigned short dext[32] = { /* Distance codes 0..29 extra * [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
eap_gpsk.c | 269 wpa_printf(MSG_DEBUG, "EAP-GPSK: Too short message for " 277 wpa_printf(MSG_DEBUG, "EAP-GPSK: Too short message for " 296 wpa_printf(MSG_DEBUG, "EAP-GPSK: Too short message for " 304 wpa_printf(MSG_DEBUG, "EAP-GPSK: Too short message for " 319 wpa_printf(MSG_DEBUG, "EAP-GPSK: Too short message for " 330 wpa_printf(MSG_DEBUG, "EAP-GPSK: Too short message for " 348 wpa_printf(MSG_DEBUG, "EAP-GPSK: Too short message for " 356 wpa_printf(MSG_DEBUG, "EAP-GPSK: Too short message for " 371 wpa_printf(MSG_DEBUG, "EAP-GPSK: Too short message for " 397 wpa_printf(MSG_DEBUG, "EAP-GPSK: Too short message for [all...] |
/external/zlib/ |
inftrees.c | 34 unsigned short FAR *lens; 38 unsigned short FAR *work; 55 const unsigned short FAR *base; /* base value table to use */ 56 const unsigned short FAR *extra; /* extra bits table to use */ 58 unsigned short count[MAXBITS+1]; /* number of codes of each length */ 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ 60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ 63 static const unsigned short lext[31] = { /* Length codes 257..285 extra */ 66 static const unsigned short dbase[32] = { /* Distance codes 0..29 base */ 70 static const unsigned short dext[32] = { /* Distance codes 0..29 extra * [all...] |
/dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
ArraysTest.java | 64 short[] shortArray; 358 * @tests java.util.Arrays#binarySearch(short[], short) 364 args = {short[].class, short.class} 367 // Test for method int java.util.Arrays.binarySearch(short [], short) 368 for (short counter = 0; counter < arraySize; counter++) 369 assertTrue("Binary search on short[] answered incorrect position", 372 -1, Arrays.binarySearch(intArray, (short) -1)) [all...] |
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
DateFormatTest.java | 117 DateFormat.SHORT, DateFormat.SHORT, Locale.US); 141 DateFormat.SHORT, DateFormat.SHORT, Locale.US); 193 DateFormat f1 = DateFormat.getDateTimeInstance(DateFormat.SHORT, 194 DateFormat.SHORT, locales[i]); 252 .getDateInstance(DateFormat.SHORT); 255 DateFormat.SHORT, Locale.getDefault()))); 308 DateFormat.SHORT, Locale.GERMAN); 395 testDateTime(DateFormat.SHORT, DateFormat.SHORT) [all...] |
/external/grub/netboot/ |
3c595.c | 33 static unsigned short eth_nic_base, eth_asic_base; 34 static unsigned short vx_connector, vx_connectors; 184 * The 3c595 automatically pads short packets to minimum ethernet length, 231 unsigned short type = 0; /* used by EDEBUG */ 233 short status, cst; 234 register short rx_fifo; 387 static short prev_flags; 453 struct nic *t595_probe(struct nic *nic, unsigned short *probeaddrs, struct pci_device *pci) 456 unsigned short *p; 479 p = (unsigned short *) nic->node_addr [all...] |
/frameworks/base/awt/org/apache/harmony/awt/gl/color/ |
ColorScaler.java | 257 * Scales the whole raster to short and returns the result 262 public short[] scale(Raster r) { 265 short result[] = new short[width*height*nColorChannels]; 275 (short) (sample * channelMulipliers[chan] + 0.5f); 285 result[pos++] = (short) ((sample - channelMinValues[chan]) 299 public void unscale(short[] data, WritableRaster wr) { 335 public void scale(float[] pixelData, short[] chanData, int chanDataOffset) { 338 (short) ((pixelData[chan] - channelMinValues[chan]) * 349 public void unscale(float[] pixelData, short[] chanData, int chanDataOffset) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/gem/ |
SDL_gemvideo.c | 99 static void GEM_ClearRect(_THIS, short *rect); 103 static void refresh_window(_THIS, int winhandle, short *rect); 216 static void VDI_ReadExtInfo(_THIS, short *work_out) 262 unsigned short *tmp_p; 265 tmp_p = (unsigned short *) &work_out[16]; 268 unsigned short valeur; 307 short work_in[12], work_out[272], dummy; 318 short ap_gout[4], errorcode; 395 short rgb[3]; 503 static void GEM_ClearRect(_THIS, short *rect [all...] |
/external/srec/srec/EventLog/src/ |
riff.c | 61 char *cb, short **samples, int *length, int doSwap); 64 char *cb, short **samples, int *length, int doSwap); 66 char *cb, short **samples, int *length, int doSwap); 68 char *cb, short **samples, int *length, int doSwap); 97 static void swapShort(short *s) 120 static short swapConstShort(const short value) 122 short converted = value; 134 static void short_byte_swap(short *buf, int len) 219 char *cb, short **samples, int *length, int doSwap [all...] |
/packages/inputmethods/LatinIME/java/res/values/ |
strings.xml | 165 <!-- Label for soft enter key when it performs GO action. Must be short to fit on key! --> 167 <!-- Label for soft enter key when it performs NEXT action. Must be short to fit on key! --> 169 <!-- Label for soft enter key when it performs DONE action. Must be short to fit on key! --> 171 <!-- Label for soft enter key when it performs SEND action. Must be short to fit on key! --> 173 <!-- Label for "switch to symbols" key. Must be short to fit on key! --> 175 <!-- Label for "switch to numeric" key. Must be short to fit on key! --> 177 <!-- Label for "switch to alphabetic" key. Must be short to fit on key! --> 179 <!-- Label for ALT modifier key. Must be short to fit on key! --> 205 <!-- Short message to tell the user the system is ready for them to speak. --> 208 <!-- Short message shown after the user finishes speaking. -- [all...] |
/external/webkit/WebCore/platform/graphics/opentype/ |
OpenTypeUtilities.cpp | 35 operator unsigned short() const { return (v & 0x00ff) << 8 | v >> 8; } 36 BigEndianUShort(unsigned short u) : v((u & 0x00ff) << 8 | u >> 8) { } 37 unsigned short v; 57 unsigned short fsType; 58 unsigned short magicNumber; 63 unsigned short padding1; 175 void EOTHeader::appendBigEndianString(const BigEndianUShort* string, unsigned short length) 178 m_buffer.resize(oldSize + length + 2 * sizeof(unsigned short)); 190 unsigned short padding = 0; 222 unsigned short familyNameLength = 0 [all...] |
/external/zlib/contrib/infback9/ |
inftree9.c | 34 unsigned short FAR *lens; 38 unsigned short FAR *work; 55 const unsigned short FAR *base; /* base value table to use */ 56 const unsigned short FAR *extra; /* extra bits table to use */ 58 unsigned short count[MAXBITS+1]; /* number of codes of each length */ 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ 60 static const unsigned short lbase[31] = { /* Length codes 257..285 base */ 64 static const unsigned short lext[31] = { /* Length codes 257..285 extra */ 68 static const unsigned short dbase[32] = { /* Distance codes 0..31 base */ 72 static const unsigned short dext[32] = { /* Distance codes 0..31 extra * [all...] |