Searched defs:input (Results 76 - 100 of 1709) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/builtins/
H A Dashrti3.c27 twords input; local
29 input.all = a;
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dlshrti3.c27 utwords input; local
29 input.all = a;
33 result.s.low = input.s.high >> (b - bits_in_dword);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
/external/compiler-rt/test/builtins/Unit/ppc/
H A Dfloatditf_test.h2 uint64_t input; member in struct:testCase
[all...]
H A Dfloatunditf_test.h2 uint64_t input; member in struct:testCase
[all...]
/external/deqp/framework/delibs/destream/
H A DdeStreamCpyThread.h34 deInStream* input; member in struct:deStreamCpyThread_s
40 deStreamCpyThread* deStreamCpyThread_create (deInStream* input, deOutStream* output, deInt32 bufferSize);
/external/iproute2/tc/
H A Demp_ematch.y34 %start input
36 input: label
/external/libcxx/test/localization/locale.categories/
H A D__scan_keyword.pass.cpp19 // If one keyword is a prefix of another, and the next CharT in the input
29 // If the input is "a", the first keyword matches and eofbit is set.
30 // If the input is "abc", no match is found and "ab" are consumed.
47 const char input[] = "a"; local
48 const char* in = input;
51 std::string* k = std::__scan_keyword(in, input+sizeof(input)-1,
55 assert(in == input+1);
59 const char input[] = "abc"; local
60 const char* in = input;
71 const char input[] = "abb"; local
83 const char input[] = "Tue "; local
95 const char input[] = "tue "; local
107 const char input[] = "tue "; local
[all...]
/external/libvpx/libvpx/vp8/common/mips/dspr2/
H A Ddequantize_dspr2.c17 void vp8_dequant_idct_add_dspr2(short *input, short *dq, argument
24 input[i] = dq[i] * input[i];
27 vp8_short_idct4x4llm_dspr2(input, dest, stride, dest, stride);
29 vpx_memset(input, 0, 32);
/external/smali/smali/src/main/java/org/jf/smali/
H A DOdexedInstructionException.java37 OdexedInstructionException(IntStream input, String odexedInstruction) { argument
38 super(input);
/external/stlport/test/unit/
H A Dneq_test.cpp33 int input [3] = { 1, 2, 3 }; local
36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DgUnitTestInput.java30 /** A class which contains input information of an individual testuite */
32 public String input; // a test input string for a testsuite field in class:gUnitTestInput
33 public boolean isFile; // if true, the input represents a filename
36 public gUnitTestInput(String input, boolean isFile, int line) { argument
37 this.input = input;
43 return JUnitCodeGen.escapeForJava(input);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRInputStream.cs45 public ANTLRInputStream(Stream input) argument
46 : this(input, null) {
49 public ANTLRInputStream(Stream input, int size) argument
50 : this(input, size, null) {
53 public ANTLRInputStream(Stream input, Encoding encoding) argument
54 : this(input, InitialBufferSize, encoding) {
57 public ANTLRInputStream(Stream input, int size, Encoding encoding) argument
58 : this(input, size, ReadBufferSize, encoding) {
61 public ANTLRInputStream(Stream input, int size, int readBufferSize, Encoding encoding) argument
62 : base(GetStreamReader(input, encodin
65 GetStreamReader(Stream input, Encoding encoding) argument
[all...]
H A DMismatchedNotSetException.cs51 public MismatchedNotSetException(BitSet expecting, IIntStream input) argument
52 : base(expecting, input) {
55 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) argument
56 : base(message, expecting, input) {
59 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
60 : base(message, expecting, input, innerException) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DANTLRInputStream.cs47 public ANTLRInputStream( Stream input )
48 : this( input, null )
52 public ANTLRInputStream( Stream input, int size ) argument
53 : this( input, size, null )
57 public ANTLRInputStream( Stream input, Encoding encoding ) argument
58 : this( input, InitialBufferSize, encoding )
62 public ANTLRInputStream( Stream input, int size, Encoding encoding ) argument
63 : this( input, size, ReadBufferSize, encoding )
67 public ANTLRInputStream( Stream input, int size, int readBufferSize, Encoding encoding ) argument
68 : base(GetStreamReader(input, encodin
72 GetStreamReader(Stream input, Encoding encoding) argument
[all...]
H A DMismatchedNotSetException.cs56 public MismatchedNotSetException(BitSet expecting, IIntStream input) argument
57 : base(expecting, input)
61 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) argument
62 : base(message, expecting, input)
66 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
67 : base(message, expecting, input, innerException)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DTracer.cs47 public IIntStream input; field in class:Antlr.Runtime.Debug.Tracer
50 public Tracer( IIntStream input )
52 this.input = input;
77 if ( input is ITokenStream )
79 return ( (ITokenStream)input ).LT( k );
81 return (char)input.LA( k );
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRInputStream.java39 public ANTLRInputStream(InputStream input) throws IOException { argument
40 this(input, null);
43 public ANTLRInputStream(InputStream input, int size) throws IOException { argument
44 this(input, size, null);
47 public ANTLRInputStream(InputStream input, String encoding) throws IOException { argument
48 this(input, INITIAL_BUFFER_SIZE, encoding);
51 public ANTLRInputStream(InputStream input, int size, String encoding) throws IOException { argument
52 this(input, size, READ_BUFFER_SIZE, encoding);
55 public ANTLRInputStream(InputStream input, argument
63 isr = new InputStreamReader(input, encodin
[all...]
H A DFailedPredicateException.java42 public FailedPredicateException(IntStream input, argument
46 super(input);
H A DMismatchedRangeException.java36 public MismatchedRangeException(int a, int b, IntStream input) { argument
37 super(input);
H A DMissingTokenException.java38 public MissingTokenException(int expecting, IntStream input, Object inserted) { argument
39 super(expecting, input);
H A DNoViableAltException.java41 IntStream input)
43 super(input);
50 if ( input instanceof CharStream ) {
38 NoViableAltException(String grammarDecisionDescription, int decisionNumber, int stateNumber, IntStream input) argument
H A DUnwantedTokenException.java35 public UnwantedTokenException(int expecting, IntStream input) { argument
36 super(expecting, input);
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRecognitionException.h35 id<ANTLRIntStream> input; variable
44 @property (retain, getter=getStream, setter=setStream:) id<ANTLRIntStream> input; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRecognitionException.h35 id<ANTLRIntStream> input; variable
44 @property (retain, getter=getStream, setter=setStream:) id<ANTLRIntStream> input; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRecognitionException.h35 id<ANTLRIntStream> input; variable
44 @property (retain, getter=getStream, setter=setStream:) id<ANTLRIntStream> input; variable

Completed in 2603 milliseconds

1234567891011>>