Searched refs:in (Results 1 - 25 of 7548) sorted by relevance

1234567891011>>

/external/clang/tools/scan-build-py/tests/functional/src/
H A Dbroken-one.c3 int value(int in) argument
5 return 2 * in;
/external/libvpx/libvpx/vp9/common/x86/
H A Dvp9_idct_intrin_sse2.c5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
18 __m128i in[2]; local
21 in[0] = load_input_data8(input);
22 in[1] = load_input_data8(input + 8);
26 idct4_sse2(in);
27 idct4_sse2(in);
56 __m128i in[8]; local
118 load_buffer_8x16(const tran_low_t *const input, __m128i *const in) argument
139 write_buffer_8x16(uint8_t *const dest, __m128i *const in, const int stride) argument
[all...]
/external/fec/
H A Dsumsq_mmx.c6 * 8 words; they differ only in their alignment requirements (8 bytes
15 long long sumsq_mmx(signed short *in,int cnt){ argument
19 while(((int)in & 7) != 0 && cnt != 0){
20 sum += (long)in[0] * in[0];
21 in++;
24 sum += sumsq_mmx_assist(in,cnt);
25 in += cnt & ~7;
30 sum += (long)in[0] * in[
[all...]
H A Dsumsq_sse2.c4 * 8 words; they differ only in their alignment requirements (8 bytes
13 long long sumsq_sse2(signed short *in,int cnt){ argument
17 while(((int)in & 15) != 0 && cnt != 0){
18 sum += (long)in[0] * in[0];
19 in++;
22 sum += sumsq_sse2_assist(in,cnt);
23 in += cnt & ~7;
28 sum += (long)in[0] * in[
[all...]
/external/annotation-tools/annotation-file-utilities/tests/
H A DIntCell.java6 public IntCell(int in) { argument
7 this.i = in;
10 public void set(int in) { argument
11 this.i = in;
/external/valgrind/drd/tests/
H A Dtls_threads.stderr.exp1 starting join in main
2 finished join in main
/external/valgrind/helgrind/tests/
H A Dtls_threads.stderr.exp1 starting join in main
2 finished join in main
/external/expat/
H A Drun.sh.in5 case "@host@" in
/external/jemalloc/include/jemalloc/internal/
H A Dprivate_unnamespace.sh3 for symbol in `cat $1` ; do
/external/kmod/testsuite/rootfs-pristine/test-depmod/search-order-simple/etc/depmod.d/
H A Dsearch.conf1 search updates built-in
/external/ltp/testscripts/
H A Dadp_children.sh5 for i in 1 2 3 4 5 6 7 8 9 0
/external/tpm2/
H A DClockRateAdjust.c12 ClockRateAdjust_In *in // IN: input parameter list
16 TimeSetAdjustRate(in->rateAdjust);
H A DFieldUpgradeStart.c13 FieldUpgradeStart_In *in // IN: input parameter list
17 UNUSED_PARAMETER(in);
H A DSelfTest.c16 // TPM_RC_TESTING self test in process
20 SelfTest_In *in // IN: input parameter list
25 // Call self test function in crypt module
26 return CryptSelfTest(in->fullTest);
H A DTestParms.c12 TestParms_In *in // IN: input parameter list
15 // Input parameter is not reference in command action
16 in = NULL;
18 // The parameters are tested at unmarshal process. We do nothing in command
/external/valgrind/none/tests/amd64/
H A Dsmc1.stdout.exp0 in p 0
2 in q 1
3 in p 2
4 in q 3
5 in p 4
6 in q 5
7 in p 6
8 in q 7
9 in p 8
10 in
[all...]
/external/valgrind/none/tests/x86/
H A Dsmc1.stdout.exp0 in p 0
2 in q 1
3 in p 2
4 in q 3
5 in p 4
6 in q 5
7 in p 6
8 in q 7
9 in p 8
10 in
[all...]
/external/ims/rcs/rcsmanager/src/java/com/android/ims/
H A DIRcsPresenceListener.aidl5 * Redistribution and use in source and binary forms, with or without
9 * - Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
40 * but it didn't get "terminated notify" in expries + T1 timer.
58 void onSuccess(in int reqId);
65 * @param resultCode the result code which defined in RcsManager.ResultCode.
71 void onError(in int reqId, in int resultCode);
85 void onFinish(in int reqId);
96 void onTimeout(in in
[all...]
/external/valgrind/none/tests/s390x/
H A Dbfp-2.c10 void sqebr(float in) argument
14 __asm__ volatile("sqebr %[out],%[in]" : [out]"=f"(out) : [in]"f"(in));
15 printf("sqebr %f -> %f\n", in, out);
18 void sqdbr(double in) argument
22 __asm__ volatile("sqdbr %[out],%[in]" : [out]"=f"(out) : [in]"f"(in));
23 printf("sqdbr %f -> %f\n", in, ou
26 lnebr(float in) argument
34 lndbr(double in) argument
42 lpebr(float in) argument
50 lpdbr(double in) argument
58 lcebr(float in) argument
66 lcdbr(double in) argument
74 lder(double prev, float in) argument
84 lde(double prev, float in) argument
[all...]
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
H A Dtolower_many.pass.cpp32 std::string in("c A\x07.a1");
34 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size());
35 assert(in[0] == 'c');
36 assert(in[1] == ' ');
37 assert(in[2] == 'a');
38 assert(in[
[all...]
H A Dtoupper_many.pass.cpp32 std::string in("c A\x07.a1");
34 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size());
35 assert(in[0] == 'C');
36 assert(in[1] == ' ');
37 assert(in[2] == 'A');
38 assert(in[
[all...]
/external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
H A Dscan_is.pass.cpp29 const std::string in(" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_is(F::space, in.data(), in.data() + in.size()) - in.data() == 0);
32 assert(f.scan_is(F::print, in.data(), in.data() + in.size()) - in
[all...]
H A Dscan_not.pass.cpp29 const std::string in(" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_not(F::space, in.data(), in.data() + in.size()) - in.data() == 1);
32 assert(f.scan_not(F::print, in.data(), in.data() + in.size()) - in
[all...]
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
H A Dscan_is.pass.cpp29 const std::wstring in(L" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_is(F::space, in.data(), in.data() + in.size()) - in.data() == 0);
32 assert(f.scan_is(F::print, in.data(), in.data() + in.size()) - in
[all...]
H A Dscan_not.pass.cpp29 const std::wstring in(L" A\x07.a1");
30 std::vector<F::mask> m(in.size());
31 assert(f.scan_not(F::space, in.data(), in.data() + in.size()) - in.data() == 1);
32 assert(f.scan_not(F::print, in.data(), in.data() + in.size()) - in
[all...]

Completed in 1701 milliseconds

1234567891011>>