Home
last modified time | relevance | path

Searched refs:id1 (Results 1 – 25 of 104) sorted by relevance

12345

/third_party/pulseaudio/src/modules/bluetooth/
Dbt-codec-msbc.c164 frame->hdr.id1.s.id1 = MSBC_H2_ID1; in encode_buffer()
166 frame->hdr.id1.s.sn1 = 3; in encode_buffer()
168 frame->hdr.id1.s.sn1 = 0; in encode_buffer()
170 frame->hdr.id1.s.sn0 = 3; in encode_buffer()
172 frame->hdr.id1.s.sn0 = 0; in encode_buffer()
228 union msbc_h2_id1 id1; in msbc_find_frame() local
234 id1.b = buf[i]; in msbc_find_frame()
236 if (id1.s.id1 != MSBC_H2_ID1) in msbc_find_frame()
238 if (id1.s.sn0 != 3 && id1.s.sn0 != 0) in msbc_find_frame()
240 if (id1.s.sn1 != 3 && id1.s.sn1 != 0) in msbc_find_frame()
[all …]
/third_party/alsa-utils/alsactl/
Ddaemon.c156 static int compare_ids(snd_ctl_elem_id_t *id1, snd_ctl_elem_id_t *id2) in compare_ids() argument
158 if (id1 == NULL || id2 == NULL) in compare_ids()
160 return snd_ctl_elem_id_get_interface(id1) == snd_ctl_elem_id_get_interface(id2) && in compare_ids()
161 snd_ctl_elem_id_get_index(id1) == snd_ctl_elem_id_get_index(id2) && in compare_ids()
162 strcmp(snd_ctl_elem_id_get_name(id1), snd_ctl_elem_id_get_name(id2)) == 0 && in compare_ids()
163 snd_ctl_elem_id_get_device(id1) == snd_ctl_elem_id_get_device(id2) && in compare_ids()
164 snd_ctl_elem_id_get_subdevice(id1) == snd_ctl_elem_id_get_subdevice(id2); in compare_ids()
170 snd_ctl_elem_id_t *id1; in in_list() local
173 id1 = list->list[i]; in in_list()
174 if (id1 == NULL) in in_list()
[all …]
/third_party/openssl/crypto/rc4/
Drc4_skey.c39 register int id1, id2; in RC4_set_key() local
46 id1 = id2 = 0; in RC4_set_key()
50 id2 = (data[id1] + tmp + id2) & 0xff; \ in RC4_set_key()
51 if (++id1 == len) id1=0; \ in RC4_set_key()
/third_party/node/deps/openssl/openssl/crypto/rc4/
Drc4_skey.c39 register int id1, id2; in RC4_set_key() local
46 id1 = id2 = 0; in RC4_set_key()
50 id2 = (data[id1] + tmp + id2) & 0xff; \ in RC4_set_key()
51 if (++id1 == len) id1=0; \ in RC4_set_key()
/third_party/python/Lib/test/
Dtest__xxsubinterpreters.py564 id1 = interpreters.create()
565 id2 = interpreters.InterpreterID(int(id1))
568 self.assertTrue(id1 == id1)
569 self.assertTrue(id1 == id2)
570 self.assertTrue(id1 == int(id1))
571 self.assertTrue(int(id1) == id1)
572 self.assertTrue(id1 == float(int(id1)))
573 self.assertTrue(float(int(id1)) == id1)
574 self.assertFalse(id1 == float(int(id1)) + 0.1)
575 self.assertFalse(id1 == str(int(id1)))
[all …]
/third_party/ltp/testcases/kernel/containers/sysvipc/
Dsemtest_2ns.c93 int id1; in check_sem1() local
99 id1 = semget(MY_KEY, 1, IPC_CREAT | IPC_EXCL | 0666); in check_sem1()
100 if (id1 == -1) { in check_sem1()
106 id1 = semget(MY_KEY, 1, 0); in check_sem1()
107 if (id1 == -1) { in check_sem1()
Dshmem_2nstest.c66 int id1; in check_shmem1() local
73 id1 = shmget(TESTKEY, 100, IPC_CREAT); in check_shmem1()
74 if (id1 == -1) in check_shmem1()
/third_party/typescript/tests/baselines/reference/
DcommentsOnPropertyOfObjectLiteral1.types3 >resolve : { id: (details: any) => any; id1: string; id2: (details: any) => any; id3: (details: any…
4id1: /* c1 */ "hello", id2: /*! @ngInject */ (details: any) => details.id, id3: /*…
14 id1: /* c1 */ "hello",
15 >id1 : string
DcommentsOnPropertyOfObjectLiteral1.symbols10 id1: /* c1 */ "hello",
11 >id1 : Symbol(id1, Decl(commentsOnPropertyOfObjectLiteral1.ts, 1, 54))
DcontextuallyTypedParametersWithInitializers.js2 declare function id1<T>(input: T): T;
9 const f11 = id1(function ({ foo = 42 }) { return foo });
15 const f21 = id1(function (foo = 42) { return foo });
95 var f11 = id1(function (_a) {
115 var f21 = id1(function (foo) {
DjsdocFunctionType.symbols6 function id1(c) {
7 >id1 : Symbol(id1, Decl(functions.js, 0, 0))
14 var x = id1(function (n) { return this.length + n });
16 >id1 : Symbol(id1, Decl(functions.js, 0, 0))
/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dcnd_wait.c38 thrd_t id1; in cnd_wait_0100() local
42 ret = thrd_create(&id1, (thrd_start_t)cnd_waitfirst, (void *)1); in cnd_wait_0100()
48 thrd_join(id1, NULL); in cnd_wait_0100()
Dcnd_signal.c38 thrd_t id1; in cnd_signal_0100() local
43 ret = thrd_create(&id1, (thrd_start_t)cnd_timedwaitfirst, (void *)1); in cnd_signal_0100()
51 thrd_join(id1, NULL); in cnd_signal_0100()
/third_party/spirv-tools/test/opt/
Dtype_manager_test.cpp537 for (const auto id1 : {1, 2, 3, 4, 7}) { in TEST()
539 if (id1 == id2 || (id1 == 1 && id2 == 4) || (id1 == 4 && id2 == 1)) { in TEST()
540 EXPECT_TRUE(manager.GetType(id1)->IsSame(manager.GetType(id2))) in TEST()
541 << "%struct" << id1 << " is expected to be the same as %struct" in TEST()
544 EXPECT_FALSE(manager.GetType(id1)->IsSame(manager.GetType(id2))) in TEST()
545 << "%struct" << id1 << " is expected to be different with %struct" in TEST()
586 for (const auto id1 : {1, 2, 3, 4, 5, 6, 7, 10}) { in TEST()
588 if (id1 == id2 || (id1 == 1 && id2 == 4) || (id1 == 4 && id2 == 1)) { in TEST()
589 EXPECT_TRUE(manager.GetType(id1)->IsSame(manager.GetType(id2))) in TEST()
590 << "%struct" << id1 << " is expected to be the same as %struct" in TEST()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
Dtype_manager_test.cpp522 for (const auto id1 : {1, 2, 3, 4, 7}) { in TEST()
524 if (id1 == id2 || (id1 == 1 && id2 == 4) || (id1 == 4 && id2 == 1)) { in TEST()
525 EXPECT_TRUE(manager.GetType(id1)->IsSame(manager.GetType(id2))) in TEST()
526 << "%struct" << id1 << " is expected to be the same as %struct" in TEST()
529 EXPECT_FALSE(manager.GetType(id1)->IsSame(manager.GetType(id2))) in TEST()
530 << "%struct" << id1 << " is expected to be different with %struct" in TEST()
571 for (const auto id1 : {1, 2, 3, 4, 5, 6, 7, 10}) { in TEST()
573 if (id1 == id2 || (id1 == 1 && id2 == 4) || (id1 == 4 && id2 == 1)) { in TEST()
574 EXPECT_TRUE(manager.GetType(id1)->IsSame(manager.GetType(id2))) in TEST()
575 << "%struct" << id1 << " is expected to be the same as %struct" in TEST()
[all …]
/third_party/skia/third_party/externals/spirv-tools/test/opt/
Dtype_manager_test.cpp522 for (const auto id1 : {1, 2, 3, 4, 7}) { in TEST()
524 if (id1 == id2 || (id1 == 1 && id2 == 4) || (id1 == 4 && id2 == 1)) { in TEST()
525 EXPECT_TRUE(manager.GetType(id1)->IsSame(manager.GetType(id2))) in TEST()
526 << "%struct" << id1 << " is expected to be the same as %struct" in TEST()
529 EXPECT_FALSE(manager.GetType(id1)->IsSame(manager.GetType(id2))) in TEST()
530 << "%struct" << id1 << " is expected to be different with %struct" in TEST()
571 for (const auto id1 : {1, 2, 3, 4, 5, 6, 7, 10}) { in TEST()
573 if (id1 == id2 || (id1 == 1 && id2 == 4) || (id1 == 4 && id2 == 1)) { in TEST()
574 EXPECT_TRUE(manager.GetType(id1)->IsSame(manager.GetType(id2))) in TEST()
575 << "%struct" << id1 << " is expected to be the same as %struct" in TEST()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dtransformation_swap_two_functions.cpp29 TransformationSwapTwoFunctions::TransformationSwapTwoFunctions(uint32_t id1, in TransformationSwapTwoFunctions() argument
31 assert(id1 != id2 && "The two function ids cannot be the same."); in TransformationSwapTwoFunctions()
32 message_.set_function_id1(id1); in TransformationSwapTwoFunctions()
/third_party/spirv-tools/source/fuzz/
Dtransformation_swap_two_functions.cpp29 TransformationSwapTwoFunctions::TransformationSwapTwoFunctions(uint32_t id1, in TransformationSwapTwoFunctions() argument
31 assert(id1 != id2 && "The two function ids cannot be the same."); in TransformationSwapTwoFunctions()
32 message_.set_function_id1(id1); in TransformationSwapTwoFunctions()
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
Dtransformation_swap_two_functions.cpp29 TransformationSwapTwoFunctions::TransformationSwapTwoFunctions(uint32_t id1, in TransformationSwapTwoFunctions() argument
31 assert(id1 != id2 && "The two function ids cannot be the same."); in TransformationSwapTwoFunctions()
32 message_.set_function_id1(id1); in TransformationSwapTwoFunctions()
/third_party/node/test/parallel/
Dtest-http2-misbehaving-multiplex.js60 const id1 = new h2test.HeadersFrame(1, h2test.kFakeRequestHeaders, 0, true); constant
70 client.write(id1.data, () => {
77 client.write(id1.data, () => {
/third_party/icu/icu4c/source/test/intltest/
Dtztest.cpp563 const UnicodeString *id1, *id2; in TestGetAvailableIDsNew() local
642 while ((id1 = any->snext(ec)) != NULL) { in TestGetAvailableIDsNew()
646 if (*id1 == *id2) { in TestGetAvailableIDsNew()
655 TimeZone::getCanonicalID(*id1, canonicalID, isSystemID, ec); in TestGetAvailableIDsNew()
659 if (*id1 == canonicalID) { in TestGetAvailableIDsNew()
660 errln((UnicodeString)"FAIL: canonicalID [" + *id1 + "] is not in CANONICAL"); in TestGetAvailableIDsNew()
663 errln((UnicodeString)"FAIL: ANY contains non-system ID: " + *id1); in TestGetAvailableIDsNew()
674 while ((id1 = canonical->snext(ec)) != NULL) { in TestGetAvailableIDsNew()
675 TimeZone::getCanonicalID(*id1, canonicalID, isSystemID, ec); in TestGetAvailableIDsNew()
679 if (*id1 != canonicalID) { in TestGetAvailableIDsNew()
[all …]
/third_party/skia/tests/
DMessageBusTest.cpp144 ID id1 = ID::Next(), in DECLARE_SKMESSAGEBUS_MESSAGE() local
148 AddressedMessageBus::Inbox inbox1(id1), inbox2(id2); in DECLARE_SKMESSAGEBUS_MESSAGE()
151 AddressedMessageBus::Post({id1}); // Should go to inbox1 in DECLARE_SKMESSAGEBUS_MESSAGE()
160 REPORTER_ASSERT(r, messages[1].fInboxID == id1); in DECLARE_SKMESSAGEBUS_MESSAGE()
/third_party/mbedtls/include/psa/
Dcrypto_platform.h68 static inline int mbedtls_key_owner_id_equal(mbedtls_key_owner_id_t id1, in mbedtls_key_owner_id_equal() argument
71 return id1 == id2; in mbedtls_key_owner_id_equal()
/third_party/typescript/tests/cases/compiler/
DcontextuallyTypedParametersWithInitializers.ts4 declare function id1<T>(input: T): T; function
11 const f11 = id1(function ({ foo = 42 }) { return foo });
17 const f21 = id1(function (foo = 42) { return foo });
/third_party/glslang/Test/
Dhlsl.function.frag11 float4 fun4(uint id1, uniform uint id2)
13 return id1 * id2;

12345