HomeSort by relevance Sort by last modified time
    Searched refs:input (Results 76 - 100 of 7097) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
Parser.as 35 protected var input:TokenStream;
37 public function Parser(input:TokenStream, state:RecognizerSharedState = null) {
39 tokenStream = input;
44 if ( input!=null ) {
45 input.seek(0); // rewind the input
49 protected override function getCurrentInputSymbol(input:IntStream):Object {
50 return TokenStream(input).LT(1);
53 protected override function getMissingSymbol(input:IntStream,
61 var current:Token = TokenStream(input).LT(1)
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/Arm/
ashldi3.c 67 dwords input; local
69 input.all = a;
73 result.high = input.low << (b - bits_in_word);
79 result.low = input.low << b;
80 result.high = (input.high << b) | (input.low >> (bits_in_word - b));
lshrdi3.c 67 udwords input; local
69 input.all = a;
73 result.low = input.high >> (b - bits_in_word);
79 result.high = input.high >> b;
80 result.low = (input.high << (bits_in_word - b)) | (input.low >> b);
  /external/compiler-rt/lib/builtins/
ashldi3.c 27 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));
ashlti3.c 27 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));
lshrdi3.c 27 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);
lshrti3.c 27 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/deqp-deps/SPIRV-Tools/test/fuzzers/
spvtools_opt_legalization_fuzzer.cpp 25 std::vector<uint32_t> input; local
26 input.resize(size >> 2);
30 input[count++] = data[i] | (data[i + 1] << 8) | (data[i + 2] << 16) |
35 optimizer.Run(input.data(), input.size(), &input);
spvtools_opt_performance_fuzzer.cpp 25 std::vector<uint32_t> input; local
26 input.resize(size >> 2);
30 input[count++] = data[i] | (data[i + 1] << 8) | (data[i + 2] << 16) |
35 optimizer.Run(input.data(), input.size(), &input);
spvtools_opt_size_fuzzer.cpp 25 std::vector<uint32_t> input; local
26 input.resize(size >> 2);
30 input[count++] = data[i] | (data[i + 1] << 8) | (data[i + 2] << 16) |
35 optimizer.Run(input.data(), input.size(), &input);
  /external/deqp-deps/SPIRV-Tools/test/
named_id_test.cpp 27 const std::string input = R"( local
47 EXPECT_EQ(output, EncodeAndDecodeSuccessfully(input));
59 const std::string input = GetParam().id + " = OpTypeVoid"; local
60 SetText(input);
62 CompileSuccessfully(input);
64 CompileFailure(input);
  /external/libchrome/mojo/public/cpp/bindings/
array_traits_stl.h 20 static bool IsNull(const std::vector<T>& input) {
30 static size_t GetSize(const std::vector<T>& input) { return input.size(); }
32 static T* GetData(std::vector<T>& input) { return input.data(); }
34 static const T* GetData(const std::vector<T>& input) { return input.data(); }
36 static typename std::vector<T>::reference GetAt(std::vector<T>& input,
38 return input[index];
42 const std::vector<T>& input,
    [all...]
array_traits_wtf_vector.h 17 static bool IsNull(const WTF::Vector<U, InlineCapacity>& input) {
27 static size_t GetSize(const WTF::Vector<U, InlineCapacity>& input) {
28 return input.size();
31 static U* GetData(WTF::Vector<U, InlineCapacity>& input) {
32 return input.data();
35 static const U* GetData(const WTF::Vector<U, InlineCapacity>& input) {
36 return input.data();
39 static U& GetAt(WTF::Vector<U, InlineCapacity>& input, size_t index) {
40 return input[index];
43 static const U& GetAt(const WTF::Vector<U, InlineCapacity>& input,
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HeaderParser.java 21 * Returns the next index in {@code input} at or after {@code pos} that
22 * contains a character from {@code characters}. Returns the input length if
25 public static int skipUntil(String input, int pos, String characters) {
26 for (; pos < input.length(); pos++) {
27 if (characters.indexOf(input.charAt(pos)) != -1) {
35 * Returns the next non-whitespace character in {@code input} that is white
36 * space. Result is undefined if input contains newline characters.
38 public static int skipWhitespace(String input, int pos) {
39 for (; pos < input.length(); pos++) {
40 char c = input.charAt(pos)
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/test/fuzzers/
spvtools_opt_legalization_fuzzer.cpp 25 std::vector<uint32_t> input; local
26 input.resize(size >> 2);
30 input[count++] = data[i] | (data[i + 1] << 8) | (data[i + 2] << 16) |
35 optimizer.Run(input.data(), input.size(), &input);
spvtools_opt_performance_fuzzer.cpp 25 std::vector<uint32_t> input; local
26 input.resize(size >> 2);
30 input[count++] = data[i] | (data[i + 1] << 8) | (data[i + 2] << 16) |
35 optimizer.Run(input.data(), input.size(), &input);
spvtools_opt_size_fuzzer.cpp 25 std::vector<uint32_t> input; local
26 input.resize(size >> 2);
30 input[count++] = data[i] | (data[i + 1] << 8) | (data[i + 2] << 16) |
35 optimizer.Run(input.data(), input.size(), &input);
  /external/swiftshader/third_party/SPIRV-Tools/test/
named_id_test.cpp 27 const std::string input = R"( local
47 EXPECT_EQ(output, EncodeAndDecodeSuccessfully(input));
59 const std::string input = GetParam().id + " = OpTypeVoid"; local
60 SetText(input);
62 CompileSuccessfully(input);
64 CompileFailure(input);
  /external/antlr/runtime/JavaScript/src/org/antlr/runtime/
Parser.js 4 org.antlr.runtime.Parser = function(input, state) {
6 this.setTokenStream(input);
13 if ( org.antlr.lang.isValue(this.input) ) {
14 this.input.seek(0); // rewind the input
18 getCurrentInputSymbol: function(input) {
19 return input.LT(1);
22 getMissingSymbol: function(input,
30 var current = input.LT(1);
34 current = input.LT(-1)
    [all...]
  /external/webrtc/webrtc/base/
md5digest_unittest.cc 17 std::string Md5(const std::string& input) {
19 return ComputeDigest(&md5, input);
40 std::string input = "abcdefghijklmnopqrstuvwxyz"; local
42 for (size_t i = 0; i < input.size(); ++i) {
43 md5.Update(&input[i], 1);
52 std::string input = "message digest"; local
53 EXPECT_EQ("f96b697d7cb7938d525a2f31aaf161d0", ComputeDigest(&md5, input));
54 input = "abcdefghijklmnopqrstuvwxyz";
55 EXPECT_EQ("c3fcd3d76192e4007dfb496cca67e13b", ComputeDigest(&md5, input));
60 std::string input = "abcdefghijklmnopqrstuvwxyz" local
75 EXPECT_EQ(static_cast<char>(i), input[i]); local
    [all...]
sha1digest_unittest.cc 17 std::string Sha1(const std::string& input) {
19 return ComputeDigest(&sha1, input);
40 std::string input = local
43 for (size_t i = 0; i < input.size(); ++i) {
44 sha1.Update(&input[i], 1);
53 std::string input = "abc"; local
55 ComputeDigest(&sha1, input));
56 input = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq";
58 ComputeDigest(&sha1, input));
63 std::string input = "abcdefghijklmnopqrstuvwxyz" local
78 EXPECT_EQ(static_cast<char>(i), input[i]); local
    [all...]
  /external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/java8/
FunctionWithDefaultMethod.java 20 /** Desugaring test input interface that includes a default method and a static method. */
24 T apply(T input);
27 return input -> input.longValue();
30 default T twice(T input) {
31 return apply(apply(input));
36 return input -> input + add;
45 public Integer apply(Integer input) {
46 return 2 * input;
    [all...]
  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/
test_VIDIOC_ENUMINPUT.c 46 struct v4l2_input input; local
52 memset(&input, 0xff, sizeof(input));
53 input.index = i;
54 ret_enum = ioctl(get_video_fd(), VIDIOC_ENUMINPUT, &input);
63 CU_ASSERT_EQUAL(input.index, i);
65 CU_ASSERT(0 < strlen((char *)input.name));
67 ((char *)input.name, sizeof(input.name)));
69 //CU_ASSERT_EQUAL(input.type, ?)
116 struct v4l2_input input; local
138 struct v4l2_input input; local
160 struct v4l2_input input; local
183 struct v4l2_input input; local
    [all...]
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeNodeStream.cs 47 protected ITreeNodeStream input; field in class:Antlr.Runtime.Debug.DebugTreeNodeStream
53 public DebugTreeNodeStream(ITreeNodeStream input,
55 this.input = input;
56 this.adaptor = input.TreeAdaptor;
57 this.input.UniqueNavigationNodes = true;
72 return input.Index;
77 return input.TokenStream;
87 return input;
99 return input.UniqueNavigationNodes
    [all...]
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeNodeStream.cs 49 protected ITreeNodeStream input; field in class:Antlr.Runtime.Debug.DebugTreeNodeStream
55 public DebugTreeNodeStream( ITreeNodeStream input,
58 this.input = input;
59 this.adaptor = input.TreeAdaptor;
60 this.input.UniqueNavigationNodes = true;
80 return input.Index;
87 return input.TokenStream;
101 return input;
115 return input.UniqueNavigationNodes
    [all...]

Completed in 1489 milliseconds

1 2 34 5 6 7 8 91011>>