Searched defs:s1 (Results 1 - 15 of 15) sorted by relevance

/system/bt/btif/test/
H A Dbtif_storage_test.cc25 const char* s1 = "e39c6285-867f-4b1d-9db0-35fbd9aebf22"; local
33 bool rc = string_to_uuid(s1, &uuid);
45 const char* s1 = local
54 size_t num_uuids = btif_split_uuids_string(s1, uuids, 2);
61 const char* s1 = local
66 size_t num_uuids = btif_split_uuids_string(s1, uuids, 1);
/system/tpm/attestation/common/
H A Dmock_crypto_utility.cc31 bool CopyString(const std::string& s1, std::string* s2) { argument
32 *s2 = s1;
/system/gatekeeper/include/gatekeeper/
H A Dgatekeeper_utils.h48 const uint8_t* s1 = static_cast<const uint8_t*>(p1); local
52 result |= *s1++ ^ *s2++;
/system/keymaster/
H A Dandroid_keymaster_utils.cpp37 const uint8_t* s1 = static_cast<const uint8_t*>(p1); local
41 result |= *s1++ ^ *s2++;
/system/netd/libnetdutils/
H A DSliceTest.cpp35 Slice s1 = makeSlice(mRaw); local
37 auto p = split(s1, 14);
42 EXPECT_EQ(s1.base(), take(s1, kBytes).base());
43 EXPECT_EQ(kBytes, take(s1, kBytes).size());
44 EXPECT_EQ(s1.base() + kBytes, drop(s1, kBytes).base());
45 EXPECT_EQ(s1.size() - kBytes, drop(s1, kBytes).size());
49 EXPECT_EQ(sizeof(a), extract(s1,
56 Slice s1 = makeSlice(mRaw); local
[all...]
/system/core/toolbox/upstream-netbsd/lib/libc/gen/
H A Dhumanize_number.c51 int b, r, s1, s2, sign; local
150 s1 = b / 10;
153 sign * s1, localeconv()->decimal_point, s2,
/system/core/libpixelflinger/codeflinger/
H A Dload_store.cpp88 int s1 = scratches.obtain(); local
89 LDRB(AL, s1, addr.reg, immed12_pre(0)); // R
91 ORR(AL, 0, s1, s1, reg_imm(s0, LSL, 8));
93 ORR(AL, 0, s.reg, s1, reg_imm(s0, LSL, 16));
/system/libufdt/sysdeps/
H A Dlibufdt_sysdeps_posix.c60 int dto_strcmp(const char *s1, const char *s2) { return strcmp(s1, s2); } argument
62 int dto_strncmp(const char *s1, const char *s2, size_t n) { argument
63 return strncmp(s1, s2, n);
H A Dlibufdt_sysdeps_vendor.c203 int dto_strcmp(const char *s1, const char *s2) { return strcmp(s1, s2); } argument
205 int dto_strncmp(const char *s1, const char *s2, size_t n) { argument
206 return strncmp(s1, s2, n);
/system/extras/simpleperf/
H A Ddso.h52 static bool CompareByDumpId(const Symbol* s1, const Symbol* s2) { argument
54 s1->GetDumpId(&id1);
60 static bool CompareByAddr(const Symbol* s1, const Symbol* s2) { argument
61 return s1->addr < s2->addr;
64 static bool CompareValueByAddr(const Symbol& s1, const Symbol& s2) { argument
65 return s1.addr < s2.addr;
H A Ddso.cpp274 static std::vector<Symbol> MergeSortedSymbols(const std::vector<Symbol>& s1, argument
277 std::set_union(s1.begin(), s1.end(), s2.begin(), s2.end(), std::back_inserter(result),
/system/extras/ioshark/
H A Dcompile_ioshark.c246 char *s, *s1; local
258 s1 = strchr(s, ',');
259 if (s1 == NULL) {
264 s1 += 2;
265 s = strchr(s1, ',');
272 strcpy(protstr, s1);
475 char *s1; local
477 while ((s1 = strchr(s, '|'))) {
478 *s1 = '\0';
481 *s1
494 char *s1; local
[all...]
/system/libhidl/
H A Dtest_main.cpp60 hidl_string s1 = "s1"; // copy = from cstr local
61 EXPECT_STREQ(s1.c_str(), "s1");
/system/tools/hidl/utils/
H A DFQName.cpp465 std::string s1 = string(); local
468 size_t pos = s1.rfind(s2);
469 if (pos == std::string::npos || pos + s2.size() != s1.size()) {
482 if (s1[pos - 1] == '.') {
487 if (s1[pos - 1] == ':') {
492 if (s1[pos] == '@') {
/system/bt/stack/smp/
H A Daes.cc604 uint_8t s1[N_BLOCK], r; local
605 copy_and_key(s1, in, ctx->ksch);
610 mix_sub_columns(s1);
611 add_round_key(s1, ctx->ksch + r * N_BLOCK);
616 mix_sub_columns(s2, s1);
617 copy_and_key(s1, s2, ctx->ksch + r * N_BLOCK);
620 shift_sub_rows(s1);
621 copy_and_key(out, s1, ctx->ksch + r * N_BLOCK);
651 uint_8t s1[N_BLOCK], r; local
652 copy_and_key(s1, i
721 uint_8t s1[N_BLOCK], r, rc = 1; local
775 uint_8t s1[N_BLOCK], r, rc = 0x6c; local
841 uint_8t s1[N_BLOCK], r, rc = 1; local
919 uint_8t s1[N_BLOCK], r, rc = 0x80; local
[all...]

Completed in 373 milliseconds