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

/system/bt/btif/test/
H A Dbtif_storage_test.cpp27 const char *s1 = "e39c6285-867f-4b1d-9db0-35fbd9aebf22"; local
35 bool rc = string_to_uuid(s1, &uuid);
47 const char *s1 = "e39c6285-867f-4b1d-9db0-35fbd9aebf22 e39c6285-867f-4b1d-9db0-35fbd9aebf23"; local
54 size_t num_uuids = btif_split_uuids_string(s1, uuids, 2);
61 const char *s1 = "e39c6285-867f-4b1d-9db0-35fbd9aebf22 e39c6285-867f-4b1d-9db0-35fbd9aebf23"; local
64 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/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/libmincrypt/
H A Dsha256.c73 uint32_t s1 = ror(W[t-2], 17) ^ ror(W[t-2], 19) ^ shr(W[t-2], 10); local
74 W[t] = W[t-16] + s0 + W[t-7] + s1;
90 uint32_t s1 = ror(E, 6) ^ ror(E, 11) ^ ror(E, 25); local
92 uint32_t t1 = H + s1 + ch + K[t] + W[t];
H A Dp256_ec.c882 felem z1z1, z1z1z1, z2z2, z2z2z2, s1, s2, u1, u2, h, i, j, r, rr, v, tmp; local
894 felem_mul(s1, y1, z2z2z2);
903 felem_diff(r, s2, s1);
915 felem_mul(tmp, s1, j);
929 felem z1z1, z1z1z1, z2z2, z2z2z2, s1, s2, u1, u2, h, i, j, r, rr, v, tmp; local
942 felem_mul(s1, y1, z2z2z2);
952 felem_diff(r, s2, s1);
969 felem_mul(tmp, s1, j);
/system/core/libpixelflinger/codeflinger/
H A Dload_store.cpp84 int s1 = scratches.obtain(); local
85 LDRB(AL, s1, addr.reg, immed12_pre(0)); // R
87 ORR(AL, 0, s1, s1, reg_imm(s0, LSL, 8));
89 ORR(AL, 0, s.reg, s1, reg_imm(s0, LSL, 16));
/system/bt/stack/smp/
H A Daes.c573 uint_8t s1[N_BLOCK], r; local
574 copy_and_key( s1, in, ctx->ksch );
579 mix_sub_columns( s1 );
580 add_round_key( s1, ctx->ksch + r * N_BLOCK);
584 mix_sub_columns( s2, s1 );
585 copy_and_key( s1, s2, ctx->ksch + r * N_BLOCK);
588 shift_sub_rows( s1 );
589 copy_and_key( out, s1, ctx->ksch + r * N_BLOCK );
624 uint_8t s1[N_BLOCK], r; local
625 copy_and_key( s1, i
694 { uint_8t s1[N_BLOCK], r, rc = 1; local
748 uint_8t s1[N_BLOCK], r, rc = 0x6c; local
815 uint_8t s1[N_BLOCK], r, rc = 1; local
896 uint_8t s1[N_BLOCK], r, rc = 0x80; local
[all...]
/system/core/libutils/
H A DUnicode.cpp206 int strcmp16(const char16_t *s1, const char16_t *s2) argument
212 d = (int)(ch = *s1++) - (int)*s2++;
220 int strncmp16(const char16_t *s1, const char16_t *s2, size_t n) argument
230 d = (int)(ch = *s1++) - (int)*s2++;
311 int strzcmp16(const char16_t *s1, size_t n1, const char16_t *s2, size_t n2) argument
313 const char16_t* e1 = s1+n1;
316 while (s1 < e1 && s2 < e2) {
317 const int d = (int)*s1++ - (int)*s2++;
326 ? ((int)*s1 - 0)

Completed in 319 milliseconds