Searched refs:s1 (Results 1 - 25 of 25) sorted by relevance

/system/core/libpixelflinger/tests/arch-mips64/assembler/
H A Dasm_mips_test_jacket.S46 sd $s1, 72($sp)
51 move $s1, $a1
54 ld $v0, 16($s1)
55 ld $v1, 24($s1)
56 ld $a0, 32($s1)
57 ld $a1, 40($s1)
58 ld $a2, 48($s1)
59 ld $a3, 56($s1)
60 ld $a4, 64($s1)
61 ld $a5, 72($s1)
[all...]
/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/bt/embdrv/sbc/decoder/include/
H A Doi_string.h61 #define OI_MemCmp(s1, s2, n) memcmp((s1), (s2), (n))
65 #define OI_Strcmp(s1, s2) strcmp((s1), (s2))
66 #define OI_Strncmp(s1, s2, n) strncmp((s1), (s2), (n))
99 * 0, if s1 == s2
100 * < 0, if s1 < s2
103 OI_INT OI_MemCmp(void const* s1, void const* s2, uint32_t n);
137 * 0, if s1
[all...]
/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/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/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/libufdt/sysdeps/include/
H A Dlibufdt_sysdeps.h69 int dto_strcmp(const char *s1, const char *s2);
71 int dto_strncmp(const char *s1, const char *s2, size_t n);
/system/tpm/attestation/common/
H A Dmock_crypto_utility.cc31 bool CopyString(const std::string& s1, std::string* s2) { argument
32 *s2 = s1;
/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 Dsample_tree.h256 callchain, period, [&](const EntryT* s1, const EntryT* s2) {
257 return sample_comparator_.IsSameSample(s1, s2);
324 std::sort(v.begin(), v.end(), [this](const EntryT* s1, const EntryT* s2) {
325 return comparator_(s1, s2);
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/core/base/include/android-base/
H A Dlogging.h281 // Helper for CHECK_STRxx(s1,s2) macros.
282 #define CHECK_STROP(s1, s2, sense) \
283 while (UNLIKELY((strcmp(s1, s2) == 0) != (sense))) \
287 << "Check failed: " << "\"" << (s1) << "\"" \
290 // Check for string (const char*) equality between s1 and s2, LOG(FATAL) if not.
291 #define CHECK_STREQ(s1, s2) CHECK_STROP(s1, s2, true)
292 #define CHECK_STRNE(s1, s2) CHECK_STROP(s1, s2, false)
342 #define DCHECK_STREQ(s1, s
[all...]
/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...]
/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/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/core/include/utils/
H A DUnicode.h27 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/core/libutils/include/utils/
H A DUnicode.h27 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/core/libutils/
H A DUnicode.cpp220 int strcmp16(const char16_t *s1, const char16_t *s2)
226 d = (int)(ch = *s1++) - (int)*s2++;
234 int strncmp16(const char16_t *s1, const char16_t *s2, size_t n)
244 d = (int)(ch = *s1++) - (int)*s2++;
325 int strzcmp16(const char16_t *s1, size_t n1, const char16_t *s2, size_t n2)
327 const char16_t* e1 = s1+n1;
330 while (s1 < e1 && s2 < e2) {
331 const int d = (int)*s1++ - (int)*s2++;
340 ? ((int)*s1 - 0)
/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/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/core/toolbox/
H A Dnewfs_msdos.c758 const char *s1, *s2;
765 s1 = fname;
766 if (!strncmp(s1, _PATH_DEV, len))
767 s1 += len;
768 r = S_ISCHR(mode) && s1 != fname && *s1 == 'r';
773 if ((r && s2 != mp->f_mntfromname && !strcmp(s1 + 1, s2)) || !strcmp(s1, s2))
/system/core/libbacktrace/
H A Dbacktrace_offline_test.cpp93 [](const FunctionSymbol& s1, const FunctionSymbol& s2) { return s1.start < s2.start; });
/system/libhidl/
H A Dtest_main.cpp60 hidl_string s1 = "s1"; // copy = from cstr local
61 EXPECT_STREQ(s1.c_str(), "s1");

Completed in 462 milliseconds