Searched defs:input (Results 126 - 150 of 1709) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/arm/neon/
H A Dvp9_idct16x16_neon.c14 void vp9_idct16x16_256_add_neon_pass1(const int16_t *input,
23 void vp9_idct16x16_10_add_neon_pass1(const int16_t *input,
37 void vp9_idct16x16_256_add_neon(const int16_t *input, argument
49 vp9_idct16x16_256_add_neon_pass1(input, pass1_output, 8);
54 vp9_idct16x16_256_add_neon_pass2(input+1,
64 vp9_idct16x16_256_add_neon_pass1(input+8*16, pass1_output, 8);
69 vp9_idct16x16_256_add_neon_pass2(input+8*16+1,
112 void vp9_idct16x16_10_add_neon(const int16_t *input, argument
124 vp9_idct16x16_10_add_neon_pass1(input, pass1_output, 8);
129 vp9_idct16x16_10_add_neon_pass2(input
[all...]
/external/chromium_org/third_party/skia/debugger/
H A Ddebuggermain.cpp13 SkDebugf("%s <input> \n", argv0);
16 SkDebugf(" input: Either a directory or a single .skp file.\n");
28 SkString input; local
39 } else if (input.isEmpty()) {
40 input = SkString(iter->toAscii().data());
49 if (!input.isEmpty()) {
50 if (SkStrEndsWith(input.c_str(), ".skp")) {
51 w.openFile(input.c_str());
53 w.setupDirectoryWidget(input.c_str());
/external/chromium_org/third_party/skia/include/effects/
H A DSkTestImageFilters.h10 static SkDownSampleImageFilter* Create(SkScalar scale, SkImageFilter* input = NULL) {
18 return SkNEW_ARGS(SkDownSampleImageFilter, (scale, input));
24 SkDownSampleImageFilter(SkScalar scale, SkImageFilter* input) argument
25 : INHERITED(1, &input), fScale(scale) {}
H A DSkTileImageFilter.h20 @param input Input from which the subregion defined by srcRect will be tiled
23 SkImageFilter* input, uint32_t uniqueID = 0);
33 SkTileImageFilter(const SkRect& srcRect, const SkRect& dstRect, SkImageFilter* input, uint32_t uniqueID) argument
34 : INHERITED(1, &input, NULL, uniqueID), fSrcRect(srcRect), fDstRect(dstRect) {}
/external/chromium_org/third_party/webrtc/base/
H A Dmessagedigest.h51 // Computes the hash of |in_len| bytes of |input|, using the |digest| hash
55 size_t ComputeDigest(MessageDigest* digest, const void* input, size_t in_len,
60 size_t ComputeDigest(const std::string& alg, const void* input, size_t in_len,
62 // Computes the hash of |input| using the |digest| hash implementation, and
64 std::string ComputeDigest(MessageDigest* digest, const std::string& input);
68 std::string ComputeDigest(const std::string& alg, const std::string& input);
70 bool ComputeDigest(const std::string& alg, const std::string& input,
74 inline std::string MD5(const std::string& input) { argument
75 return ComputeDigest(DIGEST_MD5, input);
80 // Computes the HMAC of |in_len| bytes of |input|, usin
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dnormal_unittest.cc55 int16_t input[1000] = {0}; local
62 // Zero input length.
65 normal.Process(input, 0, kModeExpand, mute_factor_array.get(), &output));
73 // be equal to input_size_samples. Since the input is all zeros, decoded_max
78 normal.Process(input,
99 int16_t input[1000] = {0}; local
111 input, input_len, kModeExpand, mute_factor_array.get(), &output));
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Dinput_audio_file_unittest.cc23 int16_t input[kSamples]; local
25 input[i] = i;
28 InputAudioFile::DuplicateInterleaved(input, kSamples, kChannels, output);
42 int16_t input[kSamples * kChannels]; local
44 input[i] = i;
46 InputAudioFile::DuplicateInterleaved(input, kSamples, kChannels, input);
49 int16_t* output_ptr = input;
/external/chromium_org/tools/gn/
H A Dfunction_get_path_info_unittest.cc18 std::string Call(const std::string& input, const std::string& what) { argument
22 args.push_back(Value(NULL, input));
/external/chromium_org/v8/src/compiler/
H A Dphi-reducer.h28 Node* input = *it; variable
29 if (input != node && input != replacement) {
31 replacement = input;
/external/chromium_org/v8/src/
H A Dhydrogen-mark-deoptimize.cc34 HValue* input = phi->OperandAt(i); local
35 if (input->IsPhi() && input->CheckFlag(HValue::kAllowUndefinedAsNaN)) {
36 input->ClearFlag(HValue::kAllowUndefinedAsNaN);
37 worklist_.Add(HPhi::cast(input), zone());
/external/clang/test/Sema/
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...]
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 Duninit-variables-vectors.c8 void test1(float *input) { argument
14 X = _mm_loadu_ps(&input[0]);
/external/compiler-rt/test/asan/TestCases/
H A Dinit-order-pthread-create.cc14 void *foo(void *input) { argument
16 pthread_create(&t, 0, run, input);
22 void *bar(void *input) { argument
23 return input;
/external/droiddriver/src/com/google/android/droiddriver/finders/
H A DPredicate.java20 * Determines a true or false value for a given input.
35 * Returns the result of applying this predicate to {@code input}.
37 boolean apply(T input); argument
/external/guava/guava/src/com/google/common/base/
H A DFunction.java24 * Determines an output value based on an input value.
32 * Returns the result of applying this function to {@code input}. This method is <i>generally
42 * @throws NullPointerException if {@code input} is null and this function does not accept null
45 T apply(@Nullable F input); argument
H A DPredicate.java24 * Determines a true or false value for a given input.
32 * Returns the result of applying this predicate to {@code input}. This method is <i>generally
42 * @throws NullPointerException if {@code input} is null and this predicate does not accept null
45 boolean apply(@Nullable T input); argument
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAsyncFunction.java34 * input}. The output {@code Future} need not be {@linkplain Future#isDone
40 ListenableFuture<O> apply(I input) throws Exception; argument
/external/guava/guava-tests/test/com/google/common/hash/
H A DMessageDigestHashFunctionTest.java28 private static void assertMessageDigestHashing(byte[] input, String algorithmName) argument
31 MessageDigest.getInstance(algorithmName).digest(input),
32 new MessageDigestHashFunction(algorithmName).hashBytes(input).asBytes());
/external/libcxx/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/
H A Dpartial_sort_copy.pass.cpp29 int* input = new int[N]; local
32 input[i] = i;
33 std::random_shuffle(input, input+N);
34 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M);
41 delete [] input;
H A Dpartial_sort_copy_comp.pass.cpp32 int* input = new int[N]; local
35 input[i] = i;
36 std::random_shuffle(input, input+N);
37 int* r = std::partial_sort_copy(Iter(input), Iter(input+N), output, output+M,
45 delete [] input;
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/
H A Dxsgetn.pass.cpp36 char input[7] = "123456"; local
37 t.setg(input, input, input+7);
38 char output[sizeof(input)] = {0};
40 assert(strcmp(input, output) == 0);
/external/libvpx/libvpx/test/
H A Didct_test.cc19 typedef void (*idct_fn_t)(int16_t *input, unsigned char *pred_ptr,
29 memset(input, 0, sizeof(input));
37 int16_t input[16]; member in class:__anon24786::IDCTTest
55 REGISTER_STATE_CHECK(UUT(input, output, 16, output, 16));
67 input[0] = 4;
68 REGISTER_STATE_CHECK(UUT(input, output, 16, output, 16));
81 input[0] = 4;
82 REGISTER_STATE_CHECK(UUT(input, predict, 16, output, 16));
94 for (i = 0; i < 16; i++) input[
[all...]
/external/libvpx/libvpx/vp9/common/arm/neon/
H A Dvp9_idct16x16_neon.c14 void vp9_idct16x16_256_add_neon_pass1(const int16_t *input,
23 void vp9_idct16x16_10_add_neon_pass1(const int16_t *input,
37 void vp9_idct16x16_256_add_neon(const int16_t *input, argument
49 vp9_idct16x16_256_add_neon_pass1(input, pass1_output, 8);
54 vp9_idct16x16_256_add_neon_pass2(input+1,
64 vp9_idct16x16_256_add_neon_pass1(input+8*16, pass1_output, 8);
69 vp9_idct16x16_256_add_neon_pass2(input+8*16+1,
112 void vp9_idct16x16_10_add_neon(const int16_t *input, argument
124 vp9_idct16x16_10_add_neon_pass1(input, pass1_output, 8);
129 vp9_idct16x16_10_add_neon_pass2(input
[all...]
/external/lldb/test/functionalities/expr-doesnt-deadlock/
H A Dlocking.c22 lock_acquirer_1 (void *input) argument

Completed in 528 milliseconds

1234567891011>>