/frameworks/base/media/libeffects/lvm/lib/Common/src/ |
Abs_32.c | 26 * Input : Signed 32-bit integer 33 LVM_INT32 Abs_32(LVM_INT32 input) 35 if(input < 0) 37 if (input == (LVM_INT32)(0x80000000U)) 40 input=(LVM_INT32) 0x7fffffff; 44 /* Negative input, so invert */ 45 input = (LVM_INT32)(-input); 48 return input;
|
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/ |
Ease.java | 28 public float getInterpolation(float input) { 29 return input; 36 public float getInterpolation(float input) { 37 return DOMAIN*(input/=DURATION)*input*input + START; 41 public float getInterpolation(float input) { 42 return DOMAIN*((input=input/DURATION-1)*input*input + 1) + START [all...] |
/external/libvpx/vp8/encoder/arm/ |
dct_arm.c | 16 void vp8_fast_fdct8x4_armv6(short *input, short *output, int pitch) 18 vp8_fast_fdct4x4_armv6(input, output, pitch); 19 vp8_fast_fdct4x4_armv6(input + 4, output + 16, pitch);
|
/frameworks/base/core/java/android/animation/ |
TimeInterpolator.java | 30 * @param input A value between 0 and 1.0 indicating our current point 37 float getInterpolation(float input);
|
/libcore/luni/src/main/java/java/net/ |
IDN.java | 49 * <p>If the transformation fails (because the input is not a valid IDN), an 57 * @param input the Unicode name 61 * @throws IllegalArgumentException if {@code input} does not conform to <a href="http://www.ietf.org/rfc/rfc3490.txt">RFC 3490</a> 63 public static String toASCII(String input, int flags) { 64 return NativeIDN.toASCII(input, flags); 68 * Equivalent to {@code toASCII(input, 0)}. 70 * @param input the Unicode name 72 * @throws IllegalArgumentException if {@code input} does not conform to <a href="http://www.ietf.org/rfc/rfc3490.txt">RFC 3490</a> 74 public static String toASCII(String input) { 75 return toASCII(input, 0) [all...] |
URISyntaxException.java | 28 private String input; field in class:URISyntaxException 37 * @param input 44 * if one of the arguments {@code input} or {@code reason} is 49 public URISyntaxException(String input, String reason, int index) { 52 if (input == null || reason == null) { 60 this.input = input; 68 *@param input 73 * if one of the arguments {@code input} or {@code reason} is 76 public URISyntaxException(String input, String reason) [all...] |
/external/qemu/android/utils/ |
lineinput.h | 17 /* A LineInput is used to read input text, one line at a time, 25 /* Read next line from input. The result is zero-terminated with 34 const char* lineInput_getLine( LineInput* input ); 39 const char* lineInput_getLineAndSize( LineInput* input, size_t *pSize ); 42 int lineInput_getLineNumber( LineInput* input ); 45 int lineInput_isEof( LineInput* input ); 51 int lineInput_getError( LineInput* input ); 54 void lineInput_free( LineInput* input );
|
lineinput.c | 41 LineInput* input; local 43 ANEW0(input); 44 input->line = input->line0; 45 input->line_size = sizeof(input->line0); 47 return input; 54 LineInput* input = _lineInput_new(); local 56 input->std.file = file; 57 return input; [all...] |
/dalvik/tools/dmtracedump/ |
dmtracedump.pl | 8 $input = $_; 9 $input =~ s/\.data$//; 11 $output = "$input.html"; 13 print("dmtracedump -h -p $input > $output\n"); 14 system("dmtracedump -h -p '$input' > '$output'");
|
/external/antlr/src/org/antlr/runtime/ |
Parser.java | 34 public TokenStream input; field in class:Parser 36 public Parser(TokenStream input) { 38 setTokenStream(input); 41 public Parser(TokenStream input, RecognizerSharedState state) { 43 this.input = input; 48 if ( input!=null ) { 49 input.seek(0); // rewind the input 53 protected Object getCurrentInputSymbol(IntStream input) { [all...] |
EarlyExitException.java | 37 public EarlyExitException(int decisionNumber, IntStream input) { 38 super(input);
|
ANTLRInputStream.java | 39 public ANTLRInputStream(InputStream input) throws IOException { 40 this(input, null); 43 public ANTLRInputStream(InputStream input, int size) throws IOException { 44 this(input, size, null); 47 public ANTLRInputStream(InputStream input, String encoding) throws IOException { 48 this(input, INITIAL_BUFFER_SIZE, encoding); 51 public ANTLRInputStream(InputStream input, int size, String encoding) throws IOException { 52 this(input, size, READ_BUFFER_SIZE, encoding); 55 public ANTLRInputStream(InputStream input, 63 isr = new InputStreamReader(input, encoding) [all...] |
/external/apache-http/src/org/apache/http/conn/util/ |
InetAddressUtils.java | 56 public static boolean isIPv4Address(final String input) { 57 return IPV4_PATTERN.matcher(input).matches(); 60 public static boolean isIPv6StdAddress(final String input) { 61 return IPV6_STD_PATTERN.matcher(input).matches(); 64 public static boolean isIPv6HexCompressedAddress(final String input) { 65 return IPV6_HEX_COMPRESSED_PATTERN.matcher(input).matches(); 68 public static boolean isIPv6Address(final String input) { 69 return isIPv6StdAddress(input) || isIPv6HexCompressedAddress(input);
|
/packages/apps/Email/emailcommon/src/org/apache/commons/io/input/ |
DemuxInputStream.java | 17 package org.apache.commons.io.input;
37 * @param input the stream to bind
40 public InputStream bindStream( InputStream input )
43 m_streams.set( input );
56 InputStream input = getStream();
local 57 if( null != input )
59 input.close();
73 InputStream input = getStream();
local 74 if( null != input )
76 return input.read(); [all...] |
/external/webkit/Source/WebCore/css/ |
themeWin.css | 35 input:not([type]), 36 input[type="color"], 37 input[type="date"], 38 input[type="datetime"], 39 input[type="datetime-local"], 40 input[type="email"], 41 input[type="month"], 42 input[type="number"], 43 input[type="password"], 44 input[type="tel"] [all...] |
/external/qemu/ |
feature_to_c.sh | 35 for input; do 36 arrayname=xml_feature_`echo $input | sed 's,.*/,,; s/[-.]/_/g'` 62 }' < $input >> $output 69 for input; do 70 basename=`echo $input | sed 's,.*/,,'` 71 arrayname=xml_feature_`echo $input | sed 's,.*/,,; s/[-.]/_/g'`
|
/external/antlr/src/org/antlr/runtime/tree/ |
TreeParser.java | 49 protected TreeNodeStream input; field in class:TreeParser 51 public TreeParser(TreeNodeStream input) { 53 setTreeNodeStream(input); 56 public TreeParser(TreeNodeStream input, RecognizerSharedState state) { 58 setTreeNodeStream(input); 63 if ( input!=null ) { 64 input.seek(0); // rewind the input 68 /** Set the input stream */ 69 public void setTreeNodeStream(TreeNodeStream input) { [all...] |
/external/icu4c/i18n/ |
csrucode.cpp | 33 const uint8_t *input = textIn->fRawInput; local 35 if (input[0] == 0xFE && input[1] == 0xFF) { 55 const uint8_t *input = textIn->fRawInput; local 57 if (input[0] == 0xFF && input[1] == 0xFE && (input[2] != 0x00 || input[3] != 0x00)) { 72 const uint8_t *input = textIn->fRawInput; local 79 if (getChar(input, 0) == 0x0000FEFFUL) [all...] |
/development/ndk/samples/hello-neon/jni/ |
helloneon-intrinsics.h | 20 void fir_filter_neon_intrinsics(short *output, const short* input, const short* kernel, int width, int kernelSize);
|
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/ |
ASCCharsetTest.java | 41 String input = "ab\u5D14\u654F"; local 45 internalTestEncode(input, output); 54 byte[] input = new byte[] { 97, 98, 63, 63 }; 56 internalTestDecode(input, output);
|
ISOCharsetTest.java | 40 String input = "ab\u5D14\u654F"; local 44 internalTestEncode(input, output); 53 byte[] input = new byte[] { 97, 98, 63, 63 }; 55 internalTestDecode(input, output);
|
UTF16BECharsetTest.java | 38 String input = "ab\u5D14\u654F"; local 40 internalTestEncode(input, output); 49 byte[] input = new byte[] { 0, 97, 0, 98, 93, 20, 101, 79 }; 51 internalTestDecode(input, output);
|
UTF16LECharsetTest.java | 38 String input = "ab\u5D14\u654F"; local 40 internalTestEncode(input, output); 49 byte[] input = new byte[] { 97, 0, 98, 0, 20, 93, 79, 101 }; 51 internalTestDecode(input, output);
|
/external/antlr/src/org/antlr/runtime/debug/ |
DebugTokenStream.java | 36 public TokenStream input; field in class:DebugTokenStream 42 public DebugTokenStream(TokenStream input, DebugEventListener dbg) { 43 this.input = input; 47 input.LT(1); 58 int a = input.index(); 59 Token t = input.LT(1); 60 input.consume(); 61 int b = input.index(); 66 dbg.consumeHiddenToken(input.get(i)) [all...] |
/frameworks/compile/libbcc/runtime/lib/ |
ashrdi3.c | 25 dwords input; local 27 input.all = a; 30 /* result.s.high = input.s.high < 0 ? -1 : 0 */ 31 result.s.high = input.s.high >> (bits_in_word - 1); 32 result.s.low = input.s.high >> (b - bits_in_word); 38 result.s.high = input.s.high >> b; 39 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
|