Searched refs:input (Results 126 - 150 of 3184) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/hash/
H A DHashFunction.java31 * <li><b>block of data:</b> the input for a hash function is always, in concept, an
42 * <li><b>pure function:</b> the value produced must depend only on the input bytes, in
64 * input. The true test of a hash function is how it performs on representative
76 * designed to make it as infeasible as possible to reverse-engineer the input that
88 * <h3>Providing input to a hash function</h3>
146 * expected size of the input (in bytes). This is only important for non-streaming hash
147 * functions (hash functions that need to buffer their whole input before processing any
153 * Shortcut for {@code newHasher().putLong(input).hash()}; returns the hash code for the
157 HashCode hashLong(long input); argument
160 * Shortcut for {@code newHasher().putBytes(input)
164 hashBytes(byte[] input) argument
174 hashBytes(byte[] input, int off, int len) argument
183 hashString(CharSequence input) argument
190 hashString(CharSequence input, Charset charset) argument
[all...]
/external/libvpx/libvpx/vp8/common/
H A Ddequantize.c29 void vp8_dequant_idct_add_c(short *input, short *dq, argument
36 input[i] = dq[i] * input[i];
39 vp8_short_idct4x4llm_c(input, dest, stride, dest, stride);
41 vpx_memset(input, 0, 32);
/external/chromium_org/ppapi/shared_impl/
H A Darray_writer.h54 bool StoreArray(const T* input, uint32_t count) { argument
70 if (input)
71 memcpy(dest, input, sizeof(T) * count);
78 bool StoreVector(const std::vector<T>& input) { argument
79 return StoreArray(input.size() ? &input[0] : NULL, input.size());
93 bool StoreResourceVector(const std::vector< scoped_refptr<Resource> >& input);
97 bool StoreResourceVector(const std::vector<PP_Resource>& input);
106 bool StoreVarVector(const std::vector< scoped_refptr<Var> >& input);
[all...]
/external/harfbuzz_ng/util/
H A Dmain-font-text.hh40 input (&options),
50 if (argc && !input.text && !input.text_file) input.text = argv[0], argc--, argv++;
55 if (!input.text && !input.text_file)
56 input.text_file = "-";
63 while ((text = input.get_line (&text_len)))
64 consumer.consume_line (buffer, text, text_len, input.text_before, input
75 text_options_t input; member in struct:main_font_text_t
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCTP.java41 public SimpleCTP(TreeNodeStream input) { argument
42 this(input, new RecognizerSharedState());
44 public SimpleCTP(TreeNodeStream input, RecognizerSharedState state) { argument
45 super(input, state);
67 int LA1_0 = input.LA(1);
90 new EarlyExitException(1, input);
102 recover(input,re);
117 switch ( input.LA(1) ) {
135 new NoViableAltException("", 2, 0, input);
155 match(input,FUNC_DEC
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCTP.java41 public SimpleCTP(TreeNodeStream input) { argument
42 this(input, new RecognizerSharedState());
44 public SimpleCTP(TreeNodeStream input, RecognizerSharedState state) { argument
45 super(input, state);
67 int LA1_0 = input.LA(1);
90 new EarlyExitException(1, input);
102 recover(input,re);
117 switch ( input.LA(1) ) {
135 new NoViableAltException("", 2, 0, input);
155 match(input,FUNC_DEC
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DTracer.cs50 public IIntStream input; field in class:Antlr.Runtime.Debug.Tracer
53 public Tracer(IIntStream input) argument
55 this.input = input;
80 if (input is ITokenStream)
82 return ((ITokenStream) input).LT(k);
84 return (char) input.LA(k);
/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/debug/
H A DTracer.java38 public IntStream input; field in class:Tracer
41 public Tracer(IntStream input) { argument
42 this.input = input;
58 if ( input instanceof TokenStream ) {
59 return ((TokenStream)input).LT(k);
61 return new Character((char)input.LA(k));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DTeeInputStream.java10 private final InputStream input; field in class:TeeInputStream
13 public TeeInputStream(InputStream input, OutputStream output) argument
15 this.input = input;
28 int i = input.read(buf, off, len);
41 int i = input.read();
54 this.input.close();
/external/compiler-rt/lib/
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 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);
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DRecognitionException.pm11 has 'input' => (
64 my $input = $args->{input};
65 $new_args->{input} = $input;
66 $new_args->{index} = $input->index();
68 if ($input->does('ANTLR::Runtime::TokenStream')) {
69 my $token = $input->LT(1);
75 if ($input->does('ANTLR::Runtime::TreeNodeStream')) {
76 # extract_information_from_tree_node_stream($input);
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DRecognitionException.java54 * problem occurred and/or what was the expected input. While the parser
55 * knows its state (such as current input symbol and line info) that
58 * perhaps print an entire line of input not just a single token, for example.
63 /** What input stream did the error occur in? */
64 public transient IntStream input; field in class:RecognitionException
102 public RecognitionException(IntStream input) { argument
103 this.input = input;
104 this.index = input.index();
105 if ( input instanceo
123 extractInformationFromTreeNodeStream(IntStream input) argument
[all...]
H A DLexer.java30 /** A lexer is recognizer that draws input symbols from a character stream.
37 protected CharStream input; field in class:Lexer
42 public Lexer(CharStream input) { argument
43 this.input = input;
46 public Lexer(CharStream input, RecognizerSharedState state) { argument
48 this.input = input;
54 if ( input!=null ) {
55 input
127 setCharStream(CharStream input) argument
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DRecognitionException.js18 * problem occurred and/or what was the expected input. While the parser
19 * knows its state (such as current input symbol and line info) that
22 * perhaps print an entire line of input not just a single token, for example.
27 * @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
31 org.antlr.runtime.RecognitionException = function(input) {
33 this.input = input;
34 this.index = input.index();
35 if ( input instanceo
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmpplogintask_unittest.cc72 std::string input; local
91 input = "<stream:stream id=\"a5f2d8c9\" version=\"1.0\" "
94 engine_->HandleInput(input.c_str(), input.length());
103 input = "<stream:features>"
106 engine_->HandleInput(input.c_str(), input.length());
116 input = std::string("<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
117 engine_->HandleInput(input.c_str(), input
230 std::string input = "<?xml version='1.0' encoding='UTF-8'?>" local
243 std::string input = "<?xml version='1.0' encoding='ISO-8859-1'?>" local
256 std::string input = "<iq type='get' id='1'/>"; local
267 std::string input = "<stream:features>" local
283 std::string input = "<stream:features>" local
305 std::string input = "<stream:features>" local
326 std::string input = "<stream:features>" local
348 std::string input = "<stream:features>" local
369 std::string input = "<stream:features>" local
390 std::string input = "<failure xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>"; local
401 std::string input = "<wrongtag>"; local
412 std::string input = "<stream:features>" local
427 std::string input = "<failure xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>"; local
438 std::string input = "<wrongtag>"; local
449 std::string input = "<stream:features>" local
461 std::string input = "<stream:features>" local
491 std::string input = "<iq type='result' id='0'>" local
504 std::string input = "<iq type='error' id='0'/>"; local
516 std::string input = "<iq type='error' id='1'/>"; local
526 std::string input = "<iq type='error' id='1'/>"; local
538 std::string input = "<iq type='get' id='1'/>"; local
555 std::string input; local
589 std::string input = "<stream:error>" local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DLexer.cs37 * A lexer is recognizer that draws input symbols from a character stream.
45 protected ICharStream input; field in class:Antlr.Runtime.Lexer
50 public Lexer(ICharStream input) { argument
51 this.input = input;
54 public Lexer(ICharStream input, RecognizerSharedState state) argument
56 this.input = input;
66 return input.Substring(state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex);
75 return input
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DLexer.cs38 * A lexer is recognizer that draws input symbols from a character stream.
47 protected ICharStream input; field in class:Antlr.Runtime.Lexer
53 public Lexer( ICharStream input )
55 this.input = input;
58 public Lexer( ICharStream input, RecognizerSharedState state ) argument
61 this.input = input;
74 return input.Substring( state.tokenStartCharIndex, CharIndex - state.tokenStartCharIndex );
86 return input
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeParser.as39 protected var input:TreeNodeStream;
41 public function TreeParser(input:TreeNodeStream, state:RecognizerSharedState = null) {
43 treeNodeStream = input;
48 if ( input!=null ) {
49 input.seek(0); // rewind the input
53 /** Set the input stream */
54 public function set treeNodeStream(input:TreeNodeStream):void {
55 this.input = input;
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioBasicProcessorNode.cpp77 AudioBus* sourceBus = input(0)->bus();
80 if (!input(0)->isConnected())
90 // Render input stream - suggest to the input to render directly into output bus for in-place processing in process() if possible.
91 input(0)->pull(output(0)->bus(), framesToProcess);
100 // As soon as we know the channel count of our input, we can lazily initialize.
103 void AudioBasicProcessorNode::checkNumberOfChannelsForInput(AudioNodeInput* input) argument
107 ASSERT(input == this->input(0));
108 if (input !
[all...]
H A DGainNode.cpp56 // happen in the summing junction input of the AudioNode we're connected to.
62 if (!isInitialized() || !input(0)->isConnected())
65 AudioBus* inputBus = input(0)->bus();
90 // As soon as we know the channel count of our input, we can lazily initialize.
93 void GainNode::checkNumberOfChannelsForInput(AudioNodeInput* input) argument
97 ASSERT(input && input == this->input(0));
98 if (input != this->input(
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11blit.hlsl42 VS2PS vs_blit(IA2VS input)
45 result.position = input.position;
46 result.texcoord = input.texcoord;
50 float4 ps_blit(VS2PS input) : SV_TARGET
52 return tex.Sample(samp, input.texcoord);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11blit.hlsl42 VS2PS vs_blit(IA2VS input)
45 result.position = input.position;
46 result.texcoord = input.texcoord;
50 float4 ps_blit(VS2PS input) : SV_TARGET
52 return tex.Sample(samp, input.texcoord);
/external/smali/smali/src/main/java/org/jf/smali/
H A DSemanticException.java41 SemanticException(IntStream input, String errorMessage, Object... messageArguments) { argument
42 super(input);
46 SemanticException(IntStream input, Exception ex) { argument
47 super(input);
51 SemanticException(IntStream input, CommonTree tree, String errorMessage, Object... messageArguments) { argument
53 this.input = input;
61 SemanticException(IntStream input, Token token, String errorMessage, Object... messageArguments) { argument
63 this.input = input;
[all...]

Completed in 708 milliseconds

1234567891011>>