/third_party/pulseaudio/src/modules/bluetooth/ |
D | bt-codec-msbc.c | 164 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/ |
D | daemon.c | 156 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/ |
D | rc4_skey.c | 39 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/ |
D | rc4_skey.c | 39 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/ |
D | test__xxsubinterpreters.py | 564 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/ |
D | semtest_2ns.c | 93 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()
|
D | shmem_2nstest.c | 66 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/ |
D | commentsOnPropertyOfObjectLiteral1.types | 3 >resolve : { id: (details: any) => any; id1: string; id2: (details: any) => any; id3: (details: any… 4 …id1: /* c1 */ "hello", id2: /*! @ngInject */ (details: any) => details.id, id3: /*… 14 id1: /* c1 */ "hello", 15 >id1 : string
|
D | commentsOnPropertyOfObjectLiteral1.symbols | 10 id1: /* c1 */ "hello", 11 >id1 : Symbol(id1, Decl(commentsOnPropertyOfObjectLiteral1.ts, 1, 54))
|
D | contextuallyTypedParametersWithInitializers.js | 2 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) {
|
D | jsdocFunctionType.symbols | 6 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/ |
D | cnd_wait.c | 38 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()
|
D | cnd_signal.c | 38 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/ |
D | type_manager_test.cpp | 537 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/ |
D | type_manager_test.cpp | 522 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/ |
D | type_manager_test.cpp | 522 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/ |
D | transformation_swap_two_functions.cpp | 29 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/ |
D | transformation_swap_two_functions.cpp | 29 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/ |
D | transformation_swap_two_functions.cpp | 29 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/ |
D | test-http2-misbehaving-multiplex.js | 60 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/ |
D | tztest.cpp | 563 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/ |
D | MessageBusTest.cpp | 144 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/ |
D | crypto_platform.h | 68 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/ |
D | contextuallyTypedParametersWithInitializers.ts | 4 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/ |
D | hlsl.function.frag | 11 float4 fun4(uint id1, uniform uint id2) 13 return id1 * id2;
|