Searched defs:input (Results 26 - 50 of 900) sorted by relevance

1234567891011>>

/external/chromium/base/
H A Dsha1_unittest.cc14 std::string input = "abc"; local
22 std::string output = base::SHA1HashString(input);
29 std::string input = local
38 std::string output = base::SHA1HashString(input);
45 std::string input(1000000, 'a');
53 std::string output = base::SHA1HashString(input);
60 std::string input = "abc"; local
69 base::SHA1HashBytes(reinterpret_cast<const unsigned char*>(input.c_str()),
70 input.length(), output);
77 std::string input local
[all...]
H A Dstring_tokenizer_unittest.cc15 string input = "this is a test"; local
16 StringTokenizer t(input, " ");
34 string input = "this is a test"; local
35 StringTokenizer t(input, " ");
56 string input = "this is a test"; local
57 StringTokenizer t(input, " ");
85 string input = "this: is, a-test"; local
86 StringTokenizer t(input, ": ,-");
104 string input = "Content-Type: text/html ; charset=UTF-8"; local
105 StringTokenizer t(input, "
153 string input = "foo bar 'hello world' baz"; local
173 string input = "bar 'hello wo"; local
187 string input = "bar 'hel\\"lo\\" wo' baz\\""; local
204 string input = "foo 'don\\\\'t do that'"; local
218 string input = "foo='a, b', bar"; local
[all...]
/external/compiler-rt/lib/
H A Dashldi3.c27 dwords input; local
29 input.all = a;
33 result.s.high = input.s.low << (b - bits_in_word);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
H A Dashrdi3.c27 dwords 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_word - 1);
34 result.s.low = input.s.high >> (b - bits_in_word);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dlshrdi3.c27 udwords input; local
29 input.all = a;
33 result.s.low = input.s.high >> (b - bits_in_word);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dashlti3.c27 twords input; local
29 input.all = a;
33 result.s.high = input.s.low << (b - bits_in_dword);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
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/libvpx/vp8/encoder/arm/
H A Ddct_arm.c16 void vp8_fast_fdct8x4_armv6(short *input, short *output, int pitch) argument
18 vp8_fast_fdct4x4_armv6(input, output, pitch);
19 vp8_fast_fdct4x4_armv6(input + 4, output + 16, pitch);
/external/stlport/test/unit/
H A Ddivides_test.cpp30 int input [3] = { 2, 3, 4 }; local
31 int result = accumulate(input, input + 3, 48, divides<int>());
H A Dstrstream_test.cpp19 CPPUNIT_TEST(input);
23 void input();
31 void StrstreamTest::input() function in class:StrstreamTest
H A Dtimes_test.cpp31 int input [4] = { 1, 5, 7, 2 }; local
32 int total = accumulate(input, input + 4, 1, multiplies<int>());
/external/valgrind/main/none/tests/s390x/
H A Dlam_stam.c6 char input[44] = "0123456789\n" variable
13 asm volatile( "larl 1,input\n\t"
/external/chromium/chrome/browser/safe_browsing/
H A Dchunk_range_unittest.cc94 std::string input = "1-100,398,415,1138-2001,2019"; local
95 EXPECT_TRUE(StringToRanges(input, &ranges));
106 input = "1,2,3,4,5,6,7";
107 EXPECT_TRUE(StringToRanges(input, &ranges));
112 input = "300-3001";
113 EXPECT_TRUE(StringToRanges(input, &ranges));
120 input = "17";
121 EXPECT_TRUE(StringToRanges(input, &ranges));
128 input = "x-y";
129 EXPECT_FALSE(StringToRanges(input,
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DInputListener.java33 package com.jme3.input.controls;
36 * A generic interface for input listeners, the {@link AnalogListener} and
/external/llvm/utils/
H A DDSAclean.py17 input = open(sys.argv[1], 'r') variable
21 buffer = input.readline()
25 buffer = input.readline()
30 buffer = input.readline()
31 input.close()
/external/ppp/pppd/plugins/radius/
H A Dmd5.c6 void rc_md5_calc (unsigned char *output, unsigned char *input, unsigned int inlen) argument
11 MD5_Update (&context, input, inlen);
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
H A DAbstractTParser.java25 * Create a new parser instance, pre-supplying the input token stream.
27 * @param input The stream of tokens that will be pulled from the lexer
29 protected AbstractTParser(TokenStream input) { argument
30 super(input);
34 * Create a new parser instance, pre-supplying the input token stream
40 * @param input The stream of tokesn that will be pulled from the lexer
43 protected AbstractTParser(TokenStream input, RecognizerSharedState state) { argument
44 super(input, state);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DEarlyExitException.java37 public EarlyExitException(int decisionNumber, IntStream input) { argument
38 super(input);
H A DMismatchedNotSetException.java34 public MismatchedNotSetException(BitSet expecting, IntStream input) { argument
35 super(expecting, input);
H A DMismatchedSetException.java36 public MismatchedSetException(BitSet expecting, IntStream input) { argument
37 super(input);
H A DMismatchedTokenException.java37 public MismatchedTokenException(int expecting, IntStream input) { argument
38 super(input);
H A DMismatchedTreeNodeException.java41 public MismatchedTreeNodeException(int expecting, TreeNodeStream input) { argument
42 super(input);
/external/chromium/chrome/browser/
H A Dspellchecker_platform_engine_unittest.cc46 const char* input; // A string to be tested. member in struct:__anon2287
318 const string16 word(ASCIIToUTF16(kTestCases[i].input));
/external/compiler-rt/test/Unit/ppc/
H A Dfloatditf_test.h2 uint64_t input; member in struct:testCase
[all...]

Completed in 575 milliseconds

1234567891011>>