Searched defs:input (Results 276 - 300 of 1709) sorted by relevance

<<11121314151617181920>>

/external/compiler-rt/lib/builtins/ppc/
H A Dfixunstfdi.c10 uint64_t __fixunstfdi(long double input) argument
12 const DD x = { .ld = input };
17 /* If (1.0 - tiny) <= input < 0x1.0p64: */
/external/compiler-rt/test/builtins/Unit/ppc/
H A Dfixtfdi_test.c457 DD input; local
461 input.hi = testCases[i].xhi;
462 input.lo = testCases[i].xlo;
465 computed_result = __fixtfdi(input.ld);
468 printf("Error for __fixtfdi at %La = ( %a , %a ):\n", input.ld, input.hi, input.lo);
/external/compiler-rt/test/builtins/timing/
H A Dfloatundidf.c16 uint64_t input[INPUT_SIZE]; local
21 // Initialize the input array with data of various sizes.
23 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
31 __floatundidf(input[i]);
/external/conscrypt/src/main/java/org/conscrypt/
H A DCryptoUpcalls.java109 byte[] input) {
135 return c.doFinal(input);
108 rawCipherWithPrivateKey(PrivateKey javaKey, boolean encrypt, byte[] input) argument
/external/deqp/framework/delibs/destream/
H A DdeStreamCpyThread.c39 readResult = deInStream_read(thread->input, buffer, thread->bufferSize, &read);
60 deStreamCpyThread* deStreamCpyThread_create (deInStream* input, deOutStream* output, deInt32 bufferSize) argument
65 DE_ASSERT(input);
68 thread->input = input;
/external/deqp/framework/randomshaders/
H A DrsgProgramGenerator.cpp91 ShaderInput* input = *i; local
92 if (input->getVariable()->getType().isSampler())
94 input->getValueRange().getMin() = curSamplerNdx;
95 input->getValueRange().getMax() = curSamplerNdx;
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DAppDataDirGuesser.java72 File[] guessPath(String input) { argument
74 for (String potential : splitPathList(input)) {
102 static String[] splitPathList(String input) { argument
103 String trimmed = input;
104 if (input.startsWith("dexPath=")) {
106 int end = input.indexOf(',');
108 trimmed = (end == -1) ? input.substring(start) : input.substring(start, end);
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
H A DPoloUtil.java73 * The input byte stream is assumed to be a positive, two's complement
97 throw new IllegalArgumentException("Bad input string.");
123 public static final long intBigEndianBytesToLong(byte[] input) { argument
124 assert (input.length == 4);
125 long ret = (long)(input[0]) & 0xff;
127 ret |= (long)(input[1]) & 0xff;
129 ret |= (long)(input[2]) & 0xff;
131 ret |= (long)(input[3]) & 0xff;
/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/guava/guava-tests/test/com/google/common/hash/
H A DMurmur3Hash128Test.java54 private static void assertHash(int seed, byte[] expectedHash, byte[] input) { argument
55 byte[] hash = murmur3_128(seed).newHasher().putBytes(input).hash().asBytes();
61 @Override public byte[] hash(byte[] input, int seed) {
63 Funnels.byteArrayFunnel().funnel(input, hasher);
/external/guava/guava-tests/test/com/google/common/io/
H A DLineBufferTest.java61 private static void bufferHelper(String input, String... expect) argument
74 chunk = Math.max(1, Math.min(chunk, input.length()));
75 assertEquals(expectProcess, bufferHelper(input, chunk));
76 assertEquals(expectRead, readUsingJava(input, chunk));
77 assertEquals(expectRead, readUsingReader(input, chunk, true));
78 assertEquals(expectRead, readUsingReader(input, chunk, false));
82 private static List<String> bufferHelper(String input, int chunk) argument
90 char[] chars = input.toCharArray();
101 private static List<String> readUsingJava(String input, int chunk) argument
103 BufferedReader r = new BufferedReader(getChunkedReader(input, chun
113 readUsingReader(String input, int chunk, boolean asReader) argument
128 getChunkedReadable(String input, int chunk) argument
138 getChunkedReader(String input, final int chunk) argument
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DFuturesTransformTest.java45 public String apply(Integer input) { argument
46 if (input.intValue() == VALID_INPUT_DATA) {
/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/icu/icu4c/source/i18n/
H A Dcsmatch.cpp27 void CharsetMatch::set(InputText *input, const CharsetRecognizer *cr, int32_t conf, argument
30 textIn = input;
H A Dcsrutf8.cpp27 UBool CharsetRecog_UTF8::match(InputText* input, CharsetMatch *results) const { argument
31 const uint8_t *inputBytes = input->fRawInput;
36 if (input->fRawLength >= 3 &&
42 for (i=0; i < input->fRawLength; i += 1) {
65 if (i >= input->fRawLength) {
104 results->set(input, this, confidence);
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DFunctionExecutor.java37 * @param input Text to be escaped.
40 void escape(String name, String input, Appendable output) throws IOException; argument
/external/jsilver/src/com/google/streamhtmlparser/
H A DParser.java41 * @param input the character read
44 void parse(char input) throws ParseException; argument
50 * @param input the {@code String} to parse
53 void parse(String input) throws ParseException; argument
/external/libopus/silk/fixed/
H A Dwarped_autocorrelation_FIX.c41 const opus_int16 *input, /* I Input data to correlate */
43 const opus_int length, /* I Length of input */
58 tmp1_QS = silk_LSHIFT32( (opus_int32)input[ n ], QS );
38 silk_warped_autocorrelation_FIX( opus_int32 *corr, opus_int *scale, const opus_int16 *input, const opus_int warping_Q16, const opus_int length, const opus_int order ) argument
/external/libopus/silk/float/
H A Dwarped_autocorrelation_FLP.c37 const silk_float *input, /* I Input data to correlate */
39 const opus_int length, /* I Length of input */
53 tmp1 = input[ n ];
35 silk_warped_autocorrelation_FLP( silk_float *corr, const silk_float *input, const silk_float warping, const opus_int length, const opus_int order ) argument
/external/libvpx/libvpx/test/
H A Dvp8_decrypt_test.cc36 void test_decrypt_cb(void *decrypt_state, const uint8_t *input, argument
38 encrypt_buffer(input, output, count,
39 input - reinterpret_cast<uint8_t *>(decrypt_state));
/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/libxml2/include/libxml/
H A DdebugXML.h99 * This is a generic signature for the XML shell input function.
120 xmlShellReadlineFunc input; member in struct:_xmlShellCtxt
207 xmlShellReadlineFunc input,
/external/lldb/test/functionalities/thread/create_after_attach/
H A Dmain.c8 thread_1_func (void *input) argument
21 thread_2_func (void *input) argument
/external/lldb/test/functionalities/thread/create_during_step/
H A Dmain.cpp34 step_thread_func (void *input) argument
49 create_thread_func (void *input) argument
51 pthread_t *step_thread = (pthread_t*)input;
/external/lldb/test/functionalities/thread/exit_during_step/
H A Dmain.cpp36 step_thread_func (void *input) argument
54 exit_thread_func (void *input) argument

Completed in 678 milliseconds

<<11121314151617181920>>