HomeSort by relevance Sort by last modified time
    Searched refs:in (Results 26 - 50 of 38930) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/tpm2/
SelfTest.c 16 // 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);
TestParms.c 12 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
  /prebuilts/misc/common/swig/include/2.0.11/clisp/
clisp.swg 5 /* Define a C preprocessor symbol that can be used in interface files
12 %typemap(in) void "NIL";
14 %typemap(in) char "character";
15 %typemap(in) char * "ffi:c-string";
16 %typemap(in) unsigned char "ffi:uchar";
17 %typemap(in) signed char "ffi:char";
19 %typemap(in) short "ffi:short";
20 %typemap(in) signed short "ffi:short";
21 %typemap(in) unsigned short "ffi:ushort";
23 %typemap(in) int "ffi:int"
    [all...]
  /external/valgrind/none/tests/amd64/
smc1.stdout.exp 0 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 q
    [all...]
  /external/valgrind/none/tests/x86/
smc1.stdout.exp 0 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 q
    [all...]
  /external/ims/rcs/rcsmanager/src/java/com/android/ims/
IRcsPresenceListener.aidl 5 * 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
19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MOTOROLA MOBILITY LLC BE LIABLE
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
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)
    [all...]
  /external/valgrind/none/tests/s390x/
bfp-2.c 10 void sqebr(float in)
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)
22 __asm__ volatile("sqdbr %[out],%[in]" : [out]"=f"(out) : [in]"f"(in));
23 printf("sqdbr %f -> %f\n", in, out)
    [all...]
  /system/update_engine/binder_bindings/android/brillo/
IUpdateEngineStatusCallback.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
21 void HandleStatusUpdate(in long last_checked_time, in double progress,
22 in String current_operation, in String new_version, in long new_size);
  /external/libvpx/libvpx/vp9/common/x86/
vp9_idct_intrin_sse2.c 5 * 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_data(input);
22 in[1] = load_input_data(input + 8);
26 idct4_sse2(in);
27 idct4_sse2(in);
56 __m128i in[8]; local
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
tolower_many.pass.cpp 35 std::string in("c A\x07.a1");
37 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size());
38 assert(in[0] == 'c');
39 assert(in[1] == ' ');
40 assert(in[2] == 'a');
41 assert(in[3] == '\x07')
    [all...]
toupper_many.pass.cpp 35 std::string in("c A\x07.a1");
37 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size());
38 assert(in[0] == 'C');
39 assert(in[1] == ' ');
40 assert(in[2] == 'A');
41 assert(in[3] == '\x07')
    [all...]
  /libcore/ojluni/src/main/java/java/io/
FilterReader.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
46 protected Reader in; field in class:FilterReader
51 * @param in a Reader object providing the underlying stream.
52 * @throws NullPointerException if <code>in</code> is <code>null</code>
54 protected FilterReader(Reader in) {
55 super(in);
56 this.in = in;
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/
tolower_many.pass.cpp 32 std::string in("\xDA A\x07.a1");
34 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size());
35 assert(in[0] == '\xFA');
36 assert(in[1] == ' ');
37 assert(in[2] == 'a');
38 assert(in[3] == '\x07')
    [all...]
toupper_many.pass.cpp 32 std::string in("\xFA A\x07.a1");
34 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size());
35 assert(in[0] == '\xDA');
36 assert(in[1] == ' ');
37 assert(in[2] == 'A');
38 assert(in[3] == '\x07')
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
tolower_many.pass.cpp 35 std::string in("\xDA A\x07.a1");
37 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size());
38 assert(in[0] == '\xFA');
39 assert(in[1] == ' ');
40 assert(in[2] == 'a');
41 assert(in[3] == '\x07')
    [all...]
toupper_many.pass.cpp 35 std::string in("\xFA A\x07.a1");
37 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size());
38 assert(in[0] == '\xDA');
39 assert(in[1] == ' ');
40 assert(in[2] == 'A');
41 assert(in[3] == '\x07')
    [all...]
  /frameworks/base/core/java/android/bluetooth/
IBluetoothGatt.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
44 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states);
46 void registerScanner(in IScannerCallback callback, in WorkSource workSource);
47 void unregisterScanner(in int scannerId);
48 void startScan(in int scannerId, in ScanSettings settings, in List<ScanFilter> filters,
49 in List scanStorages, in String callingPackage)
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
scan_is.pass.cpp 29 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.data() == 0)
    [all...]
scan_not.pass.cpp 29 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.data() == 2)
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
scan_is.pass.cpp 29 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.data() == 0)
    [all...]
scan_not.pass.cpp 29 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.data() == 2)
    [all...]
  /packages/services/Car/car-lib/src/android/car/
ICarBluetooth.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
22 void setBluetoothDeviceConnectionPriority(in BluetoothDevice deviceToSet, in int profileToSet,
23 in int priorityToSet);
24 void clearBluetoothDeviceConnectionPriority(in int profileToClear,in int priorityToClear);
25 boolean isPriorityDevicePresent(in int profile, in int priorityToCheck);
26 String getDeviceNameWithPriority(in int profile, in int priorityToCheck)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
scan_is.pass.cpp 29 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.data() == 0)
    [all...]
scan_not.pass.cpp 29 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.data() == 2)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
scan_is.pass.cpp 29 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.data() == 0)
    [all...]

Completed in 1182 milliseconds

12 3 4 5 6 7 8 91011>>