Searched refs:input (Results 1 - 25 of 3771) sorted by relevance

1234567891011>>

/external/lldb/test/python_api/module_section/
H A Db.cpp1 int b_function(int input) { argument
2 return input * 2;
H A Dc.cpp1 int c_function(int input) { argument
2 return input * 3;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/
H A Ddct_arm.c16 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch) argument
18 vp8_short_fdct4x4_armv6(input, output, pitch);
19 vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
/external/libvpx/libvpx/vp8/encoder/arm/
H A Ddct_arm.c16 void vp8_short_fdct8x4_armv6(short *input, short *output, int pitch) argument
18 vp8_short_fdct4x4_armv6(input, output, pitch);
19 vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
H A Dntohs.c12 uint8_t input[2]; local
13 memcpy(input, &networkshort, 2);
15 return ((((uint32_t) input[0]) << 8) |
16 ((uint32_t) input[1]));
H A Dntohl.c12 uint8_t input[4]; local
13 memcpy(input, &networklong, 4);
15 return ((((uint32_t) input[0]) << 24) |
16 (((uint32_t) input[1]) << 16) |
17 (((uint32_t) input[2]) << 8) |
18 ((uint32_t) input[3]));
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dswap_bytes.c26 const uint16_t* input, /* (i) the sequence to swap */
32 *output++ = (*input >> 8)|(*input << 8);
33 input++;
25 WebRtcIlbcfix_SwapBytes( const uint16_t* input, int16_t wordLength, uint16_t* output ) argument
/external/compiler-rt/test/asan/TestCases/Helpers/
H A Dinit-order-pthread-create-extra.cc1 void *bar(void *input);
/external/lldb/test/lang/c/inlines/
H A Dinlines.h3 int not_inlined_2 (int input);
4 int not_inlined_1 (int input);
/external/lldb/test/python_api/frame/inlines/
H A Dinlines.h3 int not_inlined_2 (int input);
4 int not_inlined_1 (int input);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DthemeChromium.css33 input:disabled, textarea:disabled {
/external/clang/test/Sema/
H A Dformat-strings-enum.c19 void test(TestEnum input) { argument
20 printf("%d", input); // no-warning
23 printf("%lld", input); // expected-warning-re{{format specifies type 'long long' but the argument has underlying type '{{(unsigned)?}} int'}}
30 void testLong(LongEnum input) { argument
31 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has underlying type}}
34 printf("%lu", input);
H A Dformat-strings-enum-fixed-type.cpp18 void test(TestEnum input) { argument
19 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has underlying type 'short'}}
22 printf("%hd", input); // no-warning
26 printf("%d", input); // no-warning
29 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has underlying type 'short'}}
36 void testLong(LongEnum input) { argument
37 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has underlying type 'unsigned long'}}
40 printf("%lu", input);
48 void testUnderlyingTypedef(ShortEnum input) { argument
49 printf("%hhd", input); // expecte
66 testTypedefChain(ShortEnum2 input) argument
78 testChar(CharEnum input) argument
[all...]
/external/qemu/android/utils/
H A Dlineinput.h21 /* A LineInput is used to read input text, one line at a time,
29 /* Read next line from input. The result is zero-terminated with
38 const char* lineInput_getLine( LineInput* input );
43 const char* lineInput_getLineAndSize( LineInput* input, size_t *pSize );
46 int lineInput_getLineNumber( LineInput* input );
49 int lineInput_isEof( LineInput* input );
55 int lineInput_getError( LineInput* input );
58 void lineInput_free( LineInput* input );
H A Dlineinput.c41 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;
85 lineInput_getLineAndSize( LineInput* input, size_t *pSize ) argument
174 _lineInput_getLineFromStdFile( LineInput* input, FILE* file ) argument
[all...]
/external/valgrind/main/memcheck/tests/s390x/
H A Dcu42.c8 /* Define various input buffers. */
68 uint8_t *input; local
71 input = malloc(10);
72 do_cu42(buf, sizeof buf, (void *)input, 4); // complaint
74 /* Read 4 bytes from input buffer. First byte is uninitialised */
75 input = malloc(10);
76 input[1] = input[2] = input[3] = 0x0;
77 do_cu42(buf, sizeof buf, (void *)input,
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DParser.java36 public TokenStream input; field in class:Parser
38 public Parser(TokenStream input) { argument
40 setTokenStream(input);
43 public Parser(TokenStream input, RecognizerSharedState state) { argument
45 this.input = input;
50 if ( input!=null ) {
51 input.seek(0); // rewind the input
55 protected Object getCurrentInputSymbol(IntStream input) { argument
59 getMissingSymbol(IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) argument
80 setTokenStream(TokenStream input) argument
[all...]
/external/clang/lib/Basic/
H A DVersionTuple.cpp38 static bool parseInt(StringRef &input, unsigned &value) { argument
40 if (input.empty()) return true;
42 char next = input[0];
43 input = input.substr(1);
47 while (!input.empty()) {
48 next = input[0];
50 input = input.substr(1);
57 bool VersionTuple::tryParse(StringRef input) { argument
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3filestream.c3 * is a filesystem based input set and all the characters in the filestream
7 * sets can be supported from input files. The ANTLR3 C runtime expects
49 static void setupInputStream (pANTLR3_INPUT_STREAM input);
56 pANTLR3_INPUT_STREAM input; local
63 input = antlr3CreateFileStream(fileName);
64 if (input == NULL)
72 input->encoding = encoding;
77 setupInputStream(input);
81 input->istream->streamName = input
91 pANTLR3_INPUT_STREAM input; local
130 setupInputStream(pANTLR3_INPUT_STREAM input) argument
312 pANTLR3_INPUT_STREAM input; local
353 antlr3read8Bit(pANTLR3_INPUT_STREAM input, pANTLR3_UINT8 fileName) argument
446 pANTLR3_INPUT_STREAM input; local
[all...]
/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...]
/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...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DTestCase.java32 private ITestCaseInput input; field in class:TestCase
45 return this.input;
52 public TestCase(ITestCaseInput input, ITestCaseOutput output) { argument
53 this.input = input;
59 return String.format("[%s]->[%s]", input.getScript(), output.getScript());
63 this.input = in;
70 public static String convertPreservedChars(String input) { argument
71 //return input.replace("\"", "\\\"");
72 return input;
[all...]
/external/apache-http/src/org/apache/http/conn/util/
H A DInetAddressUtils.java61 public static boolean isIPv4Address(final String input) { argument
62 return IPV4_PATTERN.matcher(input).matches();
65 public static boolean isIPv6StdAddress(final String input) { argument
66 return IPV6_STD_PATTERN.matcher(input).matches();
69 public static boolean isIPv6HexCompressedAddress(final String input) { argument
70 return IPV6_HEX_COMPRESSED_PATTERN.matcher(input).matches();
73 public static boolean isIPv6Address(final String input) { argument
74 return isIPv6StdAddress(input) || isIPv6HexCompressedAddress(input);
/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/chromium_org/third_party/libvpx/source/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);

Completed in 1199 milliseconds

1234567891011>>