/system/bt/embdrv/sbc/decoder/include/ |
D | oi_string.h | 61 #define OI_MemCmp(s1, s2, n) memcmp((s1), (s2), (n)) argument 65 #define OI_Strcmp(s1, s2) strcmp((s1), (s2)) argument 66 #define OI_Strncmp(s1, s2, n) strncmp((s1), (s2), (n)) argument 106 OI_INT OI_MemCmp(void const *s1, void const *s2, OI_UINT32 n); 147 OI_CHAR const *s2); 160 OI_CHAR const *s2, 179 OI_CHAR const *s2); 195 OI_CHAR const *s2,
|
/system/core/base/include/android-base/ |
D | logging.h | 186 #define CHECK_STROP(s1, s2, sense) \ argument 187 if (LIKELY((strcmp(s1, s2) == 0) == sense)) \ 192 << (sense ? " == " : " != ") << "\"" << s2 << "\"" 195 #define CHECK_STREQ(s1, s2) CHECK_STROP(s1, s2, true) argument 196 #define CHECK_STRNE(s1, s2) CHECK_STROP(s1, s2, false) argument 245 #define DCHECK_STREQ(s1, s2) \ argument 246 if (::android::base::kEnableDChecks) CHECK_STREQ(s1, s2) 247 #define DCHECK_STRNE(s1, s2) \ argument 248 if (::android::base::kEnableDChecks) CHECK_STRNE(s1, s2)
|
/system/extras/tests/mmc_tracepoints/ |
D | mmc_trace_sample_data | 27 … Binder_4-434 [000] ..s2 56.115856: mmc_blk_rw_end: cmd=18,addr=0x0013faf0,size=0x00000020 39 …WindowManager-396 [000] ..s2 56.399184: mmc_blk_rw_end: cmd=18,addr=0x0035af18,size=0x00000020 41 …WindowManager-396 [000] ..s2 56.399992: mmc_blk_rw_end: cmd=18,addr=0x0035af40,size=0x000000c0 43 …WindowManager-396 [000] ..s2 56.400300: mmc_blk_rw_end: cmd=18,addr=0x00361000,size=0x00000018 45 …WindowManager-396 [000] ..s2 56.400993: mmc_blk_rw_end: cmd=18,addr=0x003610e8,size=0x00000088 53 …WindowManager-396 [000] ..s2 56.407260: mmc_blk_rw_end: cmd=18,addr=0x0035a020,size=0x000000e8 55 … Compiler-387 [000] ..s2 56.408158: mmc_blk_rw_end: cmd=18,addr=0x0035a108,size=0x00000090 57 …WindowManager-396 [000] ..s2 56.409353: mmc_blk_rw_end: cmd=18,addr=0x0035ac10,size=0x00000100 59 …WindowManager-396 [000] ..s2 56.410055: mmc_blk_rw_end: cmd=18,addr=0x0035abb8,size=0x00000058 63 … kworker/0:2-48 [000] ..s2 56.412130: mmc_blk_rw_end: cmd=18,addr=0x0035a198,size=0x000000b0 [all …]
|
/system/core/libpixelflinger/tests/arch-mips64/assembler/ |
D | asm_mips_test_jacket.S | 47 sd $s2, 80($sp) 52 move $s2, $a2 88 ld $s2, 80($sp)
|
/system/core/toolbox/upstream-netbsd/lib/libc/gen/ |
D | humanize_number.c | 51 int b, r, s1, s2, sign; in humanize_number() local 151 s2 = b % 10; in humanize_number() 153 sign * s1, localeconv()->decimal_point, s2, in humanize_number()
|
/system/gatekeeper/include/gatekeeper/ |
D | gatekeeper_utils.h | 49 const uint8_t* s2 = static_cast<const uint8_t*>(p2); in memcmp_s() local 52 result |= *s1++ ^ *s2++; in memcmp_s()
|
/system/core/libutils/ |
D | Unicode.cpp | 210 int strcmp16(const char16_t *s1, const char16_t *s2) in strcmp16() argument 216 d = (int)(ch = *s1++) - (int)*s2++; in strcmp16() 224 int strncmp16(const char16_t *s1, const char16_t *s2, size_t n) in strncmp16() argument 234 d = (int)(ch = *s1++) - (int)*s2++; in strncmp16() 315 int strzcmp16(const char16_t *s1, size_t n1, const char16_t *s2, size_t n2) in strzcmp16() argument 318 const char16_t* e2 = s2+n2; in strzcmp16() 320 while (s1 < e1 && s2 < e2) { in strzcmp16() 321 const int d = (int)*s1++ - (int)*s2++; in strzcmp16() 328 ? (0 - (int)*s2) in strzcmp16()
|
/system/tpm/attestation/common/ |
D | mock_crypto_utility.cc | 31 bool CopyString(const std::string& s1, std::string* s2) { in CopyString() argument 32 *s2 = s1; in CopyString()
|
/system/keymaster/ |
D | android_keymaster_utils.cpp | 38 const uint8_t* s2 = static_cast<const uint8_t*>(p2); in memcmp_s() local 41 result |= *s1++ ^ *s2++; in memcmp_s()
|
/system/bt/stack/smp/ |
D | aes.c | 583 { uint_8t s2[N_BLOCK]; 584 mix_sub_columns( s2, s1 ); 585 copy_and_key( s1, s2, ctx->ksch + r * N_BLOCK); 635 { uint_8t s2[N_BLOCK]; 636 copy_and_key( s2, s1, ctx->ksch + r * N_BLOCK ); 637 inv_mix_sub_columns( s1, s2 ); 708 { uint_8t s2[N_BLOCK]; 709 mix_sub_columns( s2, s1 ); 711 copy_and_key( s1, s2, o_key ); 763 { uint_8t s2[N_BLOCK]; [all …]
|
/system/core/include/utils/ |
D | Unicode.h | 27 int strncmp16(const char16_t *s1, const char16_t *s2, size_t n); 41 int strzcmp16(const char16_t *s1, size_t n1, const char16_t *s2, size_t n2);
|
/system/tools/aidl/ |
D | ast_cpp_unittest.cpp | 216 IfStatement s2(new LiteralExpression("bar")); in TEST_F() local 217 s2.OnTrue()->AddLiteral("on true1"); in TEST_F() 218 CompareGeneratedCode(s2, "if (bar) {\non true1;\n}\n"); in TEST_F()
|
/system/core/adb/ |
D | sockets.cpp | 726 asocket* s2; in smart_socket_enqueue() local 748 s2 = create_host_service_socket(service, serial); in smart_socket_enqueue() 749 if (s2 == 0) { in smart_socket_enqueue() 767 s->peer->peer = s2; in smart_socket_enqueue() 768 s2->peer = s->peer; in smart_socket_enqueue() 774 s2->ready(s2); in smart_socket_enqueue()
|
/system/core/libmincrypt/ |
D | p256_ec.c | 844 felem z1z1, z1z1z1, s2, u2, h, i, j, r, rr, v, tmp; in point_add_mixed() local 851 felem_mul(s2, y2, z1z1z1); in point_add_mixed() 856 felem_diff(r, s2, y1); in point_add_mixed() 882 felem z1z1, z1z1z1, z2z2, z2z2z2, s1, s2, u1, u2, h, i, j, r, rr, v, tmp; in point_add() local 898 felem_mul(s2, y2, z1z1z1); in point_add() 903 felem_diff(r, s2, s1); in point_add() 929 felem z1z1, z1z1z1, z2z2, z2z2z2, s1, s2, u1, u2, h, i, j, r, rr, v, tmp; in point_add_or_double_vartime() local 946 felem_mul(s2, y2, z1z1z1); in point_add_or_double_vartime() 952 felem_diff(r, s2, s1); in point_add_or_double_vartime()
|
/system/core/libbacktrace/ |
D | backtrace_offline_test.cpp | 145 [](const FunctionSymbol& s1, const FunctionSymbol& s2) { return s1.start < s2.start; }); in FunctionNameForAddress() argument
|
/system/extras/tests/net_test/ |
D | ping6_test.py | 403 s2 = net_test.IPv4PingSocket() 404 s2.bind(("127.0.0.1", 99)) 405 self.assertEquals(("127.0.0.1", 99), s2.getsockname()) 446 s2 = net_test.IPv6PingSocket() 447 s2.bind(("::1", 99)) 448 self.assertEquals(("::1", 99, 0, 0), s2.getsockname())
|
D | multinetwork_test.py | 740 s2 = self.BuildSocket(version, net_test.UDPSocket, netid, "mark") 741 s2.connect((dstaddr, 1234)) 742 self.assertEquals(1280, self.GetSocketMTU(version, s2))
|
/system/core/toolbox/ |
D | newfs_msdos.c | 757 const char *s1, *s2; in check_mounted() 769 s2 = mp->f_mntfromname; in check_mounted() 770 if (!strncmp(s2, _PATH_DEV, len)) in check_mounted() 771 s2 += len; in check_mounted() 772 if ((r && s2 != mp->f_mntfromname && !strcmp(s1 + 1, s2)) || !strcmp(s1, s2)) in check_mounted()
|
/system/tpm/trunks/ |
D | mock_tpm.cc | 128 const TPM2B_SENSITIVE_DATA& s2, in CommitSync() argument
|
D | mock_tpm.h | 674 const TPM2B_SENSITIVE_DATA& s2, 683 const TPM2B_SENSITIVE_DATA& s2,
|
D | tpm_generated.h | 4928 const TPM2B_SENSITIVE_DATA& s2, 4945 const TPM2B_SENSITIVE_DATA& s2, 4954 const TPM2B_SENSITIVE_DATA& s2,
|
D | tpm_generated.cc | 21916 const TPM2B_SENSITIVE_DATA& s2, in SerializeCommand_Commit() argument 21959 s2, in SerializeCommand_Commit() 22224 const TPM2B_SENSITIVE_DATA& s2, in Commit() argument 22241 s2, in Commit() 22257 const TPM2B_SENSITIVE_DATA& s2, in CommitSync() argument 22272 s2, in CommitSync()
|
/system/connectivity/shill/ |
D | manager_unittest.cc | 832 scoped_refptr<MockService> s2(new MockService(control_interface(), in TEST_F() local 842 EXPECT_CALL(*storage, ContainsGroup(s2->GetStorageIdentifier())) in TEST_F() 853 EXPECT_TRUE(profile->AdoptService(s2)); in TEST_F() 856 EXPECT_CALL(*s2.get(), Save(_)).WillOnce(Return(true)); in TEST_F() 857 ASSERT_TRUE(manager.MoveServiceToProfile(s2, manager.ActiveProfile())); in TEST_F() 862 ASSERT_TRUE(manager.ActiveProfile()->ContainsService(s2)); in TEST_F()
|
/system/tpm/trunks/generator/ |
D | raw_commands_fixed.txt | 14889 For this command, p1, s2 and y2 are optional parameters. If s2 is an Empty Buffer, then the TPM sha… 14890 return TPM_RC_SIZE if y2 is not an Empty Buffer. If p1, s2, and y2 are all Empty Buffers, the TPM s… 14929 b) if s2 is not an Empty Buffer, compute x2 ≔ HnameAlg (s2) mod p, else skip to step (e) 15031 s2 15039 y coordinate of the point associated with s2 15114 either P1 or the point derived from s2 is not on the curve of 15178 s2 is empty but y2 is not or s2 provided but y2 is not 15227 // if not restricted, s2, and y2 must be an Empty Buffer 15228 if(in->s2.t.size) 15232 if((in->s2.t.size == 0) != (in->y2.t.size == 0)) [all …]
|
D | raw_commands.txt | 14878 For this command, p1, s2 and y2 are optional parameters. If s2 is an Empty Buffer, then the TPM sha… 14879 return TPM_RC_SIZE if y2 is not an Empty Buffer. If p1, s2, and y2 are all Empty Buffers, the TPM s… 14918 b) if s2 is not an Empty Buffer, compute x2 ≔ HnameAlg (s2) mod p, else skip to step (e) 15020 s2 15028 y coordinate of the point associated with s2 15103 either P1 or the point derived from s2 is not on the curve of 15167 s2 is empty but y2 is not or s2 provided but y2 is not 15216 // if not restricted, s2, and y2 must be an Empty Buffer 15217 if(in->s2.t.size) 15221 if((in->s2.t.size == 0) != (in->y2.t.size == 0)) [all …]
|